/* ==========================================================================
   SARVASRI ENTERPRISES - DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
    /* Color Palette */
    --bg-darker: #060e0a;
    --bg-dark: #0b1a12;
    --bg-card: rgba(18, 38, 28, 0.7);
    --bg-card-hover: rgba(26, 54, 40, 0.9);
    --border-color: rgba(212, 175, 55, 0.15);
    --border-hover: rgba(212, 175, 55, 0.4);
    
    --primary: #d4af37; /* Metallic Gold */
    --primary-hover: #f3e5ab; /* Pale Gold */
    --accent: #2e8b57; /* Sea Green */
    --accent-glow: #3cd070; /* Glowing Mint Green */
    
    --text-main: #f0f4f2;
    --text-muted: #a0b0a8;
    --text-dark: #0f2217;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout Details */
    --header-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    --shadow-glow: 0 0 25px rgba(212, 175, 55, 0.25);
}

/* --- Global Resets & Scrollbars --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

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

ul {
    list-style: none;
}

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

/* --- Reusable Layout Utilities --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #ffffff 50%, var(--primary-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section Common Styles */
section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

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

.section-tag {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-bar {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin-top: 15px;
    border-radius: 2px;
}

.section-bar.center {
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #b8952b 100%);
    color: var(--bg-darker);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: var(--primary-hover);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(6, 14, 10, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.header.scrolled {
    height: 70px;
    background: rgba(6, 14, 10, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    line-height: 1;
}

.logo-s {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.logo-sr {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-left: 8px;
    font-weight: 500;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-smooth);
}

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

.contact-btn-nav {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-color);
    padding: 8px 18px;
    border-radius: var(--border-radius-sm);
}

.contact-btn-nav::after {
    display: none;
}

.contact-btn-nav:hover {
    background: var(--primary);
    color: var(--bg-darker);
    border-color: var(--primary);
}

/* Hamburger menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition-smooth);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-dark);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
    padding: 100px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: var(--transition-smooth);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
}

.drawer-link:hover {
    color: var(--primary);
    padding-left: 5px;
}

.drawer-contact-btn {
    margin-top: 20px;
    background: var(--primary);
    color: var(--bg-darker);
    text-align: center;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 70% 30%, #112d1f 0%, var(--bg-darker) 70%);
    padding-top: 120px;
    overflow: hidden;
}

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

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

.hero-subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Carousel/Cards inside Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.glow-orb {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(60, 208, 112, 0.05) 50%, transparent 100%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

.feature-card-carousel {
    width: 100%;
    max-width: 380px;
    height: 240px;
    position: relative;
    perspective: 1000px;
}

.feature-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    transform: rotateX(10deg) translateY(40px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 1;
}

.feature-card.active {
    opacity: 1;
    transform: rotateX(0) translateY(0) scale(1);
    pointer-events: auto;
    z-index: 2;
    border-color: var(--primary);
    box-shadow: var(--shadow-premium), var(--shadow-glow);
}

.feature-badge {
    align-self: flex-start;
    padding: 4px 10px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #fff;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.carousel-dots {
    display: flex;
    gap: 8px;
    margin-top: 30px;
    z-index: 3;
}

.dot {
    width: 24px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--primary);
    width: 36px;
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about {
    background-color: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.stat-item {
    flex: 1;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    display: block;
    margin-top: 5px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateX(8px);
    border-color: var(--primary);
    background: var(--bg-card-hover);
}

.value-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: var(--border-radius-sm);
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   BLESSINGS SECTION (HERITAGE)
   ========================================================================== */
.blessings {
    background: linear-gradient(rgba(6, 14, 10, 0.95), rgba(6, 14, 10, 0.95)), url('amma.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.blessings-container {
    display: flex;
    justify-content: center;
}

.blessings-card {
    background: rgba(11, 26, 18, 0.85);
    border: 2px solid var(--primary);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
    box-shadow: var(--shadow-premium), var(--shadow-glow);
    max-width: 1000px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.image-frame {
    position: relative;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.image-frame img {
    border-radius: var(--border-radius-sm);
    width: 100%;
    filter: brightness(0.9) contrast(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
}

.image-frame:hover img {
    transform: scale(1.03);
}

/* Gold Frame corners styling */
.frame-corners span {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    pointer-events: none;
}

.frame-corners span:nth-child(1) { top: 0; left: 0; border-right: none; border-bottom: none; }
.frame-corners span:nth-child(2) { top: 0; right: 0; border-left: none; border-bottom: none; }
.frame-corners span:nth-child(3) { bottom: 0; left: 0; border-right: none; border-top: none; }
.frame-corners span:nth-child(4) { bottom: 0; right: 0; border-left: none; border-top: none; }

.blessings-content {
    display: flex;
    flex-direction: column;
}

.blessings-tag {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.blessings-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.blessings-quote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-hover);
    margin-bottom: 20px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary);
}

.blessings-translation {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.blessings-author {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    align-self: flex-end;
}

/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */
.products {
    background-color: var(--bg-darker);
}

/* Tabs */
.products-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(212, 175, 55, 0.05);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--bg-darker);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

/* Grid & Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: var(--transition-smooth);
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    opacity: 1;
    transform: scale(1);
}

.product-card.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.9);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-premium), var(--shadow-glow);
}

.product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(6, 14, 10, 0.85);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.product-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.product-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-specs {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 18px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-specs li {
    color: var(--text-muted);
    display: flex;
    gap: 8px;
}

.product-specs li strong {
    color: var(--primary-hover);
    font-family: var(--font-heading);
    font-weight: 600;
    min-width: 110px;
}

.btn-card-inquiry {
    margin-top: auto;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.btn-card-inquiry:hover {
    background: var(--primary);
    color: var(--bg-darker);
    border-color: var(--primary);
}

/* ==========================================================================
   NETWORK & SUPPLY LOGISTICS
   ========================================================================== */
.network {
    background-color: var(--bg-dark);
}

.network-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: center;
}

.network-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.network-info p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.network-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.network-card {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--border-radius-md);
    align-items: flex-start;
}

.network-card .card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-card h4 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.network-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Map visualizer styling */
.network-map-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.map-header {
    padding: 20px;
    background: rgba(6, 14, 10, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pulse-indicator {
    width: 10px;
    height: 10px;
    background: var(--accent-glow);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-glow);
    animation: pulseGlow 2s infinite;
}

.map-header h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.map-graphic {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
}

.map-footer {
    display: flex;
    justify-content: space-around;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(6, 14, 10, 0.4);
}

.stat-legend {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.dot-legend.source { background: var(--primary); }
.dot-legend.dest { background: var(--accent-glow); }

/* SVG Map animations */
@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 15px var(--accent-glow); }
    100% { transform: scale(0.9); opacity: 0.6; }
}

@keyframes mapPingAnim {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.map-ping {
    transform-origin: 250px 140px;
    animation: mapPingAnim 2.5s infinite;
}

.route-line {
    animation: dashRoute 30s linear infinite;
}

@keyframes dashRoute {
    to {
        stroke-dashoffset: -100;
    }
}

/* ==========================================================================
   CONTACT & INQUIRY FORM
   ========================================================================== */
.contact {
    background-color: var(--bg-darker);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 1.25;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

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

.method-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.method-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    background: rgba(212, 175, 55, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.method-details span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-details a, .method-details p {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
}

.method-details a:hover {
    color: var(--primary);
}

/* Glass Form Container */
.contact-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #fff;
}

.contact-form-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.form-group label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-group input, .form-group select, .form-group textarea {
    background: rgba(6, 14, 10, 0.4);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    outline: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
    background: rgba(6, 14, 10, 0.6);
}

.form-group select option {
    background-color: var(--bg-dark);
    color: var(--text-main);
}

.form-group textarea {
    resize: none;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, #b8952b 100%);
    color: var(--bg-darker);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-submit .spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--bg-darker);
    animation: spin 0.8s linear infinite;
    position: absolute;
}

.btn-submit.loading .btn-text {
    visibility: hidden;
}

.btn-submit.loading .spinner {
    display: block;
}

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

.form-status {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

.form-status.success {
    opacity: 1;
    max-height: 80px;
    padding: 10px;
    background: rgba(60, 208, 112, 0.1);
    border: 1px solid rgba(60, 208, 112, 0.3);
    color: var(--accent-glow);
}

.form-status.error {
    opacity: 1;
    max-height: 80px;
    padding: 10px;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--bg-darker);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 0.8fr) 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 20px;
    max-width: 320px;
}

.footer-links h4, .footer-info h4 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links ul a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.certs-badges {
    display: flex;
    gap: 10px;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 15px;
}

.blessing-footer {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 500;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    /* Layout structural changes */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        height: 320px;
    }
    
    .about-grid, .blessings-card, .network-layout, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-values {
        order: -1;
    }
    
    .blessings-card {
        padding: 30px;
    }
    
    .blessings-card .image-frame {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    /* Navigation changes */
    .navbar {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Success Modal Overlay */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 14, 10, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.success-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.success-modal-card {
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-premium), var(--shadow-glow);
    transform: scale(0.85);
    transition: var(--transition-smooth);
}

.success-modal-overlay.open .success-modal-card {
    transform: scale(1);
}

.success-modal-card .modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.success-modal-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.success-modal-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-modal-close {
    width: 100%;
}
