:root {
    --primary: #FF2E21;
    --primary-glow: rgba(255, 46, 33, 0.15);
    --secondary: #255D61;
    --bg-light: #ffffff;
    --bg-subtle: #f8f9fa;
    --bg-card: #ffffff;
    --border: rgba(0, 0, 0, 0.08);
    --text-main: #1a1a1c;
    --text-muted: #626266;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Glassmorphism for Light Mode */
.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.glass-hover:hover {
    box-shadow: 0 20px 40px rgba(255, 46, 33, 0.1);
    border-color: rgba(255, 46, 33, 0.3);
    transform: translateY(-5px);
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.text-gradient {
    color: var(--text-main);
}

.accent-text {
    color: var(--primary);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
}

/* Header / Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.9);
}

.logo img {
    height: 38px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-cta {
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 8px 16px var(--primary-glow);
    transition: var(--transition);
    border: none;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px var(--primary-glow);
    background: #e6291e;
}

/* Form Elements */
input, textarea {
    width: 100%;
}

/* Hero Section - Improved Layout */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f4 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 46, 33, 0.08);
    color: var(--primary);
    border-radius: 100px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.1;
    margin-bottom: 24px;
    color: #111;
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-visual {
    width: 100%;
    aspect-ratio: 4/5;
    position: relative;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 30px 30px 80px rgba(0,0,0,0.1);
}

/* Star Service Card */
.star-service {
    background: var(--bg-subtle);
    padding-top: 40px;
}

.star-card {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 80px;
    overflow: hidden;
}

@media (min-width: 992px) {
    .star-card {
        flex-direction: row;
        align-items: center;
    }
}

.star-content {
    flex: 1.2;
}

.star-image {
    flex: 0.8;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.star-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--primary);
}

/* Grid Layouts */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

.service-card {
    padding: 48px;
    background: white;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #fff5f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
    font-size: 32px;
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Contact Section */
.contact-grid {
    padding: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 80px;
}

/* Footer */
footer {
    padding: 80px 0;
    background: #111113;
    color: white;
}

footer .logo img {
    filter: brightness(0) invert(1);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-nav a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
}

.footer-copy {
    color: #666;
    font-size: 12px;
}

/* Responsive & Mobile Fixes */
@media (max-width: 991px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 60px 0;
    }

    /* Fixed Nav for Mobile */
    header {
        padding: 10px 0;
    }

    .nav-inner {
        padding: 8px 16px;
    }

    .logo img {
        height: 28px;
    }

    .btn-cta {
        padding: 8px 16px;
        font-size: 11px;
        border-radius: 8px;
    }

    .hero {
        padding-top: 100px;
        text-align: center;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        aspect-ratio: 1;
    }

    .star-card {
        padding: 40px 24px;
        text-align: center;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        display: none;
    }

    .star-image {
        height: 300px;
    }

    .contact-grid {
        padding: 40px 20px;
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .btn-cta {
        /* Smaller font for the long text on mobile */
        font-size: 10px;
    }

    .nav-inner {
        gap: 10px;
    }

    .logo img {
        height: 24px;
    }
    
    /* Fix contact form grid on mobile */
    #contact-form div {
        grid-template-columns: 1fr !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.mobile-text { display: none; }
@media (max-width: 480px) {
    .desktop-text { display: none; }
    .mobile-text { display: inline; }
}
