/* ========================= */
/*   CSS Variables & Reset   */
/* ========================= */
:root {
    --saffron: #e8721c;
    --gold: #d4a017;
    --gold-light: #f5d66b;
    --deep-red: #b91c1c;
    --warm-bg: #fdf6ee;
    --warm-bg-alt: #fff9f0;
    --cream: #fef7ea;
    --dark: #1a1207;
    --dark-soft: #3d2e10;
    --text: #4a3520;
    --text-light: #7a6550;
    --white: #fff;
    --shadow-sm: 0 2px 8px rgba(26, 18, 7, 0.06);
    --shadow-md: 0 8px 30px rgba(26, 18, 7, 0.10);
    --shadow-lg: 0 20px 60px rgba(26, 18, 7, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 50px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Outfit', sans-serif;
    --font-telugu: 'Noto Sans Telugu', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    background: var(--warm-bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* ========================= */
/*        Navigation         */
/* ========================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--dark);
}

.logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(232, 114, 28, 0.3));
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--saffron);
}

.logo-sub {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-links a:hover {
    background: rgba(232, 114, 28, 0.1);
    color: var(--saffron);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 4px;
    transition: var(--transition);
}

/* ========================= */
/*       Hero Section        */
/* ========================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(160deg, #fff7ed 0%, #fef3c7 25%, #fde68a 50%, #fed7aa 75%, #fdf6ee 100%);
    overflow: hidden;
}

/* Subtle dot pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(232, 114, 28, 0.07) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--saffron), transparent 70%);
    top: -100px;
    right: -100px;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--gold), transparent 70%);
    bottom: -50px;
    left: -80px;
    animation: floatShape 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--deep-red), transparent 70%);
    top: 40%;
    right: 20%;
    animation: floatShape 6s ease-in-out infinite 2s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -20px) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--saffron);
    margin-bottom: 28px;
    border: 1px solid rgba(232, 114, 28, 0.18);
    box-shadow: 0 4px 20px rgba(232, 114, 28, 0.08);
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero-line1 {
    display: block;
    background: linear-gradient(135deg, var(--saffron), var(--deep-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-line2 {
    display: block;
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto 36px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.45s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--saffron), var(--deep-red));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(232, 114, 28, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 114, 28, 0.45);
}

.btn-outline {
    border-color: var(--saffron);
    color: var(--saffron);
    background: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: var(--saffron);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--saffron);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================= */
/*    Sections General       */
/* ========================= */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(232, 114, 28, 0.1), rgba(212, 160, 23, 0.1));
    color: var(--saffron);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto;
}

/* ========================= */
/*       About Section       */
/* ========================= */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.about-card {
    background: linear-gradient(145deg, var(--warm-bg), var(--white));
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 160, 23, 0.08);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(232, 114, 28, 0.12);
    border-color: rgba(232, 114, 28, 0.12);
}

.about-card:hover::before {
    opacity: 1;
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.about-card:hover .about-icon {
    transform: scale(1.15) rotate(-5deg);
}

.about-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.about-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================= */
/*     Products Section      */
/* ========================= */
.products {
    background: var(--warm-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(232, 114, 28, 0.03), rgba(212, 160, 23, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(232, 114, 28, 0.1), 0 8px 20px rgba(0, 0, 0, 0.04);
    border-color: rgba(232, 114, 28, 0.15);
}

.product-card:hover::after {
    opacity: 1;
}

.product-emoji {
    font-size: 3.5rem;
    margin-bottom: 18px;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card:hover .product-emoji {
    transform: scale(1.2) translateY(-4px);
}

.product-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.product-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================= */
/*     Why Us Section        */
/* ========================= */
.why-us {
    background: linear-gradient(160deg, #1a1207, #3d2e10);
    color: var(--cream);
}

.why-us .section-tag {
    background: rgba(232, 114, 28, 0.15);
    color: var(--gold-light);
}

.why-us .section-header h2 {
    color: var(--white);
}

.why-us .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: rgba(232, 114, 28, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================= */
/*     Brands Marquee        */
/* ========================= */
.brands {
    background: var(--white);
    padding: 80px 0;
    overflow: hidden;
}

.brands-marquee {
    overflow: hidden;
    margin-top: 10px;
}

.brands-track {
    display: flex;
    gap: 16px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.brand-pill {
    background: linear-gradient(135deg, var(--warm-bg), var(--white));
    color: var(--text);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.brand-pill:hover {
    background: linear-gradient(135deg, rgba(232, 114, 28, 0.08), rgba(212, 160, 23, 0.06));
    color: var(--saffron);
    border-color: rgba(232, 114, 28, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(232, 114, 28, 0.1);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================= */
/*     Contact Section       */
/* ========================= */
.contact {
    background: var(--warm-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.contact-card {
    background: linear-gradient(145deg, var(--white), rgba(253, 246, 238, 0.5));
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(232, 114, 28, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    border-color: rgba(232, 114, 28, 0.1);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(232, 114, 28, 0.15);
}

.contact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(232, 114, 28, 0.12), rgba(212, 160, 23, 0.08));
    border-radius: 50%;
    margin: 0 auto 18px;
    font-size: 1.3rem;
    color: var(--saffron);
    transition: all 0.4s ease;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

/* ========================= */
/*   Map Rating Popup        */
/* ========================= */
.map-rating-popup {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 18px 20px;
    min-width: 230px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.6);
    animation: popupSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-12px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.rating-popup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.rating-popup-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid rgba(232, 114, 28, 0.2);
}

.rating-popup-info {
    display: flex;
    flex-direction: column;
}

.rating-popup-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--dark);
    line-height: 1.2;
}

.rating-popup-type {
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 400;
}

.rating-popup-score {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    color: #fbbc04;
    font-size: 0.85rem;
}

.rating-count {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.rating-popup-status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.open {
    background: #16a34a;
    box-shadow: 0 0 6px rgba(22, 163, 74, 0.5);
    animation: statusPulse 2s ease-in-out infinite;
}

.status-dot.closed {
    background: #dc2626;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.status-text {
    font-size: 0.78rem;
    font-weight: 600;
    color: #16a34a;
}

.rating-popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 9px 14px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #4285f4, #1a73e8);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
}

.rating-popup-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(66, 133, 244, 0.45);
}

/* Mobile responsive for map popup */
@media (max-width: 480px) {
    .map-rating-popup {
        top: 8px;
        right: 8px;
        left: 8px;
        min-width: unset;
        padding: 14px 16px;
    }
}

.phone-link {
    color: var(--saffron);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--deep-red);
}

.map-link {
    text-align: center;
    margin-top: 28px;
}

/* ========================= */
/*   Contact Form (Premium)  */
/* ========================= */
.contact-form-wrapper {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(253, 246, 238, 0.9));
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 52px 44px;
    margin-top: 48px;
    border: 1px solid rgba(232, 114, 28, 0.1);
    box-shadow:
        0 8px 32px rgba(26, 18, 7, 0.08),
        0 1px 3px rgba(232, 114, 28, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* Decorative top gradient bar */
.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron), var(--gold), var(--deep-red), var(--gold), var(--saffron));
    background-size: 200% 100%;
    animation: shimmerBar 4s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes shimmerBar {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Decorative glow orb */
.contact-form-wrapper::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 114, 28, 0.06), transparent 70%);
    bottom: -80px;
    right: -60px;
    pointer-events: none;
    z-index: 0;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 8px;
    position: relative;
}

.form-title i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(232, 114, 28, 0.1), rgba(212, 160, 23, 0.1));
    border-radius: 50%;
    color: var(--saffron);
    margin-right: 10px;
    font-size: 1rem;
    vertical-align: middle;
}

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 36px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    z-index: 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-group label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label::before {
    content: '';
    width: 3px;
    height: 14px;
    background: linear-gradient(180deg, var(--saffron), var(--gold));
    border-radius: 4px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--dark);
    background: rgba(253, 246, 238, 0.6);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(232, 114, 28, 0.2);
    background: rgba(253, 246, 238, 0.8);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--saffron);
    background: var(--white);
    box-shadow:
        0 0 0 4px rgba(232, 114, 28, 0.08),
        0 4px 16px rgba(232, 114, 28, 0.06);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.5;
    font-weight: 400;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

/* Submit Button - Premium */
.btn-submit {
    align-self: center;
    padding: 16px 48px;
    font-size: 1.05rem;
    margin-top: 12px;
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

/* Shimmer effect on button */
.btn-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-submit:hover::after {
    left: 120%;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn-submit:disabled::after {
    display: none;
}

/* Success state */
.btn-submit.success {
    background: linear-gradient(135deg, #16a34a, #15803d) !important;
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 36px 20px;
        border-radius: 16px;
        margin-top: 32px;
    }

    .form-title {
        font-size: 1.25rem;
    }

    .btn-submit {
        width: 100%;
        padding: 16px 24px;
    }
}

/* ========================= */
/*         Footer            */
/* ========================= */
.footer {
    background: linear-gradient(180deg, var(--dark) 0%, #0f0a04 100%);
    color: rgba(255, 255, 255, 0.6);
    padding: 56px 0 28px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 114, 28, 0.3), var(--gold-light), rgba(232, 114, 28, 0.3), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

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

.footer-brand strong {
    color: var(--white);
    font-size: 1.1rem;
    display: block;
}

.footer-brand p {
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
}

.footer-telugu {
    font-family: var(--font-telugu);
    color: rgba(255, 255, 255, 0.3);
    margin-top: 8px;
    font-size: 1rem;
}

/* ========================= */
/*  Dynamic Scroll Animations */
/* ========================= */

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--saffron), var(--gold), var(--deep-red));
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(232, 114, 28, 0.5);
}

/* Active nav link */
.nav-links a.nav-active {
    background: rgba(232, 114, 28, 0.12);
    color: var(--saffron);
}

/* Card tilt transitions */
.product-card,
.about-card,
.feature-card,
.contact-card {
    will-change: transform;
    transform-style: preserve-3d;
}

/* Hero elements initial state handled by JS */
.hero-badge,
.hero-title .hero-line1,
.hero-title .hero-line2,
.hero-subtitle,
.hero-cta,
.hero-stats {
    will-change: opacity, transform, filter;
}

/* Smooth shapes for parallax */
.hero-bg-shapes .shape {
    will-change: transform;
    transition: transform 0.3s ease-out;
}

/* ========================= */
/*       Preloader            */
/* ========================= */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: linear-gradient(135deg, #fff7ed, #fef3c7, #fde68a);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.preloader-logo {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
}

.preloader-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.preloader-ring {
    position: absolute;
    inset: 0;
    border: 3px solid rgba(232, 114, 28, 0.15);
    border-top-color: var(--saffron);
    border-radius: 50%;
    animation: preloaderSpin 1s linear infinite;
}

@keyframes preloaderSpin {
    to {
        transform: rotate(360deg);
    }
}

.preloader-text {
    font-family: var(--font);
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--saffron), var(--deep-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.preloader-bar {
    width: 160px;
    height: 4px;
    background: rgba(232, 114, 28, 0.12);
    border-radius: 4px;
    margin: 0 auto;
    overflow: hidden;
}

.preloader-bar-fill {
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
    border-radius: 4px;
    animation: preloaderBar 1.2s ease-in-out infinite;
}

@keyframes preloaderBar {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(400%);
    }
}

/* ========================= */
/*   WhatsApp Float Button   */
/* ========================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9990;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    text-decoration: none;
    box-shadow:
        0 4px 16px rgba(37, 211, 102, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsappBounceIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s both;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappBounceIn {
    from {
        opacity: 0;
        transform: scale(0) rotate(-45deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

@keyframes whatsappPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow:
        0 8px 28px rgba(37, 211, 102, 0.5),
        0 4px 10px rgba(0, 0, 0, 0.12);
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--dark);
    border-right: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(-4px);
}

/* ========================= */
/*    Back to Top Button      */
/* ========================= */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 9989;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--saffron), var(--deep-red));
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(232, 114, 28, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 24px rgba(232, 114, 28, 0.45);
}

.back-to-top:active {
    transform: translateY(0) scale(0.95);
}

/* ========================= */
/*     Responsive Design     */
/* ========================= */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: right 0.4s ease;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        padding: 14px 20px;
        font-size: 1.05rem;
        border-radius: var(--radius-sm);
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 70px 0;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .about-grid,
    .products-grid,
    .features-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        bottom: 20px;
        right: 18px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
        bottom: 82px;
        right: 20px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}