/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Professional Color Palette - Client Specified */
    --primary: #1F3A5F;      /* Deep Blue */
    --primary-light: #2A4A7A; /* Lighter Blue */
    --primary-dark: #162B4A;  /* Darker Blue */
    --accent: #C9A24D;       /* Warm Gold */
    --accent-light: #D9B86B; /* Lighter Gold */
    --accent-dark: #B89136;  /* Darker Gold */
    --highlight: #4E7FB7;    /* Bright Blue */
    --highlight-light: #5E8FC7; /* Lighter Highlight */
    --background: #0E1621;   /* Dark Navy Background */
    --card-bg: #151F2E;      /* Card Background */
    --card-hover: #1A2638;   /* Card Hover State */
    --text-light: #FFFFFF;   /* White Text */
    --text-gray: #B0B8C5;    /* Light Gray Text */
    --text-dark: #8A95A6;    /* Dark Gray Text */
    --border-color: #2A3A4D; /* Border Color */
    --border-light: #3A4A5D; /* Light Border */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.4); /* Deep Shadow */
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.3); /* Light Shadow */
    --glow: 0 0 20px rgba(201, 162, 77, 0.2); /* Gold Glow */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;          /* Border Radius */
    --radius-sm: 8px;        /* Small Radius */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Watermark Container */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/dark-logo.jpg');
    background-repeat: repeat;
    background-position: center;
    background-size: 300px;
    opacity: 0.02;
    pointer-events: none;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.section-title {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--highlight));
    border-radius: 2px;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-light);
    border: 1px solid var(--primary-light);
    box-shadow: 0 4px 15px rgba(31, 58, 95, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(31, 58, 95, 0.5);
    border-color: var(--highlight);
}

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

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--glow);
}

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

.btn-outline:hover {
    background: var(--highlight);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 127, 183, 0.3);
}

.btn-block {
    width: 100%;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(14, 22, 33, 0.98) 0%, 
        rgba(31, 58, 95, 0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--accent);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

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

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 60px;
    width: auto;
    border-radius: 8px;
    border: 2px solid var(--accent);
    padding: 3px;
    background: var(--card-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.company-info {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-tagline {
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--highlight));
    transition: var(--transition);
    border-radius: 1px;
}

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

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

.nav-actions .whatsapp-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.nav-actions .whatsapp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.nav-actions .whatsapp-cta i {
    font-size: 1.1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--accent);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--accent);
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-dark), var(--background));
        flex-direction: column;
        padding: 80px 2rem 2rem;
        transition: var(--transition);
        z-index: 999;
        border-right: 2px solid var(--accent);
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(201, 162, 77, 0.1);
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 0;
        color: var(--text-light);
        font-size: 1rem;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--accent);
        padding-left: 10px;
    }
    
    .nav-actions {
        display: none;
    }
    
    .company-name {
        font-size: 1.1rem;
    }
    
    .company-tagline {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 50px;
    }
    
    .company-name {
        font-size: 1rem;
    }
    
    .company-tagline {
        font-size: 0.65rem;
    }
    
    .navbar {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 45px;
    }
    
    .company-name {
        font-size: 0.9rem;
    }
    
    .company-tagline {
        display: none;
    }
    
    .header {
        padding: 8px 0;
    }
}
/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(
        135deg, 
        rgba(14, 22, 33, 0.95) 0%, 
        rgba(31, 58, 95, 0.85) 50%, 
        rgba(14, 22, 33, 0.95) 100%
    );
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(14, 22, 33, 0.9) 0%, transparent 100%),
        url('../images/dark-logo.jpg') center/cover no-repeat;
    opacity: 0.12;
    z-index: 1;
}

/* Animated background elements */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(78, 127, 183, 0.15) 50%,
        transparent 100%
    );
    animation: shimmer 8s infinite linear;
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(14, 22, 33, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(201, 162, 77, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, 
        rgba(201, 162, 77, 0.15), 
        rgba(201, 162, 77, 0.05));
    color: var(--accent);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(201, 162, 77, 0.3);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(
        135deg, 
        var(--text-light) 0%, 
        var(--accent) 50%, 
        var(--highlight) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--highlight));
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat {
    text-align: center;
    background: linear-gradient(135deg, 
        rgba(31, 58, 95, 0.25), 
        rgba(31, 58, 95, 0.1));
    padding: 1.8rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    min-width: 140px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--highlight));
}

.stat:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        var(--glow);
}

.stat h3 {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat p {
    color: var(--text-gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-cta .btn {
    min-width: 180px;
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius);
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        transparent 0%, 
        rgba(78, 127, 183, 0.08) 40%, 
        transparent 80%
    );
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 30% 0);
    z-index: 1;
    animation: patternFloat 15s infinite ease-in-out;
}

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

/* Floating elements */
.floating-element {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: var(--highlight);
    border-radius: 20px;
    animation: float 18s infinite ease-in-out reverse;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    animation: float 12s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero {
        padding: 150px 0 100px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat {
        min-width: 120px;
        padding: 1.5rem 1rem;
    }
    
    .stat h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat {
        min-width: 100px;
        padding: 1.2rem 0.8rem;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        width: 100%;
        max-width: 200px;
    }
}
/* ===== FEATURED PRODUCTS ===== */
.featured-products {
    padding: 100px 0;
    background: var(--card-bg);
}

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

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

.product-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--highlight);
    box-shadow: var(--shadow);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--highlight));
}

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

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

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

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

.product-price {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

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

/* ===== ABOUT COMPANY ===== */
.about-company {
    padding: 100px 0;
    background: var(--background);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.about-features {
    margin: 2rem 0;
}

.feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(78, 127, 183, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--highlight);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature:hover .feature-icon {
    background: rgba(201, 162, 77, 0.2);
    color: var(--accent);
    transform: rotate(5deg);
}

.feature-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.feature-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.about-image {
    position: relative;
}

.image-frame {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-light);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid var(--accent);
}

.experience-badge h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.experience-badge p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
    padding: 100px 0;
    background: var(--card-bg);
}

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

.advantage-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--highlight));
}

.advantage-card:hover {
    border-color: var(--highlight);
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: rgba(78, 127, 183, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--highlight);
    font-size: 1.8rem;
    transition: var(--transition);
}

.advantage-card:hover .advantage-icon {
    background: rgba(201, 162, 77, 0.2);
    color: var(--accent);
    transform: scale(1.1);
}

.advantage-card h3 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.advantage-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-gray);
}

/* ===== CERTIFICATIONS ===== */
.certifications {
    padding: 100px 0;
    background: var(--background);
}

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

.cert-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--highlight));
}

.cert-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.cert-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 162, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent);
    font-size: 1.8rem;
    transition: var(--transition);
}

.cert-card:hover .cert-icon {
    background: rgba(78, 127, 183, 0.2);
    color: var(--highlight);
    transform: rotate(15deg);
}

.cert-card h3 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--card-bg);
}

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

.testimonial-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--highlight);
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(78, 127, 183, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
    transition: var(--transition);
}

.testimonial-card:hover::before {
    color: rgba(201, 162, 77, 0.2);
}

.testimonial-content {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 0;
    color: var(--text-gray);
}

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.testimonial-author h4 {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background: var(--background);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(78, 127, 183, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--highlight);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: rgba(201, 162, 77, 0.2);
    color: var(--accent);
    transform: rotate(5deg);
}

.contact-content h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-content p {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background: var(--highlight);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(78, 127, 183, 0.3);
}

.contact-form-container {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.form-header p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-gray);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--highlight);
    box-shadow: 0 0 0 3px rgba(78, 127, 183, 0.1);
    background: rgba(14, 22, 33, 0.8);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dark);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 60px 0 30px;
    border-top: 4px solid var(--accent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
    filter: brightness(1.1);
}

.footer-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: rgba(176, 184, 197, 0.8);
}

.whatsapp-footer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 162, 77, 0.1);
    color: var(--accent);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(201, 162, 77, 0.3);
}

.whatsapp-footer:hover {
    background: rgba(201, 162, 77, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.footer-links h4,
.footer-products h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-products h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--accent);
}

.footer-links ul,
.footer-products ul {
    list-style: none;
}

.footer-links li,
.footer-products li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-products a {
    color: rgba(176, 184, 197, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover,
.footer-products a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    color: rgba(176, 184, 197, 0.8);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 3px;
    min-width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(176, 184, 197, 0.7);
}

.footer-policies {
    display: flex;
    gap: 2rem;
}

.footer-policies a {
    color: rgba(176, 184, 197, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-policies a:hover {
    color: var(--accent);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: 2px solid var(--highlight);
}

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

.back-to-top:hover {
    background: var(--highlight);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(78, 127, 183, 0.4);
}

/* ===== PRODUCTS PAGE SPECIFIC ===== */
.page-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, 
        rgba(14, 22, 33, 0.95) 0%, 
        rgba(31, 58, 95, 0.8) 50%, 
        rgba(14, 22, 33, 0.95) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/turmeric.jpg') center/cover no-repeat;
    opacity: 0.08;
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-gray);
}

/* Products Filter */
.products-filter {
    padding: 2rem 0;
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
}

.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background: var(--background);
    border: 1px solid var(--border-color);
    color: var(--text-gray);
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--text-light);
    border-color: var(--highlight);
    box-shadow: 0 3px 10px rgba(78, 127, 183, 0.2);
}

.filter-search {
    display: flex;
    align-items: center;
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 0 15px;
    width: 300px;
    transition: var(--transition);
}

.filter-search:focus-within {
    border-color: var(--highlight);
    box-shadow: 0 0 0 3px rgba(78, 127, 183, 0.1);
}

.filter-search input {
    flex: 1;
    padding: 10px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

.filter-search input:focus {
    outline: none;
}

.filter-search input::placeholder {
    color: var(--text-dark);
}

.search-btn {
    background: transparent;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}

.search-btn:hover {
    color: var(--accent);
}

/* Products Header */
.products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-header h2 {
    margin-bottom: 1rem;
}

.products-header p {
    color: var(--text-gray);
}

/* All Products Section */
.all-products {
    padding: 100px 0;
    background: var(--background);
}

.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

/* Product Categories */
.product-categories {
    padding: 100px 0;
    background: var(--card-bg);
}

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

.category-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.category-card:hover {
    border-color: var(--highlight);
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--highlight));
}

.category-icon {
    width: 70px;
    height: 70px;
    background: rgba(78, 127, 183, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--highlight);
    font-size: 1.8rem;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: rgba(201, 162, 77, 0.2);
    color: var(--accent);
    transform: scale(1.1);
}

.category-card h3 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.category-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-gray);
}

/* Export Process */
.export-process {
    padding: 100px 0;
    background: var(--background);
}

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

.process-step {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--highlight);
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    border-left-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--accent);
}

.process-step h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-gray);
}

/* Products CTA */
.products-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.products-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/turmeric.jpg') center/cover no-repeat;
    opacity: 0.05;
    z-index: 1;
}

.products-cta h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.products-cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Product Specs */
.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 1rem 0;
}

.product-spec {
    background: rgba(78, 127, 183, 0.1);
    color: var(--highlight);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

.product-spec:hover {
    background: rgba(201, 162, 77, 0.2);
    color: var(--accent);
    transform: translateY(-2px);
}

/* Product Category Badge */
.product-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    border: 1px solid var(--highlight);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-search {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--card-bg);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        z-index: 999;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .stat {
        width: 100%;
        max-width: 200px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-policies {
        justify-content: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-title,
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 24px;
    }
    
    .filter-categories {
        justify-content: center;
    }
}
/* ================= INQUIRY MODAL PREMIUM ================= */
.modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(6px);
  z-index:9999;
}

.modal-content{
  background:linear-gradient(180deg,#0c1a2b,#0a1320);
  border-radius:18px;
  padding:26px;
  width:90%;
  max-width:480px;
  box-shadow:0 25px 60px rgba(0,0,0,.45);
  animation:popup .35s ease;
  position:relative;
}

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

.modal-content h3{
  color:#fff;
  text-align:center;
}

.modal-content input,
.modal-content textarea{
  width:100%;
  padding:12px;
  margin-bottom:12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.05);
  color:#fff;
}

.modal-close{
  position:absolute;
  top:12px;
  right:15px;
  font-size:1.5rem;
  color:#fff;
  cursor:pointer;
}

body.modal-open{overflow:hidden}

/* mobile bottom sheet */
@media(max-width:600px){
.modal-content{
  position:fixed;
  bottom:0;
  left:0;right:0;
  border-radius:22px 22px 0 0;
  animation:mobileUp .4s ease;
}
@keyframes mobileUp{
  from{transform:translateY(100%)}
  to{transform:translateY(0)}
}}
.cert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.cert-card:hover .cert-icon img {
    transform: scale(1.05);
}
.simple-certs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.cert-card.simple {
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
    padding: 0;
}

.cert-card.simple img {
    width: 120px;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.cert-card.simple h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}
.cert-card.simple img {
    transition: transform 0.3s ease;
}

.cert-card.simple:hover img {
    transform: scale(1.05);
}
/* ===== CLEAN CERTIFICATIONS (FINAL OVERRIDE) ===== */

.clean-certs .certs-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.clean-certs .cert-item {
    text-align: center;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.clean-certs .cert-item::before,
.clean-certs .cert-item::after {
    display: none !important;
    content: none !important;
}

.clean-certs .cert-item img {
    height: 90px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 12px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}

.clean-certs .cert-item p {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .clean-certs .certs-row {
        gap: 40px;
    }

    .clean-certs .cert-item img {
        height: 75px;
    }
}
.footer-map {
    margin-top: 15px;
}

.footer-map h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.footer-map iframe {
    border-radius: 8px;
    filter: grayscale(1);
}
.footer-map-link {
    color: #4da6ff;
    text-decoration: none;
}

.footer-map-link:hover {
    text-decoration: underline;
}
.footer-map {
    margin-top: 15px;
}

.footer-map h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.clickable-map a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.clickable-map iframe {
    pointer-events: none; /* 🔥 THIS IS THE KEY */
    width: 100%;
    border-radius: 8px;
}
.clickable-map a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.clickable-map iframe {
    pointer-events: none; /* 🔥 KEY LINE */
    width: 100%;
    border-radius: 8px;
}
/* ===== FOOTER MAP RESPONSIVE FIX ===== */

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-map {
    grid-column: span 2; /* map ko thoda wide */
}

.map-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    border-radius: 10px;
    overflow: hidden;
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1);
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    color: #4da6ff;
    font-size: 0.9rem;
    text-decoration: none;
}

.map-link:hover {
    text-decoration: underline;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-map {
        grid-column: span 1;
    }
}
/* ===== OFFICE MAP SECTION ===== */

.office-map-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0b1624, #0e1b2e);
}

.office-map-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: center;
}

.office-map-info p {
    color: #cfd8e3;
    margin: 20px 0;
    line-height: 1.6;
}

.office-map-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.office-map-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1);
}

/* ===== MOBILE ===== */
@media (max-width: 992px) {
    .office-map-grid {
        grid-template-columns: 1fr;
    }

    .office-map-info {
        text-align: center;
    }
}
