/* 
   Amrut Creation - Premium International Business Homepage Design
   Custom CSS Styling - Luxurious Indian Traditional & Global Export Aesthetic
*/

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

:root {
    --primary: #4A0E17;       /* Rich Deep Maroon */
    --primary-light: #6B1C28; /* Shaded Maroon */
    --secondary: #DD7A3E;     /* Warm Saffron */
    --gold: #D4AF37;          /* Classic Gold Leaf */
    --gold-dark: #A98626;     /* Burnished Gold */
    --cream: #FAF6F0;         /* Traditional Off-white/Cream */
    --cream-dark: #F3EBE0;    /* Muted Sand/Cream */
    --dark: #120A0B;          /* Luxury Dark Charcoal */
    --dark-surface: #1E1213;  /* Elevated Dark Card Surface */
    --text-dark: #2C1A1C;     /* High contrast dark text */
    --text-muted: #6A5658;    /* Softer dark text */
    --text-light: #FFFFFF;    /* Clean white */
    --text-light-muted: #E2D9DA; /* Softer white text */
    --glass-bg: rgba(250, 246, 240, 0.85);
    --glass-border: rgba(212, 175, 55, 0.25);
    --shadow-lux: 0 20px 40px rgba(74, 14, 23, 0.08);
    --shadow-gold: 0 10px 25px rgba(214, 175, 55, 0.15);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 0.03em;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--cream);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border: 2px solid var(--cream);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Section Common Styles */
section {
    padding: 100px 8% 80px 8%;
    position: relative;
}

.section-dark {
    background-color: var(--dark);
    color: var(--text-light);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-size: 14px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 38px;
    color: var(--primary);
    position: relative;
    padding-bottom: 20px;
    line-height: 1.3;
}

.section-dark .section-title {
    color: var(--text-light);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--secondary));
}

.section-dark .section-title::after {
    background: linear-gradient(90deg, var(--gold), var(--secondary), var(--gold));
}

.section-desc {
    font-size: 17px;
    color: var(--text-muted);
    margin-top: 15px;
}

.section-dark .section-desc {
    color: var(--text-light-muted);
}

/* Button & Link Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-light);
    box-shadow: 0 10px 20px rgba(74, 14, 23, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(74, 14, 23, 0.35);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--dark);
    transform: translateY(-3px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* Floating Export Badge */
.export-badge {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 1000;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: 1px solid var(--gold);
    color: var(--text-light);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    animation: bounceBadge 3s infinite ease-in-out;
    transition: var(--transition);
}

.export-badge:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 35px rgba(74, 14, 23, 0.4);
    border-color: var(--text-light);
}

.export-badge .badge-icon {
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    animation: rotateGlobe 8s infinite linear;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(18, 10, 11, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 8%;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

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

.logo-main {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.05em;
    line-height: 1.1;
    transition: var(--transition);
}

.logo-sub {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 0.25em;
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light-muted);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--secondary));
    transition: var(--transition);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    filter: brightness(0.6) contrast(1.1);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                rgba(18, 10, 11, 0.8) 0%, 
                rgba(18, 10, 11, 0.4) 60%, 
                rgba(18, 10, 11, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    padding: 0 20px;
    color: var(--text-light);
    margin-top: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 14, 23, 0.6);
    border: 1px solid var(--gold);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    animation: fadeInUp 1s ease;
}

.hero-badge span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 600;
}

.hero-title {
    font-size: 54px;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-title span {
    background: linear-gradient(135deg, var(--gold) 20%, var(--secondary) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 20px;
    color: var(--text-light-muted);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Floating Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.8s both;
}

.stat-item {
    background: rgba(30, 18, 19, 0.7);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.stat-num {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-light-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* About Section */
.about {
    background-color: var(--cream);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-tag {
    font-size: 13px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-title {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-title span {
    color: var(--secondary);
}

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

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.about-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feat-icon {
    min-width: 24px;
    height: 24px;
    background: var(--gold-dark);
    border-radius: 50%;
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.about-feat-text h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2px;
}

.about-feat-text p {
    font-size: 13px;
    color: var(--text-muted);
}

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-img-box {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lux);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-img-box:hover img {
    transform: scale(1.08);
}

.about-img-large {
    grid-row: span 2;
    height: 480px;
}

.about-img-small {
    height: 230px;
}

.about-badge-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(74, 14, 23, 0.12);
    max-width: 250px;
    backdrop-filter: blur(10px);
}

.about-badge-icon {
    width: 50px;
    height: 50px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
}

.about-badge-text h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}

.about-badge-text p {
    font-size: 11px;
    color: var(--text-muted);
}

/* Product Showcase */
.products {
    background-color: var(--cream-dark);
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: var(--text-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--cream);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(74, 14, 23, 0.05);
    box-shadow: var(--shadow-lux);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(74, 14, 23, 0.15);
    border-color: var(--gold);
}

.product-img {
    height: 280px;
    position: relative;
    overflow: hidden;
}

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

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

.product-export-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(18, 10, 11, 0.85);
    color: var(--gold);
    border: 1px solid var(--gold);
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    backdrop-filter: blur(5px);
}

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

.product-category {
    font-size: 11px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-name {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.product-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--cream-dark);
    padding-top: 15px;
}

.product-spec {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-spec strong {
    color: var(--primary);
}

.product-link {
    font-size: 12px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.product-link:hover {
    color: var(--secondary);
}

/* Global Presence Section */
.global {
    background-color: var(--dark);
    overflow: hidden;
    padding-bottom: 100px;
}

.global-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

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

.global-info .section-title {
    color: var(--text-light);
    margin-bottom: 25px;
}

.global-features {
    list-style: none;
    margin: 30px 0;
}

.global-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 16px;
    color: var(--text-light-muted);
}

.global-features li i {
    color: var(--gold);
    font-size: 18px;
}

.global-map-container {
    position: relative;
    background: rgba(30, 18, 19, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.map-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.map-svg path {
    fill: #2C1F20;
    stroke: #3E2F30;
    stroke-width: 0.8;
    transition: var(--transition);
}

.map-svg path.active-country {
    fill: #452427;
    stroke: var(--gold);
    stroke-width: 1;
}

.map-marker {
    cursor: pointer;
    transition: var(--transition);
}

.map-marker circle.pulsing {
    animation: mapPulse 2s infinite ease-in-out;
    transform-origin: center;
}

.map-marker:hover circle.main-pin {
    fill: var(--secondary);
    r: 6;
}

/* Tooltip on Map */
.map-tooltip {
    position: absolute;
    background: rgba(18, 10, 11, 0.95);
    border: 1px solid var(--gold);
    border-radius: 6px;
    padding: 12px 18px;
    color: var(--text-light);
    font-size: 13px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 10;
    max-width: 250px;
}

.map-tooltip h4 {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.map-tooltip p {
    color: var(--text-light-muted);
    font-size: 12px;
    line-height: 1.4;
}

/* Why Choose Us Section */
.why-choose {
    background-color: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    background: white;
    border: 1px solid rgba(74, 14, 23, 0.05);
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-lux);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 14, 23, 0.1);
    border-color: var(--gold);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 1px solid var(--gold);
    color: var(--primary);
    font-size: 24px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--primary);
    color: var(--gold);
    border-color: var(--primary);
    transform: rotateY(180deg);
}

.why-title {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.why-desc {
    font-size: 13.5px;
    color: var(--text-muted);
}

/* Manufacturing & Infrastructure */
.infrastructure {
    background: linear-gradient(rgba(18, 10, 11, 0.85), rgba(18, 10, 11, 0.85)), 
                url('assets/hero_export.png') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--text-light);
    padding: 100px 8%;
}

.infra-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.infra-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.infra-stat-card {
    background: rgba(30, 18, 19, 0.6);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.infra-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.infra-stat-val {
    font-family: 'Cinzel', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
}

.infra-stat-lbl {
    font-size: 13px;
    color: var(--text-light-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--cream-dark);
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
    text-align: center;
}

.testi-quote {
    font-size: 20px;
    font-style: italic;
    color: var(--primary);
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
}

.testi-quote::before, .testi-quote::after {
    font-family: 'Cinzel', serif;
    font-size: 50px;
    color: var(--gold);
    position: absolute;
    opacity: 0.3;
}

.testi-quote::before {
    content: '“';
    top: -20px;
    left: -20px;
}

.testi-quote::after {
    content: '”';
    bottom: -40px;
    right: -20px;
}

.testi-author {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testi-role {
    font-size: 12px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.control-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.control-btn:hover {
    background: var(--primary);
    color: var(--text-light);
}

/* Certifications & Partnerships */
.certifications {
    background-color: var(--cream);
    padding: 60px 8%;
    border-top: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.cert-item {
    text-align: center;
    max-width: 220px;
}

.cert-stamp {
    width: 80px;
    height: 80px;
    border: 2px dashed var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    background: var(--cream);
    color: var(--primary);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 11px;
    line-height: 1.2;
    transition: var(--transition);
}

.cert-item:hover .cert-stamp {
    transform: rotate(15deg);
    border-color: var(--primary);
    color: var(--secondary);
}

.cert-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.cert-item p {
    font-size: 11px;
    color: var(--text-muted);
}

/* Premium Gallery Section (Masonry Grid) */
.gallery {
    background-color: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lux);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(74, 14, 23, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: var(--gold);
    font-size: 16px;
    font-weight: 700;
    font-family: 'Cinzel', serif;
}

.gallery-desc {
    color: var(--text-light-muted);
    font-size: 12px;
}

/* Masonry spans */
.gallery-w2 {
    grid-column: span 2;
}

.gallery-h2 {
    grid-row: span 2;
}

/* Footer Section */
footer {
    background-color: var(--dark);
    color: var(--text-light);
    padding: 80px 8% 30px 8%;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--secondary);
}

.footer-about p {
    color: var(--text-light-muted);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light-muted);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light-muted);
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 4px;
}

/* Inquiry Form */
.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.inquiry-form input, .inquiry-form textarea, .inquiry-form select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    padding: 10px 14px;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    outline: none;
    transition: var(--transition);
    width: 100%;
}

.inquiry-form input:focus, .inquiry-form textarea:focus, .inquiry-form select:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.inquiry-form select option {
    background: var(--dark);
    color: var(--text-light);
}

.inquiry-form button {
    margin-top: 5px;
    padding: 12px;
    font-size: 13px;
}

.form-response {
    display: none;
    font-size: 13px;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
}

.form-response.success {
    display: block;
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid #2ecc71;
    color: #2ecc71;
}

/* Copyright Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    font-size: 13px;
    color: var(--text-light-muted);
}

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes bounceBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes rotateGlobe {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes mapPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.2;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}

/* Responsive Grid and Mobile Media Queries */
@media (max-width: 1024px) {
    header {
        padding: 20px 5%;
    }
    header.scrolled {
        padding: 15px 5%;
    }
    section {
        padding: 80px 5% 60px 5%;
    }
    .hero-title {
        font-size: 44px;
    }
    .about {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-images {
        order: -1;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .global-layout {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .infra-layout {
        grid-template-columns: 1fr;
    }
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    .nav-links.active {
        right: 0;
    }
    .nav-actions {
        display: none;
    }
    .hero-title {
        font-size: 34px;
    }
    .hero-sub {
        font-size: 16px;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .infra-stats-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
