/* ===================================
   Unity Impex - Kakadiam-Inspired Styles
   =================================== */

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

:root {
    /* Colors */
    --navy-dark: #001534;
    --navy-medium: #001F54;
    --navy-light: #0b2232;
    --accent-lime: #9bd400;
    --white: #ffffff;
    --off-white: #f7f9fb;
    --light-gray: #eef5fb;
    --text-dark: #222831;
    --text-muted: #6b7280;
    --text-light: #c6d4de;
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max: 1200px;
}

html {
    overflow-x: hidden;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: 90px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Prevent FOUC (Flash of Unstyled Content) for dynamically loaded components */
#header-placeholder,
#footer-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

#header-placeholder.loaded,
#footer-placeholder.loaded {
    opacity: 1;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Header
   =================================== */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled .header-container {
    padding: 12px 24px;
}

.header.scrolled .logo-img {
    height: 42px;
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.3s ease;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: height 0.3s ease;
}

.nav-list {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-lime);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* ===================================
   Modern Hero Section
   =================================== */
.hero-modern {
    min-height: 100vh;
    background: linear-gradient(135deg, #001534 0%, #002855 50%, #001534 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.4;
}

.hero-shapes {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(155, 212, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.hero-shapes::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(155, 212, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

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

.hero-modern-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    color: var(--white);
    animation: fadeInLeft 1s ease-out;
}

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

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(155, 212, 0, 0.15);
    border: 2px solid rgba(155, 212, 0, 0.3);
    border-radius: 50px;
    color: var(--accent-lime);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-modern-title {
    font-family: var(--font-serif);
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.highlight {
    background: linear-gradient(135deg, #9bd400 0%, #c8ff00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-lime), transparent);
    opacity: 0.5;
}

.hero-modern-subtitle {
    font-size: clamp(17px, 2.5vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-primary-hero {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent-lime) 0%, #88bb00 100%);
    color: var(--navy-dark);
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(155, 212, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-primary-hero:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(155, 212, 0, 0.4);
}

.btn-secondary-hero {
    padding: 18px 40px;
    background: transparent;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-item strong {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-lime);
    line-height: 1;
}

.stat-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-right {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

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

.hero-video-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    aspect-ratio: 4/3;
}

.hero-main-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.35); /* Zoom to remove black bars */
}

.video-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(0, 21, 52, 0.3) 0%, 
        transparent 50%, 
        rgba(155, 212, 0, 0.1) 100%);
    pointer-events: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 3;
    animation: fadeIn 1s ease-out 1.5s both;
}

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

.scroll-arrow {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { 
        top: 6px;
        opacity: 1;
    }
    50% { 
        top: 18px;
        opacity: 0.3;
    }
}


/* ===================================
   Introduction Section
   =================================== */
.intro {
    padding: var(--section-padding);
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

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

.intro-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.intro-video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ===================================
   Explore Section (Dark Blue)
   =================================== */
.explore {
    padding: var(--section-padding);
    background: var(--navy-dark);
    color: var(--white);
}

.explore-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.explore-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-top: 20px;
}

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

.explore-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.explore-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Image labels for process section */
.image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,21,52,0.9), transparent);
    color: var(--white);
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.explore-image {
    position: relative;
}

.explore-image:hover .image-label {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Products Section
   =================================== */
.products {
    padding: var(--section-padding);
    background: var(--off-white);
}

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

.section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-lime);
    margin-bottom: 12px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-image {
    background: #f8f9fa;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-content {
    padding: 32px;
    background: #fafbfc;
}

.product-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.product-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ===================================
   Ethics Section (Dark Blue)
   =================================== */
.ethics {
    padding: var(--section-padding);
    background: var(--navy-medium);
    color: var(--white);
}

.ethics-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ethics-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 24px 0 40px;
}

.certifications {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cert-icon {
    width: 28px;
    height: 28px;
    background: var(--accent-lime);
    color: var(--navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.cert-text {
    font-size: 15px;
    font-weight: 500;
}

/* ===================================
   CSR Section (Tripod of Success with Parallax Background)
   =================================== */
.csr-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-image: url('../images/diamonds background.png');
    background-size: cover;
    background-position: 50% 0;
    background-attachment: fixed;
    will-change: background-position;
}

.csr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 21, 52, 0.85);
    z-index: 1;
}

.csr-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.csr-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.csr-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.csr-text:last-child {
    margin-bottom: 0;
}

/* ===================================
   Testimonials Section (Parallax Effect)
   =================================== */
.testimonials-section {
    position: relative;
    min-height: 650px;
    background: linear-gradient(rgba(0, 31, 84, 0.92), rgba(11, 26, 40, 0.92)), 
                url('../images/testimonials-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--white);
    padding: var(--section-padding);
    overflow: hidden;
}

.testimonials-overlay {
    position: absolute;
    inset: 0;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJncmlkIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxwYXRoIGQ9Ik0gNDAgMCBMIDAgMCAwIDQwIiBmaWxsPSJub25lIiBzdHJva2U9InJnYmEoMjU1LDI1NSwyNTUsMC4wMykiIHN0cm9rZS13aWR0aD0iMSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmlkKSIvPjwvc3ZnPg==);
    pointer-events: none;
    opacity: 0.3;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonials-subtitle {
    font-size: 17px;
    color: var(--text-light);
    margin-top: 12px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(0, 31, 84, 0.4), rgba(11, 34, 50, 0.6));
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(155, 212, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(0, 31, 84, 0.6), rgba(11, 34, 50, 0.8));
    border-color: rgba(155, 212, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

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

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 72px;
    line-height: 1;
    color: var(--accent-lime);
    opacity: 0.3;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.testimonial-author p {
    font-size: 14px;
    color: var(--accent-lime);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .csr-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .csr-section,
    .testimonials-section {
        background-attachment: scroll;
    }
    
    .csr-card {
        padding: 32px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
}

/* ===================================
   Locations Section
   =================================== */
.locations {
    padding: var(--section-padding);
    background: var(--white);
}

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

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

.location-card {
    padding: 32px;
    background: var(--off-white);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.location-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.location-address {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 12px;
    flex-grow: 1;
    overflow-wrap: break-word;
}

.location-phone {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-lime);
}

/* ===================================
   Contact Section (Dark Blue)
   =================================== */
.contact {
    padding: var(--section-padding);
    background: var(--navy-dark);
    color: var(--white);
}

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

.contact-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 12px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-item a {
    color: var(--accent-lime);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-lime);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--off-white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-lime);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(155, 212, 0, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: var(--accent-lime);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: #88bb00;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(155, 212, 0, 0.3);
}

/* Form Bottom Row - reCAPTCHA beside button */
.form-bottom-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 24px;
}

.form-bottom-row .form-group {
    flex: 1;
    min-width: 0;
}

.form-bottom-row .btn-submit {
    flex-shrink: 0;
    width: 200px;
    height: 78px;
    padding: 16px 24px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: #0b1a28;
    padding: 60px 0 30px;
    color: var(--text-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    max-width: 400px;
}

.footer-links h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 15px;
    color: var(--text-light);
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #99aabb;
}

/* ===================================
   GSAP Animation Classes
   =================================== */
.fade-up {
    opacity: 0;
    transform: translateY(60px);
}

.fade-in {
    opacity: 0;
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
}

/* Will-change for performance */
.csr-section,
.testimonials-section {
    will-change: transform;
}

/* Footer Reveal Wrapper */
.footer-reveal-wrapper {
    position: relative;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .explore-image img {
        height: 300px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }
    
    .nav.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }
    
    .nav-link {
        padding: 16px 24px;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-modern {
        min-height: 80vh;
        padding: 100px 0 60px;
    }
    
    .hero-modern-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 24px;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-modern-subtitle {
        max-width: 100%;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-right {
        order: -1;
    }
    
    .hero-video-container {
        aspect-ratio: 16/9;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .hero-modern {
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero-modern-container {
        padding: 0 20px;
        gap: 40px;
    }
    
    .hero-left {
        animation: none;
    }
    
    .hero-right {
        animation: none;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        text-align: center;
        padding: 16px 32px;
    }
    
    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .stat-item strong {
        font-size: 36px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .form-bottom-row {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .form-bottom-row .btn-submit {
        width: 100%;
        height: auto;
        padding: 16px 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header-container {
        padding: 16px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    :root {
        --section-padding: 50px 0;
    }
}

/* ===================================
   Privacy Policy Page
   =================================== */
.privacy-hero {
    position: relative;
    /* Darker overlay for better contrast */
    background: linear-gradient(rgba(0, 10, 30, 0.85), rgba(0, 15, 40, 0.95)),
                url('../images/privacy_hero_bg_v2.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0 80px;
}

.privacy-hero h1, 
.privacy-hero p {
    color: #ffffff !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9) !important;
}

/* ===================================
   Products Page - Premium Styles
   =================================== */

/* Products Hero with Parallax */
.products-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(rgba(0, 21, 52, 0.7), rgba(0, 31, 84, 0.8)),
                url('../images/diamonds background.png');
    background-size: cover;
    background-position: center;
    will-change: transform;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

.hero-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.products-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.products-hero .hero-title {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: var(--font-serif);
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 700;
    margin-bottom: 10px;
}

.products-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

.hero-description {
    font-size: 18px;
    font-weight: 300;
    margin-top: 12px;
    opacity: 0.9;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 600px;
}

/* Diamond Showcase Sections */
.diamond-showcase {
    padding: 100px 0;
    background: var(--white);
}

.diamond-showcase.polished-showcase {
    background: var(--off-white);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-grid.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.showcase-content {
    max-width: 600px;
}

.showcase-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--accent-lime), #88bb00);
    color: var(--navy-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.showcase-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.showcase-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-lime), #88bb00);
    color: var(--navy-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Gallery Grid */
.showcase-gallery {
    position: relative;
}

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

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* Manufacturing Process Section */
.manufacturing-process {
    padding: 100px 0;
    background: var(--navy-dark);
    color: var(--white);
}

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

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 16px;
}

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

.process-step {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-lime), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(155, 212, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.step-number {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-lime);
    margin-bottom: 16px;
    opacity: 0.8;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.step-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Enhanced Specifications Section */
.ethics .certifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.ethics .cert-badge {
    background: linear-gradient(135deg, rgba(155, 212, 0, 0.15), rgba(155, 212, 0, 0.05));
    border: 2px solid rgba(155, 212, 0, 0.3);
    padding: 24px;
    transition: all 0.3s ease;
}

.ethics .cert-badge:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(155, 212, 0, 0.25), rgba(155, 212, 0, 0.15));
    border-color: var(--accent-lime);
    box-shadow: 0 15px 40px rgba(155, 212, 0, 0.2);
}

/* Responsive Design for Products Page */
@media (max-width: 1024px) {
    .showcase-grid,
    .showcase-grid.reverse {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        gap: 16px;
    }
    
    .gallery-grid img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .products-hero {
        height: 400px;
    }
    
    .diamond-showcase {
        padding: 60px 0;
    }
    
    .showcase-content {
        max-width: 100%;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .process-step {
        padding: 24px;
    }
    
    .step-number {
        font-size: 28px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .manufacturing-process {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .products-hero {
        height: 350px;
    }
    
    .diamond-showcase {
        padding: 50px 0;
    }
    
    .showcase-badge {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid img {
        height: 250px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-features {
        gap: 20px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* ===================================
   About Page
   =================================== */
.about-hero {
    padding: 100px 0 80px;
    background: var(--off-white);
}

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

.about-hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story {
    padding: var(--section-padding);
    background: var(--white);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.team {
    padding: var(--section-padding);
    background: var(--navy-dark);
    color: var(--white);
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-lime), #89c100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
}

.team-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-role {
    font-size: 15px;
    color: var(--accent-lime);
    margin-bottom: 16px;
}

.team-bio {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

/* About Page Refactored Inline Styles */
.about-hero-video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.manage-subtitle {
    color: var(--text-light);
    margin-top: 16px;
    font-size: 17px;
}

.team-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

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


/* Utility / Specific Overrides */
.intro-content.centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro.bg-alt {
    background: var(--off-white);
}


/* ===================================
   Layout Fixes (Hero & About)
   =================================== */
@media (min-width: 1025px) {
    /* Hero Section - Larger Video */
    .hero-modern-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
    }
    
    .hero-left {
        flex: 1;
    }
    
    .hero-right {
        flex: 1.4; /* Increased width for video */
    }
    
    .hero-video-container {
        border-radius: 24px;
        box-shadow: 0 30px 80px rgba(0,0,0,0.4);
        overflow: hidden;
        position: relative;
    }

    /* About Section - Swap Layout & Resize */
    .intro .container {
        max-width: 1600px; /* CHANGED: Be significantly wider than standard container */
        padding: 0 40px;
    }

    .intro-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Equal width columns works best for sticky */
        gap: 100px;
        align-items: start;
    }
    
    /* Swap Order: Media First, Content Second */
    .intro-media {
        grid-column: 1;
        grid-row: 1;
        position: sticky; /* CHANGED: Sticky positioning */
        top: 120px;       /* CHANGED: Offset from top */
    }
    
    .intro-content {
        grid-column: 2;
        grid-row: 1;
        padding-right: 20px;
    }
    
    /* Increase Video Size and Style */
    /* Increase Video Size and Style */
    .intro-video {
        width: 100%;
        height: 85vh; /* CHANGED: Much taller to match content */
        max-height: 800px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }
}

/* ===================================
   Values Section
   =================================== */
.values-section {
    padding: var(--section-padding);
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(5, 1fr); /* Force 5 in one line on large screens */
    }
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: rgba(155, 212, 0, 0.3);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-lime), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(155, 212, 0, 0.1);
    color: var(--navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--accent-lime);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}


/* ===================================
   Responsive Mobile Menu
   =================================== */
@media (max-width: 991px) {
    .header-container {
        padding: 15px 24px;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        z-index: 1001;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%; 
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        visibility: hidden;
        opacity: 0;
    }
    
    .nav.active {
        right: 0;
        visibility: visible;
        opacity: 1;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .nav-link {
        font-size: 28px;
        font-family: var(--font-serif);
        font-weight: 600;
    }

    /* Mobile Menu Animation */
    .mobile-menu-btn span {
        transform-origin: left center;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg);
        width: 28px; /* Adjustment for diagonal length */
    }

    .mobile-menu-btn.active span:nth-child(2) {
        width: 0%;
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg);
        width: 28px;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

/* Ensure active class overrides specifically for navigation */
.header .nav-link.active {
    color: var(--accent-lime) !important;
}

.header .nav-link.active::after {
    background: var(--accent-lime) !important;
    width: 100%;
}


/* ===================================
   reCAPTCHA Responsive Fix
   =================================== */
@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.8);
        -webkit-transform: scale(0.8);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}
