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

:root {
    --bg-color: #ffffff;
    --card-bg: #f5f5f7;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --accent-color: #0066cc; /* Inspire Blue */
    --nav-height: 80px;
    --glass-bg: rgba(0, 0, 0, 0.4);
    --transition-standard: all 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
    font-weight: 800;
}

h1 { font-size: clamp(48px, 8vw, 120px); }
h2 { font-size: clamp(32px, 5vw, 64px); }
h3 { font-size: clamp(24px, 3vw, 42px); }

p {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Dark Section Overrides */
.hero-slideshow h1, 
.hero-slideshow p, 
.hero-title,
.hero-subtitle,
.cta-section h2, 
.cta-section p, 
.cta-card h2,
.cta-card p,
.contact-hero h1,
.contact-hero p,
.advanced-info h3,
.advanced-info p,
.main-footer h2, 
.main-footer h3, 
.main-footer h4, 
.main-footer p, 
.main-footer a,
.dark-card h2,
.dark-card p {
    color: #fff !important;
}

.main-footer p, .main-footer a {
    color: rgba(255,255,255,0.6) !important;
}

.main-footer a:hover {
    color: #fff !important;
}

/* Footer Wordmark Refinement */
.footer-wordmark {
    width: 100%;
    font-family: 'Outfit', sans-serif;
    font-size: 25.5vw;
    font-weight: 900;
    line-height: 1.1; /* More relaxed to prevent collapse */
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.06);
    pointer-events: none;
    margin: 40px 0;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
}


.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-color);
    display: inline-block;
    margin-bottom: 20px;
    padding: 6px 16px;
    background: rgba(0, 102, 204, 0.05);
    border-radius: 50px;
}

.text-accent {
    color: var(--accent-color) !important;
}

/* Navigation */
nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1200px;
    height: var(--nav-height);
    background: rgba(10, 10, 15, 0.15);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px; /* Pill shape */
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

nav.scrolled {
    top: 16px;
    width: 85%;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}

.nav-container {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo a {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 28px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff !important;
    text-decoration: none;
}

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

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #fff;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff !important;
}

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

/* Hamburger Menu (Swastika-Inspired) */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    z-index: 1100;
    padding: 10px;
    transition: all 0.3s ease;
}

.hamburger-menu span {
    display: block;
    width: 32px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
}

.hamburger-menu:hover span:first-child {
    transform: translateX(-5px);
}

.hamburger-menu:hover span:last-child {
    transform: translateX(5px);
}

/* Global Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.2, 0, 0, 1);
    cursor: pointer;
    border: none;
}

.btn-pill-blue {
    background: var(--accent-color);
    color: #fff !important;
}

.btn-pill-blue:hover {
    background: #004a99;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 102, 204, 0.2);
}

.btn-pill-white {
    background: #fff;
    color: var(--text-primary) !important;
}

.btn-pill-white:hover {
    background: #f5f5f7;
    transform: translateY(-2px);
}


/* Side Drawer Styles */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}
/* Side Drawer Styles (Swastika-Inspired) */
.side-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: #111;
    z-index: 2000;
    transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}

.side-drawer.open {
    transform: translateX(-450px);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.drawer-logo {
    font-size: 20px;
}

.drawer-logo-large {
    font-size: 28px;
    margin-bottom: 20px;
}

.close-drawer {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-drawer:hover {
    transform: rotate(90deg);
}

.drawer-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 60px; /* Massive, airy gaps between sections like Swastika */
}

.drawer-intro p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8; 
    color: rgba(255,255,255,0.7);
}

.drawer-section {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Larger gap between eyebrow and content */
}

.drawer-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}

.drawer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0; /* Remove gap, use precise margin/padding for borders */
}

.drawer-contact-list li {
    display: flex;
    gap: 20px;
    align-items: center;
    color: #fff;
    font-weight: 600; /* Bolder contact details */
    font-size: 15px; /* Slightly larger text */
    line-height: 1.6;
    padding-bottom: 25px; /* Space above the line */
    margin-bottom: 25px; /* Space below the line */
    border-bottom: 1px solid rgba(0,0,0,0.08); /* Slightly darker line */
}

.drawer-contact-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.drawer-contact-list a {
    color: inherit; /* Inherit the pure dark #111 color */
    text-decoration: none; /* Remove default underline */
    transition: opacity 0.2s ease;
}

.drawer-contact-list a:hover {
    opacity: 0.6; /* Subtle fade on hover to indicate clickability */
}

.drawer-contact-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}

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

.social-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-circle:hover {
    transform: translateY(-3px);
}

body.drawer-open {
    overflow: hidden;
}

/* Hero Slideshow */
.hero-slideshow {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    text-align: left;
    padding: 0 0 75px 80px; /* Adjusted to balance with scroll indicator */
}

/* Add a subtle dark gradient at the bottom to keep text readable without darkening the whole image */
.slide::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1); /* Full brightness to see the building clearly */
}

.slide-content {
    position: relative;
    z-index: 10;
    color: #fff;
    max-width: 1000px;
    padding: 0;
    transform: translateY(40px);
    transition: transform 1.2s ease-out;
}

.slide.active .slide-content {
    transform: translateY(0);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.red-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ff0a0a; /* Bright, intense red */
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 8px 2px rgba(255, 10, 10, 0.6); /* Blurry glow effect */
    animation: heartbeat 1.5s infinite ease-in-out;
}

@keyframes heartbeat {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 8px 2px rgba(255, 10, 10, 0.6);
    }
    50% {
        transform: scale(1.1); /* Reduced from 1.3 for a more subtle, premium beat */
        box-shadow: 0 0 16px 4px rgba(255, 10, 10, 0.9); /* Glow still expands */
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 8px 2px rgba(255, 10, 10, 0.6);
    }
}

.hero-title {
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    text-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.text-accent {
    color: #fff;
    opacity: 0.9;
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 400;
    color: #ffffff; /* Solid white */
    opacity: 1; /* Full opacity */
    max-width: 550px;
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.btn-pill-white {
    display: inline-block;
    padding: 18px 42px;
    border-radius: 100px; /* Restored and refined pill shape */
    background: #fff;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.btn-pill-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 100;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* About Section */
.about {
    padding: 100px 22px;
    background: var(--bg-color);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.massive-title {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

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

.bento-item {
    background: #fff;
    border: 1px solid #f0f0f5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border-radius: 40px; /* Standardized rounded corners */
    overflow: hidden;
    position: relative;
    padding: 40px;
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align to bottom */
    align-items: flex-start;    /* Align to left */
    text-align: left;
}

.bento-item:hover {
    transform: scale(1.01);
}

.bento-item.main-visual {
    grid-column: span 3;
    grid-row: span 1;
    padding: 0;
    border-radius: 80px 40px 40px 40px; /* Signature large curve + standardized corners */
}

.bento-item.main-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.bento-item.has-image {
    padding: 0;
}

.bento-item.has-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-item.has-image:hover img {
    transform: scale(1.05); /* Smooth image zoom effect on hover */
}

.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 2;
}

.bento-overlay h3, .bento-overlay p, .bento-overlay .eyebrow-white {
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.bento-overlay h3 { font-size: 24px; margin-bottom: 10px; } /* Slightly smaller for detail cards */
.bento-overlay p { 
    color: #ffffff; /* Solid white */
    opacity: 1; /* Full opacity */
    font-size: 14px; 
    line-height: 1.5; 
    margin: 0; 
}
.main-visual .bento-overlay h3 { font-size: 32px; } /* Keep main visual large */
.main-visual .bento-overlay p { font-size: 16px; }

.bento-item.experience {
    grid-column: span 1;
    grid-row: span 1;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent-color);
    background: rgba(0, 102, 204, 0.05);
    padding: 8px 24px;
    border-radius: 100px;
    border: 1px solid rgba(0, 102, 204, 0.1);
    margin-bottom: 24px;
    transition: var(--transition-standard);
}

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

.section-title h2 {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.05em;
    line-height: 1.05;
    margin: 0 auto;
    position: relative;
    max-width: 900px;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 32px auto 0;
    border-radius: 10px;
    opacity: 0.6;
}

.eyebrow-small {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    margin-bottom: 15px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.eyebrow-white {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 15px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-item.experience .years {
    font-size: 64px;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.bento-item.experience .label {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 10px;
}

.bento-item.experience p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-top: 15px;
    max-width: 180px;
}

.bento-item.detail-1 {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-item.detail-2, .bento-item.detail-3 {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.bento-item p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .bento-item.main-visual, .bento-item.detail-1 {
        grid-column: span 2;
    }
    .massive-title { font-size: 48px; }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-item.main-visual, .bento-item.detail-1, .bento-item.experience, .bento-item.detail-2, .bento-item.detail-3 {
        grid-column: span 1;
    }
}

/* Products Section */
.products {
    padding: 100px 0;
    background: #f5f5f7; /* Sophisticated off-white for better card contrast */
}



/* --- Original Product Grid (Homepage) --- */
.product-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
    margin-bottom: 50px;
}

.product-actions {
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
}

.btn-pill-glass {
    display: inline-block;
    padding: 18px 42px;
    border-radius: 100px; /* Restored and refined pill shape */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.btn-pill-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.product-card {
    position: relative;
    background: var(--bg-color);
    border-radius: 40px; /* Matching bento grid radius */
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.2, 0, 0, 1);
    cursor: pointer;
    overflow: hidden;
    height: 400px;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.product-card.wide {
    grid-column: span 2;
    height: 500px;
}

.product-card:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}

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

.product-info {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px; z-index: 2; text-align: center; color: #fff;
}

.product-info h3 { font-size: 28px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.product-info p { color: #ffffff; font-size: 16px; margin: 0; opacity: 1; }

@media (max-width: 900px) {
    .product-grid { grid-template-columns: 1fr; }
    .product-card.wide { grid-column: span 1; }
}

/* --- Advanced Grid (Products Page) --- */
.advanced-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 350px;
    gap: 30px;
    padding: 0 30px;
    margin-bottom: 80px;
}

.advanced-card {
    position: relative;
    border-radius: 30px;
    border: 1px solid rgba(78, 168, 222, 0.15); /* Slight sweet blue glow border */
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
}

.advanced-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.advanced-card:hover {
    transform: scale(1.02);
    border-color: rgba(78, 168, 222, 0.6); /* Sweet blue hover border */
}

.advanced-info {
    position: relative;
    z-index: 2;
    padding: 40px;
    text-align: left;
    color: #fff;
}



.advanced-info h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
}

.advanced-info p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 25px;
}

.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.pill-tag {
    font-size: 10px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 30px;
    background: rgba(255,255,255,0.1);
    color: #ccc;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.contact-link {
    font-size: 12px;
    font-weight: 700;
    color: #4ea8de; /* Sweet soft blue text */
    text-decoration: none;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

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

/* Specific Grid Placements */
.military-card { grid-column: span 2; grid-row: span 1; }
.dcut-card { grid-column: span 1; grid-row: span 2; }
.box-card, .leno-card { grid-column: span 1; grid-row: span 1; }
.sugar-card { grid-column: span 3; grid-row: span 1; }

@media (max-width: 1024px) {
    .advanced-grid { grid-template-columns: repeat(2, 1fr); }
    .sugar-card, .military-card { grid-column: span 2; }
    .dcut-card { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 768px) {
    .advanced-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .advanced-card { grid-column: span 1 !important; grid-row: span 1 !important; min-height: 400px; }
}

/* Clean Journal Section (Molydos Style) */
.journal {
    padding: 140px 30px;
    background: var(--bg-color); /* Restored to pure white */
}

.section-title-row {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.eyebrow-accent {
    display: block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.section-title-left h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 50px;
    border: 1px solid #e2e2e7;
    background: #fff;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
}

.btn-view-all:hover {
    border-color: var(--accent-color);
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

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

.journal-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.2, 0, 0, 1);
    cursor: pointer;
}

.journal-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.journal-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1.4/1;
    overflow: hidden;
}

.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    padding: 6px 14px;
    background: #fff;
    color: var(--text-primary);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

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

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

.journal-content {
    padding: 30px;
}

.journal-meta-new {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.journal-meta-new span {
    font-size: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.journal-meta-new i {
    font-size: 13px;
    opacity: 0.8;
}

.journal-content h3 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.journal-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    color: var(--accent-color); /* Restored Inspire Blue */
    text-decoration: none;
    transition: gap 0.3s ease;
}

.read-link:hover {
    gap: 12px;
}

/* FAQ Section */
.faq {
    padding: 100px 22px;
    background: var(--bg-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #d2d2d7;
}

.faq-question {
    width: 100%;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    color: var(--text-primary);
}

.plus {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding-bottom: 30px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item.active .plus {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* CTA Card */
.cta-section {
    padding: 100px 22px;
}

.cta-card {
    max-width: 1024px;
    margin: 0 auto;
    background: #0d0d0d;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
    border-radius: 40px; /* Standardized card radius */
    padding: 80px 40px;
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 18px 42px;
    border-radius: 100px; /* Standardized to refined pill */
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
}

.btn-white {
    background: #fff;
    color: var(--text-primary);
}

.btn:hover {
    opacity: 0.9;
}

/* ===== FOOTER ===== */
.main-footer {
    background: #0a0a0a;
    color: rgba(255,255,255,0.6);
    padding: 80px 0 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.footer-container {
    width: 100%;
    padding: 0 6vw;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 60px;
    padding-bottom: 60px;
}

/* Brand Column */
.footer-logo {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.03em;
    display: block;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255,255,255,0.5);
    max-width: 280px;
    margin-bottom: 32px;
}

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

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
    transform: translateY(-2px);
}

/* Nav Columns */
.footer-col h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 26px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.25s ease;
    line-height: 1.4;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* Contact Column */
.contact-col address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.contact-col address p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.6;
}

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

.contact-methods a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 15.5px;
    line-height: 1.6;
    transition: color 0.25s;
}

.contact-methods a:hover {
    color: #fff;
}

/* Footer Wordmark — direct child of footer for true 100vw span */
.footer-wordmark {
    width: 100%;
    line-height: 0.75; /* Tighter for architectural look */
    pointer-events: none;
    margin: 60px 0;
    overflow: hidden;
}

.footer-wordmark span {
    display: block;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    font-size: 25.5vw; /* Precisely scaled for 'INSPIRE' to hit edges */
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.06);
    white-space: nowrap;
    user-select: none;
    width: 100%;
    text-align: center;
    transform: scaleX(1.05); /* Subtle stretch for edge-to-edge perfection */
}

.footer-container {
    position: relative;
    z-index: 2;
}

/* Footer Bottom */
.footer-bottom {
    padding: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-seo p {
    font-size: 11.5px;
    color: rgba(255,255,255,0.25);
    line-height: 1.7;
}

.footer-seo strong {
    color: rgba(255,255,255,0.4);
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-legal p {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.25s;
}

.legal-links a:hover {
    color: rgba(255,255,255,0.7);
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-legal { flex-direction: column; align-items: flex-start; }
}

/* Animations */
.js-enabled .reveal {
    opacity: 0;
    transform: scale(0.98) translateY(20px);
    transition: opacity 1.2s cubic-bezier(0.2, 0, 0, 1), transform 1.2s cubic-bezier(0.2, 0, 0, 1);
    will-change: transform, opacity;
}

.js-enabled .reveal.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

@media (max-width: 768px) {
    .slide-content h1 { font-size: 42px; }
    .about-content h2 { font-size: 40px; }
    .journal-grid { grid-template-columns: 1fr; }
    .reach-container { grid-template-columns: 1fr; gap: 40px; }
}

/* About Page Specific Styles */
.about-hero {
    padding: 200px 30px 100px;
    background: #fff;
    text-align: center;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero-lead {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 40px auto 0;
    line-height: 1.6;
}

.text-accent-blue {
    color: var(--accent-color);
}

/* Vision Split Section */
.vision-split {
    display: flex;
    align-items: center;
    gap: 100px;
    padding: 120px 6vw;
    background: #fff;
}

.vision-visual {
    flex: 1;
    border-radius: 40px;
    overflow: hidden;
    height: 600px;
}

.vision-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-content {
    flex: 1;
}

.vision-content h2 {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0 30px;
    letter-spacing: -0.03em;
}

.vision-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.vision-stats {
    display: flex;
    gap: 60px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* Philosophy Section */
.philosophy {
    padding: 100px 0;
    background: #f5f5f7;
}

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

.bento-content-pad {
    padding: 60px;
}

/* Sustainability Card */
.sustainability {
    padding: 120px 30px;
    background: #fff;
}

.sustain-card {
    max-width: 1340px;
    margin: 0 auto;
    background: #1d1d1f;
    border-radius: 40px;
    padding: 100px;
    display: flex;
    align-items: center;
    gap: 80px;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.sustain-content {
    flex: 1.5;
    position: relative;
    z-index: 2;
}

.sustain-content h2 {
    font-size: clamp(32px, 4vw, 56px);
    color: #fff;
    line-height: 1.1;
    margin: 20px 0 30px;
}

.sustain-features {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.sustain-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255,255,255,0.05);
    padding: 12px 20px;
    border-radius: 100px;
}

.sustain-features i {
    color: #4cd964;
}

.sustain-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1024px) {
    .vision-split {
        flex-direction: column;
        gap: 60px;
        padding: 80px 30px;
    }
    .vision-visual {
        width: 100%;
        height: 400px;
    }
    .sustain-card {
        flex-direction: column;
        padding: 60px 40px;
    }
}

/* Premium SVG Sticker Styles */
.sticker-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 400px;
    animation: sticker-breathe 6s ease-in-out infinite;
}

.leaf-sticker {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(76, 217, 100, 0.4));
}

.sticker-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(76, 217, 100, 0.2) 0%, transparent 70%);
    z-index: 1;
    border-radius: 50%;
    filter: blur(40px);
}

@keyframes sticker-breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@media (max-width: 768px) {
    .sticker-container {
        width: 300px;
        height: 300px;
    }
}

/* Leadership Section Styles */
.leadership {
    padding: 120px 30px;
    background: #fcfcfd;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header-centered h2 {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    margin: 15px 0 25px;
    letter-spacing: -0.03em;
}

.section-header-centered p {
    font-size: 18px;
    color: var(--text-secondary);
}

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

.leader-card {
    background: transparent;
}

.leader-visual {
    width: 100%;
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 25px;
    background: #eee;
}

.leader-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.8s cubic-bezier(0.2, 0, 0, 1), transform 0.8s cubic-bezier(0.2, 0, 0, 1);
}

.leader-card:hover .leader-visual img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.leader-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-color);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.leader-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.leader-info p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    .leader-visual {
        height: 400px;
    }
}


/* High-Visibility Architectural Sticker Styles */
.architect-sticker {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 450px;
    height: 450px;
}

.floating-leaf {
    position: relative;
    z-index: 2;
    animation: floating-leaf 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

@keyframes floating-leaf {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.sticker-glow-vibrant {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(76, 217, 100, 0.3) 0%, transparent 70%);
    z-index: 1;
    border-radius: 50%;
    filter: blur(60px);
}

@media (max-width: 768px) {
    .architect-sticker {
        width: 300px;
        height: 300px;
    }
    .floating-leaf {
        width: 200px;
        height: 200px;
    }
}

/* Apple Bento Grid V2 Styles */
.bento-grid-v2 {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.bento-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    min-height: 400px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.6s cubic-bezier(0.2, 0, 0, 1);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.bento-card.dark-card {
    background: #0d0d0d;
    color: #fff;
    grid-column: span 1;
}

.bento-card.blue-card {
    background: linear-gradient(145deg, var(--accent-color) 0%, #004a99 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-card.light-card {
    grid-column: span 2;
    background: #f5f5f7;
    min-height: 480px;
    color: #1d1d1f;
}

.bento-card.light-card .card-content h2 {
    color: #1d1d1f !important;
}

.bento-card.light-card .card-content p {
    color: #424245 !important;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: transform 1.2s cubic-bezier(0.2, 0, 0, 1);
}

.bento-card:hover .card-bg {
    transform: scale(1.05);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 60px;
}

.card-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 15px 0 25px;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #fff;
}

.card-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

.card-content.centered {
    text-align: center;
    width: 100%;
}

.massive-number {
    display: block;
    font-size: 100px;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin-bottom: 10px;
}

.card-content-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 100px;
    height: 100%;
    width: 100%;
}

.text-side {
    flex: 1;
}

.visual-side {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.visual-side i {
    font-size: 200px;
    color: var(--accent-color);
    opacity: 0.1;
    transform: rotate(-15deg);
}

@media (max-width: 1024px) {
    .bento-grid-v2 {
        grid-template-columns: 1fr;
    }
    .bento-card.dark-card, .bento-card.light-card {
        grid-column: span 1;
    }
    .card-content-split {
        flex-direction: column;
        padding: 60px 40px;
        text-align: center;
    }
    .visual-side {
        margin-top: 40px;
        justify-content: center;
    }
}

/* Spinning Globe Animation */
.spinning-globe-wrapper {
    width: 280px;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.spinning-globe {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 102, 204, 0.1));
}

.continents {
    animation: globe-rotate 20s linear infinite;
}

@keyframes globe-rotate {
    from { transform: translateX(0); }
    to { transform: translateX(-100px); }
}

@media (max-width: 1024px) {
    .spinning-globe-wrapper {
        width: 200px;
        height: 200px;
    }
}


/* Contact Page Specific Styles */
.contact-hero {
    padding: 160px 0 80px;
    background: #0d0d0d;
    color: #fff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    padding-bottom: 120px;
}

.contact-card-v2 {
    background: #fff;
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
}

.card-header {
    margin-bottom: 50px;
}

.card-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.card-header p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 500px;
}

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

.premium-form .form-group {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.premium-form label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.premium-form input, 
.premium-form select, 
.premium-form textarea {
    padding: 18px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.4s ease;
    outline: none;
}

.premium-form input:focus, 
.premium-form select:focus, 
.premium-form textarea:focus {
    border-color: var(--accent-color);
}

.premium-form select {
    cursor: pointer;
}

.w-full { width: 100%; }

.info-block {
    margin-bottom: 60px;
}

.info-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent-color);
    letter-spacing: 0.15em;
    margin-bottom: 15px;
}

.info-block h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}

.info-block p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.info-link {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: var(--accent-color);
}

.flag-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.flag-grid img {
    height: 18px;
    border-radius: 2px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.flag-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Map Section */
.global-map-section {
    padding-bottom: 120px;
}

.map-card {
    border-radius: 50px;
    overflow: hidden;
    height: 600px;
    position: relative;
    background: #0d0d0d;
}

.map-visual {
    height: 100%;
    width: 100%;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.map-overlay {
    position: absolute;
    bottom: 80px;
    left: 80px;
    z-index: 2;
    max-width: 500px;
}

.map-overlay h3 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.map-overlay p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .map-overlay {
        left: 40px;
        bottom: 40px;
    }
    .map-overlay h3 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .premium-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-card-v2 {
        padding: 40px 30px;
    }
    .direct-connect-grid {
        grid-template-columns: 1fr;
        margin-top: -40px;
        gap: 20px;
    }
    .office-bento {
        grid-template-columns: 1fr;
    }
    .office-card.connect-block, .office-card.global-block {
        grid-column: span 1;
    }
}

/* Form Success State */
.form-success-message {
    text-align: center;
    padding: 60px 20px;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0, 0, 1);
}

.success-icon {
    font-size: 64px;
    color: #25d366;
    margin-bottom: 25px;
}

.form-success-message h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.form-success-message p {
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto 35px;
    font-size: 16px;
    line-height: 1.6;
}

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

.direct-connect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: -60px; /* Overlap for premium feel */
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.connect-card {
    display: flex;
    align-items: center;
    padding: 40px 50px;
    background: #fff;
    border-radius: 40px;
    text-decoration: none;
    color: var(--text-primary);
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    border: 1px solid #f0f0f0;
    transition: all 0.6s cubic-bezier(0.2, 0, 0, 1);
    position: relative;
    overflow: hidden;
}

.connect-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

.connect-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-right: 30px;
    background: #f5f5f7;
    color: var(--text-primary);
    transition: all 0.5s ease;
}

.connect-card.whatsapp:hover .connect-icon {
    background: #25d366;
    color: #fff;
}

.connect-card.phone:hover .connect-icon {
    background: var(--accent-color);
    color: #fff;
}

.connect-info {
    flex: 1;
}

.connect-info .label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.connect-info h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 5px;
}

.connect-info p {
    font-size: 15px;
    color: var(--text-secondary);
}

.arrow-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.4s ease;
}

.connect-card:hover .arrow-circle {
    background: var(--text-primary);
    color: #fff;
    border-color: var(--text-primary);
    transform: rotate(-45deg);
}

/* Office Bento */
.office-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.office-card {
    background: #f9f9fb;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.office-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.office-card:first-child,
.office-card.connect-block, 
.office-card.global-block {
    grid-column: span 2;
}

.office-card.connect-block {
    background: #fff;
    border: 1px solid #e0e0e0;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
}

/* Map Card V2 */
.map-card-v2 {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: #0d0d0d;
    border-radius: 50px;
    overflow: hidden;
    min-height: 600px;
}

.map-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.map-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #fff;
}

.map-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
}

.map-frame {
    height: 100%;
    width: 100%;
    background: #111;
}

.map-frame iframe {
    filter: grayscale(1) invert(0.9) contrast(1.2);
    opacity: 0.8;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    color: #fff;
    padding: 15px 25px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: all 0.5s cubic-bezier(0.2, 0, 0, 1);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 22px;
}

@media (max-width: 1024px) {
    .direct-connect-grid {
        grid-template-columns: 1fr;
    }
    .map-card-v2 {
        grid-template-columns: 1fr;
    }
    .map-content {
        padding: 60px 40px;
    }
    .map-frame {
        height: 400px;
    }
}

/* ==========================================================================
   FORCE WHITE TEXT & SWASTIKA DRAWER OVERRIDES
   ========================================================================== */

.bento-card .card-content h2 {
    color: #fff !important;
}
.bento-card .card-content p {
    color: rgba(255,255,255,0.9) !important;
}

.side-drawer, 
.side-drawer h2,
.side-drawer p,
.side-drawer span,
.side-drawer a,
.side-drawer i {
    color: #fff !important;
}

.side-drawer a {
    text-decoration: none !important;
}

.drawer-intro p {
    color: rgba(255,255,255,0.7) !important;
}

.drawer-eyebrow {
    color: rgba(255,255,255,0.4) !important;
}

/* Swastika Social Icons Portal */
.drawer-socials {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.drawer-socials a {
    width: 50px !important;
    height: 50px !important;
    background: #fff !important;
    color: #111 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    transition: all 0.4s cubic-bezier(0.2, 0, 0, 1) !important;
}

.drawer-socials a i {
    color: #111 !important;
    transition: all 0.4s ease !important;
}

.drawer-socials a:hover {
    background: var(--accent-color) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2) !important;
}

.drawer-socials a:hover i {
    color: #fff !important;
}

.close-drawer {
    color: #fff !important;
}


/* HOMEPAGE BENTO & OVERLAY FIXES */
.bento-overlay h3,
.bento-item h3,
.bento-overlay p,
.bento-item p {
    color: #fff !important;
}

.bento-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%) !important;
}

.eyebrow-white {
    color: #fff !important;
    opacity: 0.8 !important;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.1em;
}

/* PRODUCT CARD TEXT FIXES */
.product-info h3 {
    color: #fff !important;
}

.product-info p {
    color: rgba(255,255,255,0.7) !important;
}


/* ==========================================================================
   BLOGS (JOURNAL) PAGE STYLES - APPLE EDITORIAL
   ========================================================================== */

.blogs-page {
    background: #fff;
}

.blog-hero {
    padding: 160px 0 80px;
    background: #fbfbfd;
}

.featured-article {
    padding: 40px 0 100px;
}

.featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-primary);
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    transition: all 0.6s cubic-bezier(0.2, 0, 0, 1);
    border: 1px solid #f0f0f2;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.featured-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0, 0, 1);
}

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

.featured-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content .meta {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.featured-content h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.featured-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.read-more {
    font-weight: 700;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

/* Article Grid */
.article-grid-section {
    padding-bottom: 140px;
}

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

.article-card {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.2, 0, 0, 1);
    border: 1px solid #f0f0f2;
    display: flex;
    flex-direction: column;
}

.article-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}

.card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0, 1);
}

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

.article-card .card-content {
    padding: 50px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card .meta {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.article-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--text-primary);
}

.article-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 35px;
}

.article-card .read-more {
    margin-top: auto;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.article-card:hover .read-more {
    gap: 15px;
}

.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    z-index: 2;
}

@media (max-width: 1024px) {
    .featured-card {
        grid-template-columns: 1fr;
    }
    .featured-content {
        padding: 40px;
    }
    .article-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .article-grid {
        grid-template-columns: 1fr;
    }
    .featured-image {
        height: 300px;
    }
    .featured-content h2 {
        font-size: 32px;
    }
}


/* ==========================================================================
   IMMERSIVE SPOTLIGHT - THE NEW BLOG LOOK
   ========================================================================== */

.immersive-spotlight {
    padding: 0 0 140px;
    background: #fff;
}

.spotlight-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.spotlight-main {
    position: relative;
    height: 750px;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

.spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, transparent 60%);
    z-index: 2;
}

.spotlight-glass-card {
    position: relative;
    z-index: 10;
    width: 550px;
    margin-left: 80px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    color: #fff;
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}

.category-pill {
    display: inline-block;
    padding: 10px 20px;
    background: var(--accent-color);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 100px;
    margin-bottom: 30px;
}

.meta-row {
    display: flex;
    gap: 20px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.7;
    margin-bottom: 20px;
}

.spotlight-glass-card h2 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.text-glow {
    color: var(--accent-color);
}

.spotlight-glass-card p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 40px;
}

.btn-spotlight {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    border-radius: 100px;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
}

.btn-spotlight:hover {
    transform: translateX(10px);
    background: var(--accent-color);
    color: #fff;
}

.bg-text-layered {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 180px;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    z-index: 5;
    letter-spacing: 0.1em;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .spotlight-main {
        height: auto;
        min-height: 700px;
        padding: 80px 0;
    }
    .spotlight-glass-card {
        width: calc(100% - 80px);
        margin: 0 40px;
        padding: 40px;
    }
    .spotlight-overlay {
        background: rgba(0,0,0,0.4);
    }
}


/* FOOTER LIST REFINEMENT */
.footer-col ul,
.footer-contact-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

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

.footer-contact-list li a {
    color: rgba(255,255,255,0.6) !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.footer-contact-list li a:hover {
    color: #fff !important;
}


/* ==========================================================================
   BLOG POST CONTENT STYLES
   ========================================================================== */

.blog-post-page {
    background: #fff;
}

.post-header {
    padding: 180px 0 60px;
    background: #fbfbfd;
}

.post-header h1 {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 20px 0 30px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
}

.post-meta .dot {
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
}

.post-hero-image {
    padding-bottom: 80px;
    background: #fbfbfd;
}

.post-hero-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
}

.post-body {
    padding-bottom: 140px;
}

.section-container.small {
    max-width: 800px;
}

.post-body p {
    font-size: 20px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
}

.post-body p.lead {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
}

.post-body h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 60px 0 25px;
    letter-spacing: -0.01em;
}

.post-body ul {
    margin: 30px 0;
    padding-left: 20px;
}

.post-body ul li {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.post-quote {
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
    color: var(--accent-color);
    padding: 60px 0;
    border-top: 1px solid #f0f0f2;
    border-bottom: 1px solid #f0f0f2;
    margin: 60px 0;
    line-height: 1.4;
    text-align: center;
}

.post-navigation {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #f0f0f2;
}

.btn-back {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .post-hero-image img {
        height: 400px;
    }
    .post-body p {
        font-size: 18px;
    }
}


/* ==========================================================================
   JOURNAL CTA SECTION
   ========================================================================== */

.journal-cta {
    background: var(--bg-dark, #0a0a0a);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.journal-cta::before {
    content: 'INSPIRE';
    position: absolute;
    bottom: -60px;
    right: -20px;
    font-size: 220px;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.journal-cta-inner {
    max-width: 780px;
}

.journal-cta .cta-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-color);
    background: rgba(0, 102, 204, 0.12);
    border: 1px solid rgba(0, 102, 204, 0.25);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 30px;
}

.journal-cta h2 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 25px;
}

.journal-cta .text-accent {
    color: var(--accent-color);
}

.journal-cta p {
    font-size: 19px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 600px;
}

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

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 800;
    padding: 18px 36px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    letter-spacing: -0.01em;
}

.btn-primary-cta:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.35);
}

.btn-primary-cta i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-primary-cta:hover i {
    transform: translateX(4px);
}

.btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.btn-secondary-cta:hover {
    color: #fff;
    border-color: #fff;
}

@media (max-width: 768px) {
    .journal-cta {
        padding: 100px 0;
    }
    .cta-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}
