/* ========================================
   PREMIUM DISTRIBUTOR WEBSITE CSS
   Hreenkar Creation & Kambeshwar Agencies
   ======================================== */

/* ========================================
   1. IMPORTS & RESET
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700&display=swap');

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

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

body {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ========================================
   2. CUSTOM SCROLLBAR
   ======================================== */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d4a574, #ffc107);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ffc107, #d4a574);
}

/* ========================================
   3. HEADER & NAVIGATION
   ======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 26, 51, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-logo {
    width: 80px;
    height: 60px;
    object-fit: contain;
}

.company-names {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.company-name-primary,
.company-name-secondary {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.company-name-secondary {
    font-size: 0.8rem;
    color: #d4a574;
}

.main-navigation {
    flex: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4a574, #ffc107);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ffc107;
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta .cta-button {
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, #d4a574, #ffc107);
    color: #001a33;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
    transition: all 0.3s ease;
}

.header-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.6);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon {
    width: 30px;
    height: 3px;
    background: #ffffff;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}

/* ========================================
   4. HERO SECTION
   ======================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #001a33 0%, #0a0a0a 50%, #1a1a1a 100%);
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero-content-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

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

.hero-headline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(212, 165, 116, 0.5);
    letter-spacing: -1px;
}

.hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 500;
    color: #d4a574;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.hero-subtext {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #f5f5f5;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta.btn-primary {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #d4a574, #ffc107);
    color: #001a33;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
    transition: all 0.4s ease;
}

.hero-cta.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(212, 165, 116, 0.6);
}

.hero-cta.btn-secondary {
    padding: 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid rgba(212, 165, 116, 0.5);
    border-radius: 50px;
    transition: all 0.4s ease;
}

.hero-cta.btn-secondary:hover {
    background: rgba(212, 165, 116, 0.2);
    border-color: #d4a574;
    transform: translateY(-3px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: -0.3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

.scroll-text {
    color: #d4a574;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.scroll-icon {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, #d4a574, transparent);
}

/* ========================================
   5. SECTION UTILITIES
   ======================================== */

section {
    padding: 6rem 2rem;
    position: relative;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #d4a574;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 50px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #001a33;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========================================
   6. ABOUT SECTION
   ======================================== */

.about-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

.about-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-image {
    width: 100%;
    height: 920px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-container:hover .about-image {
    transform: scale(1.1);
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(180deg, transparent, rgba(0, 26, 51, 0.9));
}

.overlay-text {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #001a33;
    margin-bottom: 1rem;
}

.about-paragraph {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item {
    padding: 1rem;
    background: rgba(212, 165, 116, 0.05);
    border-left: 4px solid #d4a574;
    border-radius: 8px;
    font-size: 1rem;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(212, 165, 116, 0.1);
    transform: translateX(5px);
}

.value-item strong {
    color: #001a33;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 165, 116, 0.3);
    border-color: #d4a574;
}

.stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #d4a574;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
}

.stat-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #001a33;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   7. BRANDS SECTION
   ======================================== */

.brands-section {
    background: linear-gradient(135deg, #001a33 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.brands-section .section-title,
.brands-section .section-description {
    color: #ffffff;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.brand-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.brand-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #d4a574;
    box-shadow: 0 20px 60px rgba(212, 165, 116, 0.4);
}

.brand-image-container {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
}

.brand-logo {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

.brand-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.brand-description {
    font-size: 1rem;
    color: #f5f5f5;
    line-height: 1.7;
}

.brand-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.brand-features li {
    font-size: 0.95rem;
    color: #d4a574;
    padding-left: 1.5rem;
    position: relative;
}

.brand-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: 700;
}

.featured-brand {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(255, 193, 7, 0.15));
    border: 2px solid #d4a574;
}

.more-brands-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(212, 165, 116, 0.08));
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.brand-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #d4a574, #ffc107);
    color: #001a33;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.brand-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5);
}

/* ========================================
   8. WHY CHOOSE US SECTION
   ======================================== */

.why-choose-section {
    background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.advantage-card {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 165, 116, 0.2);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.advantage-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 1);
    border-color: #d4a574;
    box-shadow: 0 20px 60px rgba(212, 165, 116, 0.3);
}

.advantage-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(255, 193, 7, 0.1));
    border-radius: 50%;
    padding: 0.7rem;
}

.social-link i {
  color: white;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.social-link:hover i {
  transform: scale(1.2);
}

.advantage-icon .icon-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.advantage-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #001a33;
    margin-bottom: 1rem;
}

.advantage-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
}

.why-choose-cta-container {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(255, 193, 7, 0.1));
    border-radius: 30px;
    margin-top: 4rem;
}

.cta-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #001a33;
    margin-bottom: 1rem;
}

.cta-subtext {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #d4a574, #ffc107);
    color: #001a33;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
    transition: all 0.4s ease;
}

.cta-button-large:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(212, 165, 116, 0.6);
}

/* ========================================
   9. SERVICES SECTION
   ======================================== */

.services-section {
    background: linear-gradient(135deg, #001a33 0%, #1a1a1a 100%);
}

.services-section .section-title,
.services-section .section-description {
    color: #ffffff;
}

.services-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.service-category {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 25px;
    padding: 3rem;
    transition: all 0.4s ease;
}

.service-category:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #d4a574;
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(212, 165, 116, 0.3);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(1.3);
}

.service-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.service-description {
    font-size: 1.1rem;
    color: #f5f5f5;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-features li {
    font-size: 1rem;
    color: #d4a574;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.service-features li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #ffc107;
    font-size: 1.5rem;
}

.coverage-area-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 4rem;
}

.coverage-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.coverage-zone {
    background: rgba(212, 165, 116, 0.1);
    border-radius: 15px;
    padding: 2rem;
}

.zone-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 1.5rem;
    text-align: center;
}

.zone-locations {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.zone-locations li {
    font-size: 1rem;
    color: #f5f5f5;
    padding-left: 1.5rem;
    position: relative;
}

.zone-locations li::before {
    content: '📍';
    position: absolute;
    left: 0;
}

.coverage-note {
    text-align: center;
    font-size: 1.1rem;
    color: #d4a574;
    font-style: italic;
    margin-top: 2rem;
}

.services-benefits {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 25px;
    padding: 3rem;
}

.benefits-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    background: rgba(212, 165, 116, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #ffc107;
    font-size: 1rem;
    color: #f5f5f5;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(212, 165, 116, 0.2);
    transform: translateX(5px);
}

.benefit-item strong {
    color: #ffc107;
    display: block;
    margin-bottom: 0.5rem;
}

/* ========================================
   10. CONTACT SECTION
   ======================================== */

.contact-section {
    background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
}

.contact-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #001a33;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #001a33;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #d4a574;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #d4a574, #ffc107);
    color: #001a33;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
}

.form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 165, 116, 0.6);
}

.contact-info-container {
    background: linear-gradient(135deg, #001a33, #0a0a0a);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.info-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(255, 193, 7, 0.2));
    border-radius: 12px;
    padding: 1rem;
}

.contact-icon .icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.5);
}

.contact-text {
    flex: 1;
}

.contact-label {
    font-weight: 700;
    color: #d4a574;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    color: #f5f5f5;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-link {
    color: #ffffff;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ffc107;
}

.gst-details {
    background: rgba(212, 165, 116, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.gst-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 1rem;
}

.gst-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.gst-item {
    color: #f5f5f5;
    font-size: 0.95rem;
}

.gst-item strong {
    color: #d4a574;
}

.social-media-links {
    text-align: center;
}

.social-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 116, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #d4a574, #ffc107);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5);
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(1.5);
}

.map-container {
    margin-top: 4rem;
}

.map-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #001a33;
    text-align: center;
    margin-bottom: 2rem;
}

.map-embed-wrapper {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(212, 165, 116, 0.3);
}

.map-iframe {
    display: block;
    width: 100%;
    filter: grayscale(20%) contrast(1.1);
}

.map-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #666666;
    font-style: italic;
}

/* ========================================
   11. FOOTER
   ======================================== */

.site-footer {
    background: linear-gradient(135deg, #001a33 0%, #0a0a0a 100%);
    color: #ffffff;
    padding: 4rem 2rem 2rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4a574, #ffc107, #d4a574, transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

.footer-logo-section {
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 150px;
    height: 60px;
    margin-bottom: 1rem;
}

.footer-company-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #f5f5f5;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Form Status Message Styling */
.form-status-message {
    display: block;
    margin-top: 12px;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-status-message.success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    opacity: 1;
}

.form-status-message.error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    opacity: 1;
}

#submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.footer-gst {
    background: rgba(212, 165, 116, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid #d4a574;
}

.gst-line {
    font-size: 0.85rem;
    color: #f5f5f5;
    margin-bottom: 0.5rem;
}

.gst-line:last-child {
    margin-bottom: 0;
}

.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 1.5rem;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #f5f5f5;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding-left: 0;
    position: relative;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #d4a574;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #ffc107;
    padding-left: 15px;
}

.footer-link:hover::before {
    width: 10px;
}

.footer-brands-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-brand-item {
    color: #f5f5f5;
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}

.footer-brand-item::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #d4a574;
}

.footer-address {
    font-style: normal;
    margin-bottom: 1.5rem;
}

.address-line {
    color: #f5f5f5;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-detail {
    color: #f5f5f5;
    font-size: 0.95rem;
}

.footer-contact-link {
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: #ffc107;
}

.footer-middle {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

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

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 116, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, #d4a574, #ffc107);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5);
}

.footer-social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-bottom {
    padding-top: 2rem;
}

.footer-bottom-content {
    text-align: center;
}

.copyright-text {
    font-size: 0.95rem;
    color: #f5f5f5;
    margin-bottom: 1rem;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.legal-link {
    color: #d4a574;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #ffc107;
}

.separator {
    color: rgba(212, 165, 116, 0.5);
}

.footer-credits {
    font-size: 0.85rem;
    color: #999999;
    font-style: italic;
}

/* ========================================
   12. BACK TO TOP BUTTON
   ======================================== */

.back-to-top-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #d4a574, #ffc107);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5);
    transition: all 0.4s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.back-to-top-button.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.7);
}

.back-to-top-icon {
    font-size: 1.8rem;
    color: #001a33;
    font-weight: 700;
}

/* ========================================
   13. RESPONSIVE DESIGN
   ======================================== */

/* Tablet (768px and below) */
@media screen and (max-width: 768px) {
    .header-container {
        padding: 1rem 1.5rem;
    }

    .main-navigation {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-section {
        padding: 6rem 1.5rem 3rem;
        min-height: 90vh;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-subtext {
        font-size: 0.95rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta {
        width: 100%;
        text-align: center;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        height: 350px;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .services-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .back-to-top-button {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }
}

/* Mobile (480px and below) */
@media screen and (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .company-logo {
        width: 50px;
        height: 50px;
    }

    .company-name-primary,
    .company-name-secondary {
        font-size: 0.8rem;
    }

    .hero-headline {
        font-size: 1.8rem;
    }

    .section-label {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .brand-card {
        padding: 1.5rem;
    }

    .service-category {
        padding: 2rem;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.85rem 1.2rem;
    }

    .social-icons {
        gap: 1rem;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .separator {
        display: none;
    }
}

/* Large Desktop (1440px and above) */
@media screen and (min-width: 1440px) {
    .section-container {
        max-width: 1600px;
    }

    .hero-headline {
        font-size: 5rem;
    }

    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   14. ANIMATIONS & EFFECTS
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   15. UTILITY CLASSES
   ======================================== */

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

.text-gold {
    color: #d4a574;
}

.text-amber {
    color: #ffc107;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

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

.mt-2 {
    margin-top: 2rem;
}

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

/* ========================================
   16. PRINT STYLES
   ======================================== */

@media print {
    .site-header,
    .hero-scroll-indicator,
    .back-to-top-button,
    .mobile-menu-toggle {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    section {
        page-break-inside: avoid;
    }
}


/* Brand Page Specific Styles */
.brand-hero-section {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.brand-hero-logo {
    max-width: 200px;
    margin-bottom: 30px;
}

.brand-hero-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.brand-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.brand-info-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.brand-info-content {
    max-width: 800px;
    margin: 0 auto;
}

.brand-info-content h2 {
    color: #1a73e8;
    margin-bottom: 20px;
    font-size: 2rem;
}

.brand-info-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.brand-features {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.brand-features h3 {
    color: #1a73e8;
    margin-bottom: 20px;
}

.brand-features ul {
    list-style: none;
    padding: 0;
}

.brand-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.brand-features li:before {
    content: "✓";
    color: #1a73e8;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* SEO Tags Section */
.seo-tags-section {
    padding: 60px 0;
    background: white;
}

.seo-tags-section h2 {
    text-align: center;
    color: #1a73e8;
    margin-bottom: 40px;
    font-size: 2rem;
}

.tag-category {
    margin-bottom: 40px;
}

.tag-category h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-bottom: 2px solid #1a73e8;
    padding-bottom: 10px;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.seo-tag {
    background: #e3f2fd;
    color: #1a73e8;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid #bbdefb;
    transition: all 0.3s ease;
}

.seo-tag:hover {
    background: #1a73e8;
    color: white;
    transform: translateY(-2px);
}

/* CTA Section */
.brand-cta-section {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.brand-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.brand-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-hero-title {
        font-size: 2rem;
    }
    
    .brand-hero-subtitle {
        font-size: 1rem;
    }
    
    .tags-container {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .seo-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}