/* CSS Variables - Design System */
:root {
    /* Primary Colors */
    --saffron: #D25800;
    /* Deep Terracotta / Saffron */
    --saffron-light: #E86A10;
    --navy: #0F172A;
    /* Steel Gray / Navy Blue */
    --navy-light: #1E293B;

    /* Accents */
    --gold: #D4AF37;
    /* Brass / Gold */
    --gold-light: #F4D03F;

    /* Neutrals */
    --bg-light: #FAFAFA;
    --text-dark: #333333;
    --text-muted: #64748B;
    --white: #FFFFFF;

    /* WhatsApp Green */
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;

    /* Typography */
    --font-heading: 'Merriweather', serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Transitions */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 60px;
    /* Space for mobile sticky footer */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* Typography Utilities */
.text-saffron {
    color: var(--saffron);
}

.text-navy {
    color: var(--navy);
}

.text-gold {
    color: var(--gold);
}

.text-light {
    color: var(--white);
}

.text-muted {
    color: var(--text-muted);
}

.center-text {
    text-align: center;
}

.mt-3 {
    margin-top: 1rem;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-block {
    display: flex;
    width: 100%;
    padding: 12px;
}

.btn-primary {
    background-color: var(--saffron);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--saffron-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--navy);
    color: var(--navy);
}

.btn-outline:hover {
    background-color: var(--navy);
    color: var(--white);
}

.btn-outline-light {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--navy);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-dark);
}

/* Badges */
.badge,
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(210, 88, 0, 0.1);
    color: var(--saffron);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.badge-light {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--gold);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2rem;
    color: var(--saffron);
}

.logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--navy);
}

.logo-text p {
    font-size: 0.7rem;
    margin: 0;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.desktop-nav {
    display: none;
    gap: 24px;
}

.desktop-nav a {
    font-weight: 500;
    color: var(--navy);
    font-size: 0.95rem;
}

.desktop-nav a:hover {
    color: var(--saffron);
}

.nav-contact {
    display: none;
    gap: 12px;
}

@media (min-width: 992px) {

    .desktop-nav,
    .nav-contact {
        display: flex;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-bottom-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.hero-bottom-shape svg {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
    .hero h2 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.25rem;
    }
}

/* Section Title */
.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--navy);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.experience-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--navy);
    color: var(--white);
    padding: 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border-bottom: 4px solid var(--gold);
}

.experience-card h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 4px;
}

/* Services Section */
.section-dark {
    background-color: var(--navy);
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background-color: var(--navy-light);
    padding: 40px 24px;
    border-radius: 8px;
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--saffron);
    background-color: #243147;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--saffron);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    color: #94A3B8;
    font-size: 0.95rem;
}

/* Image Break Section */
.image-break {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.85);
}

.quote-icon {
    font-size: 3rem;
    color: var(--saffron);
    margin-bottom: 20px;
    opacity: 0.5;
}

.quote-text {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .quote-text {
        font-size: 2rem;
    }
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(210, 88, 0, 0.1);
    color: var(--saffron);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
}

.whatsapp-bg {
    background-color: rgba(37, 211, 102, 0.1);
    color: var(--whatsapp);
}

.contact-method h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-method a {
    color: var(--text-muted);
    font-weight: 500;
}

.contact-method a:hover {
    color: var(--saffron);
}

.cta-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--saffron);
}

.cta-card h3 {
    margin-bottom: 12px;
}

.cta-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Footer */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr;
    }
}

.footer-desc {
    color: #94A3B8;
    max-width: 400px;
}

.footer-links h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: #94A3B8;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--saffron);
}

.footer-bottom {
    background-color: #0B1120;
    padding: 20px 0;
    text-align: center;
    color: #64748B;
    font-size: 0.9rem;
}

/* Mobile Sticky Footer */
.mobile-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    display: flex;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    gap: 4px;
    border-right: 1px solid #E2E8F0;
}

.mobile-btn i {
    font-size: 1.25rem;
}

.mobile-btn:last-child {
    border-right: none;
}

.wa-btn {
    background-color: var(--whatsapp);
    color: var(--white);
}

.phone-btn {
    color: var(--saffron);
}

@media (min-width: 992px) {
    .mobile-sticky-footer {
        display: none;
    }

    body {
        padding-bottom: 0;
    }
}

/* Animations Support Classes */
.fade-in-up,
.slide-in-left,
.slide-in-right,
.reveal-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.slide-in-left {
    transform: translateX(-30px);
}

.slide-in-right {
    transform: translateX(30px);
}

.animate {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}