﻿/**
 * Zyncle Innovation CSS Design System
 * Table of Contents:
 * 1. Variables & Root
 * 2. Reset & Base Styles
 * 3. Components (Hdr, Btn, etc)
 * 4. Layout Sections (Hero, Footer)
 * 5. Animations
 * 6. Responsive
 */

/* ==========================================================================
   1. Variables & Root
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&family=Syne:wght@700;800&family=Outfit:wght@500;600;700;800&family=Montserrat:wght@700;800;900&family=Unbounded:wght@700;800;900&display=swap');

:root {
    /* Brand Colors */
    --primary: #ffbb00;
    /* Logo Gold */
    --secondary: #1b3358;
    /* Logo Navy */
    --primary-dark: #e6a800;

    /* Text Colors */
    --text-dark: #1b3358;
    --text-light: #666666;
    --white: #ffffff;

    /* UI Colors */
    --bg-light: #fbfcfe;
    --header-bg: rgba(255, 255, 255, 0.95);

    /* Typography */
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-accent: 'Unbounded', sans-serif;

    /* System */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   2. Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-family: var(--font-accent);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-size: inherit;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ==========================================================================
   3. Components
   ========================================================================== */

/* Buttons */
.btn-chat {
    padding: 10px 25px;
    border: 2px solid var(--primary);
    color: var(--secondary);
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
}

.btn-chat:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-primary {
    padding: 16px 36px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 10px 20px rgba(255, 187, 0, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.btn-outline {
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

/* UI Elements */
.get-in-touch {
    position: fixed;
    right: 0;
    top: 60%;
    transform: rotate(-90deg);
    transform-origin: right bottom;
    background: var(--primary);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 12px 12px 0 0;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
    box-shadow: -5px -5px 15px rgba(0, 0, 0, 0.1);
}

.get-in-touch:hover {
    padding-bottom: 40px;
    background: var(--primary-dark);
}

/* ==========================================================================
   4. Layout Sections
   ========================================================================== */

/* Header & Navbar */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 5%;
    transition: var(--transition);
}

header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 5px 5%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

header.scrolled .logo img {
    height: 55px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a:hover {
    color: var(--primary);
}

.dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Dropdown Menu Styles */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 180px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu li {
    display: block;
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background: rgba(255, 187, 0, 0.1);
    color: var(--primary);
    padding-left: 25px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.mobile-only-btn {
    display: none;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    /* Hidden on desktop */
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.menu-toggle span:last-child {
    width: 15px;
    align-self: flex-end;
}

/* Hamburger Animation to 'X' */
header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    width: 25px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    max-height: 900px;
    /* Limits excessive stretching in mobile desktop mode */
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 5%;
    margin-bottom: 0;
    /* Removed large margin */
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(27, 51, 88, 0.9) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.2) 100%);
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    max-width: 800px;
    color: var(--white);
    z-index: 10;
}

.hero-tagline {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
    animation: fadeInUp 0.8s ease forwards;
}

#typing-text {
    color: var(--primary);
    font-weight: 700;
    margin-left: 5px;
}

.cursor {
    color: var(--primary);
    font-weight: 300;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.hero h1 {
    font-size: clamp(60px, 10vw, 100px);
    line-height: 1.1;
    font-family: var(--font-accent);
    /* Sufficient height for descenders */
    font-weight: 800;
    letter-spacing: -3px;
    /* Improved letter clarity */
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero h1 span {
    display: block;
    padding-bottom: 8px;
    /* Give space for descenders like 'y' */
}

.color-gold {
    color: var(--primary);
    background: linear-gradient(to bottom, #ffdb4d, #ffbb00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.color-navy {
    color: var(--white);
    /* Updated for visibility on dark banner */
    background: linear-gradient(to bottom, #ffffff, #d1d1d1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    max-width: 650px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-btns {
    display: flex;
    gap: 20px;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

/* Stats Section */
.stats-section {
    padding: 60px 5%;
    background: var(--white);
    position: relative;
    z-index: 10;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-item {
    text-align: left;
    padding: 20px 40px;
    position: relative;
}

/* Vertical Dividers */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
    background: rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label-container {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.stat-dot {
    width: 24px;
    height: 24px;
    background: rgba(255, 187, 0, 0.1);
    border-radius: 50%;
    position: absolute;
    left: -8px;
    z-index: -1;
}

.stat-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
}

/* Services Section */
.services-section {
    padding: 60px 5% 80px;
    background: linear-gradient(180deg, #eedbfa 0%, #fbfcfe 100%);
    position: relative;
    overflow: hidden;
}

/* Background Texture wrappers inside services section */
.services-section::before,
.services-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-repeat: no-repeat;
    -webkit-mask-image: linear-gradient(to right, black 15%, transparent 100%);
    mask-image: linear-gradient(to right, black 15%, transparent 100%);
}

.services-section::before {
    left: 0;
    background-image:
        radial-gradient(circle at 0% 40%, rgba(138, 43, 226, 0.4), transparent 60%),
        url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-100,20 Q100,10 600,200' fill='none' stroke='rgba(255,255,255,0.9)' stroke-width='2' /%3E%3Cpath d='M-100,50 Q150,30 600,200' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='1.5' /%3E%3Cpath d='M-100,80 Q200,50 600,200' fill='none' stroke='rgba(255,215,0,0.8)' stroke-width='1.5' /%3E%3Cpath d='M-100,110 Q250,70 600,200' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='1' /%3E%3Cpath d='M-100,140 Q300,90 600,200' fill='none' stroke='rgba(255,215,0,0.5)' stroke-width='0.8' /%3E%3Cpath d='M-100,170 Q350,110 600,200' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='0.6' /%3E%3C/svg%3E");
    background-size: 100% 100%, 100% 100%;
    background-position: left top, left top;
}

.services-section::after {
    right: 0;
    background-image:
        radial-gradient(circle at 0% 40%, rgba(138, 43, 226, 0.4), transparent 60%),
        url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-100,20 Q100,10 600,200' fill='none' stroke='rgba(255,255,255,0.9)' stroke-width='2' /%3E%3Cpath d='M-100,50 Q150,30 600,200' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='1.5' /%3E%3Cpath d='M-100,80 Q200,50 600,200' fill='none' stroke='rgba(255,215,0,0.8)' stroke-width='1.5' /%3E%3Cpath d='M-100,110 Q250,70 600,200' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='1' /%3E%3Cpath d='M-100,140 Q300,90 600,200' fill='none' stroke='rgba(255,215,0,0.5)' stroke-width='0.8' /%3E%3Cpath d='M-100,170 Q350,110 600,200' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='0.6' /%3E%3C/svg%3E");
    background-size: 100% 100%, 100% 100%;
    background-position: left top, left top;
    transform: scaleX(-1);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.sub-title {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
}

.section-title .highlight {
    color: var(--primary);
}

.section-desc {
    color: var(--text-light);
    font-size: 18px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    z-index: -1;
    transform: translateY(100%);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    transform: translateY(0);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover h3,
.service-card:hover p {
    color: var(--white);
}

.service-link {
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.service-card:hover .service-link {
    color: var(--primary);
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Why Choose Us Section - Modern Bento Grid */
.why-choose-section {
    padding: 60px 5% 40px;
    /* Reduced bottom padding */
    background: #fcfcfc;
}

.modern-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(280px, auto));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.why-card {
    background: var(--white);
    border-radius: 32px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.why-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.why-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(255, 187, 0, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 24px;
}

.why-card h3 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 16px;
    font-weight: 800;
}

.why-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Featured Card (Left Large) */
.main-card {
    grid-row: span 2;
    background: var(--secondary);
    color: var(--white);
}

.main-card h3,
.main-card .why-label {
    color: var(--white);
}

.main-card .why-label {
    background: rgba(255, 255, 255, 0.1);
}

.main-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.why-card-icon {
    margin-top: auto;
    font-size: 80px;
    opacity: 0.2;
    text-align: right;
    color: var(--primary);
}

/* Span Row Card (Bottom Right) */
.span-grid {
    grid-column: span 2;
    background: linear-gradient(135deg, #1b3358, #2a4b80);
    color: var(--white);
}

.span-grid h3,
.span-grid p {
    color: var(--white);
}

.flex-row {
    flex-direction: row !important;
    align-items: center;
    gap: 40px;
}

.why-card-txt {
    flex: 1;
}

.why-card-visual {
    width: 120px;
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary);
}

.pulse-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.floating-icon {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 100px;
    opacity: 0.05;
    color: var(--secondary);
}

.text-gold {
    border: 2px solid var(--primary);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .modern-why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .span-grid {
        grid-column: span 2;
    }

    .flex-row {
        flex-direction: column !important;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .modern-why-grid {
        grid-template-columns: 1fr;
    }

    .main-card,
    .span-grid {
        grid-row: auto;
        grid-column: auto;
    }
}

/* Solutions Section - Corporate Showcase */
.solutions-section {
    padding: 60px 5% 40px;
    /* Reduced bottom padding */
    background: var(--white);
}

.corporate-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.solution-card {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.solution-thumb {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.solution-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-card:hover .solution-thumb img {
    transform: scale(1.05);
}

.solution-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--secondary);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sol-tag {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.solution-body h3 {
    font-size: 22px;
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 15px;
}

.solution-body p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.sol-live-link {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--secondary);
    font-size: 14px;
    transition: var(--transition);
}

.sol-live-link i {
    font-size: 12px;
    transition: var(--transition);
}

.sol-live-link:hover {
    color: var(--primary);
}

.sol-live-link:hover i {
    transform: translate(3px, -3px);
}

/* Marquee Section */
.marquee-section {
    padding: 20px 0 10px;
    /* Reduced bottom padding to fix gap */
    background: var(--white);
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 40px;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    gap: 40px;
    min-width: 100%;
    animation: scroll-marquee 40s linear infinite;
}

.marquee-text {
    font-family: var(--font-heading);
    /* Tech-focused modern branding */
    font-size: clamp(60px, 8vw, 150px);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(27, 51, 88, 0.7);
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0px;
    /* Space Grotesk looks better with tighter spacing */
    padding: 0 60px;
    transition: all 0.4s ease-in-out;
    cursor: default;
}

.marquee-text:hover {
    color: transparent;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-stroke: 1.5px transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 10px rgba(255, 187, 0, 0.3));
}

@keyframes scroll-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 40px));
    }
}

/* Reviews Section - Minimalist & Classical Movable */
.reviews-section {
    padding: 40px 0 30px;
    /* Reduced top and bottom padding */
    background: var(--white);
    overflow: hidden;
}

.reviews-marquee-classical {
    display: flex;
    overflow: hidden;
    user-select: none;
    padding: 20px 0;
}

.reviews-track-classical {
    display: flex;
    gap: 60px;
    animation: scroll-classical 45s linear infinite;
}

.reviews-track-classical:hover {
    animation-play-state: paused;
}

.review-item-minimal {
    flex-shrink: 0;
    width: 420px;
    padding: 40px;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    /* Very subtle classical border */
    border-radius: 4px;
    /* Classical small radius */
    transition: var(--transition);
}

.review-item-minimal:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.review-stars {
    color: var(--primary);
    font-size: 13px;
    margin-bottom: 25px;
    display: flex;
    gap: 5px;
}

.review-content {
    font-size: 18px;
    color: var(--secondary);
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 35px;
    letter-spacing: -0.2px;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f4f4f4;
    padding-top: 25px;
}

.review-meta img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition);
}

.review-item-minimal:hover .review-meta img {
    filter: grayscale(0%);
}

.meta-text strong {
    display: block;
    font-size: 15px;
    color: var(--secondary);
    font-weight: 700;
}

.meta-text span {
    font-size: 13px;
    color: var(--text-light);
}

@keyframes scroll-classical {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% / 1.333 - 45px));
    }
}

@media (max-width: 768px) {
    .review-item-minimal {
        width: 320px;
        padding: 30px;
    }
}

/* Contact CTA Section (Home Page) */
/* ==========================================================================
   Get In Touch Section (Redesigned Home Page)
   ========================================================================== */
.get-in-touch-section {
    padding: 60px 5%;
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

/* Elegant Mesh Glow Effects */
.get-in-touch-section::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 187, 0, 0.07) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    animation: mesh-float-1 15s infinite alternate ease-in-out;
}

.get-in-touch-section::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(27, 51, 88, 0.04) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    animation: mesh-float-2 12s infinite alternate-reverse ease-in-out;
}

@keyframes mesh-float-1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(50px, -30px) rotate(10deg);
    }
}

@keyframes mesh-float-2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-40px, 40px) scale(1.15);
    }
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* Left Side - Information */
.section-header-left {
    margin-bottom: 25px;
}

.section-header-left .sub-title {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.section-header-left .section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 42px);
    line-height: 1.1;
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.section-header-left .section-desc {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-item-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 15px;
    transition: var(--transition);
}

.contact-item-box:hover {
    background: rgba(255, 187, 0, 0.05);
}

.icon-sphere {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(27, 51, 88, 0.15);
    transition: var(--transition);
}

.contact-item-box:hover .icon-sphere {
    transform: rotateY(360deg) scale(1.1);
    background: var(--primary);
    color: var(--secondary);
}

.item-text label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 5px;
}

.item-text p {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
}

.contact-socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-socials span {
    font-weight: 700;
    color: var(--secondary);
    font-size: 15px;
}

.social-icons-row {
    display: flex;
    gap: 15px;
}

.social-icons-row a {
    width: 45px;
    height: 45px;
    background: #f0f2f5;
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-icons-row a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Brand Specific Hover Effects */
.social-icons-row a[aria-label="Instagram"]:hover,
.footer-social-links a[aria-label="Instagram"]:hover,
.social-links a[aria-label="Instagram"]:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff !important;
}

.social-icons-row a[aria-label="LinkedIn"]:hover,
.footer-social-links a[aria-label="LinkedIn"]:hover,
.social-links a[aria-label="LinkedIn"]:hover {
    background: #0077b5 !important;
    color: #fff !important;
}

.social-icons-row a[aria-label="Facebook"]:hover,
.footer-social-links a[aria-label="Facebook"]:hover,
.social-links a[aria-label="Facebook"]:hover {
    background: #1877f2 !important;
    color: #fff !important;
}

.social-icons-row a[aria-label="X (Twitter)"]:hover,
.footer-social-links a[aria-label="X (Twitter)"]:hover,
.social-links a[aria-label="X (Twitter)"]:hover {
    background: #000 !important;
    color: #fff !important;
}

.social-icons-row a[aria-label="YouTube"]:hover,
.footer-social-links a[aria-label="YouTube"]:hover,
.social-links a[aria-label="YouTube"]:hover {
    background: #ff0000 !important;
    color: #fff !important;
}

/* Right Side - Premium Card */
.premium-inquiry-card {
    background: rgba(27, 51, 88, 0.98);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(27, 51, 88, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-decoration-blob {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(255, 187, 0, 0.4), transparent);
    z-index: 1;
    filter: blur(50px);
    border-radius: 50%;
}

@keyframes blob-float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-20px, 20px) scale(1.1);
    }
}

.card-content {
    position: relative;
    z-index: 2;
}

.premium-inquiry-card h3 {
    color: var(--white);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.premium-inquiry-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    font-size: 16px;
}

.quick-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-contact-form .form-group input,
.quick-contact-form .form-group textarea {
    width: 100%;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: var(--white);
    font-size: 16px;
    outline: none;
    transition: var(--transition);
}

.quick-contact-form .form-group input:focus,
.quick-contact-form .form-group textarea:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 187, 0, 0.1);
}

.btn-premium-send {
    margin-top: 15px;
    padding: 18px 40px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 15px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
    border: none;
}

.btn-premium-send:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-premium-send .btn-icon {
    font-size: 16px;
}

/* Background Highlight */
.contact-bg-glow {
    position: absolute;
    bottom: -15%;
    left: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 187, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(60px);
}

/* Responsive */
@media (max-width: 1100px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .section-header-left {
        max-width: 800px;
        margin: 0 auto 45px;
    }

    .contact-item-box {
        justify-content: center;
    }

    .contact-socials {
        justify-content: center;
    }

    .premium-inquiry-card {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .get-in-touch-section {
        padding: 60px 5%;
    }

    /* Stack to single column already handled at 1100px;
       this block handles finer mobile-specific tuning */
    .contact-wrapper {
        gap: 45px;
    }

    .section-header-left .section-title {
        font-size: clamp(26px, 7vw, 34px) !important;
    }

    .section-header-left .section-desc {
        font-size: 15px;
        line-height: 1.65;
    }

    /* Contact detail items: smaller icons, stacked labels */
    .contact-details-list {
        gap: 12px;
        margin-bottom: 25px;
    }

    .contact-item-box {
        justify-content: center;
        padding: 10px 8px;
        gap: 12px;
    }

    .icon-sphere {
        width: 44px;
        height: 44px;
        font-size: 20px;
        flex-shrink: 0;
    }

    .item-text label {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .item-text p {
        font-size: 15px;
    }

    /* Social row: stack label above icons */
    .contact-socials {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        justify-content: center;
        text-align: center;
    }

    .contact-socials span {
        font-size: 13px;
    }

    .social-icons-row {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-icons-row a {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    /* Premium Inquiry Card */
    .premium-inquiry-card {
        padding: 35px 22px;
        border-radius: 22px;
    }

    .premium-inquiry-card h3 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .premium-inquiry-card>.card-content>p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .quick-contact-form {
        gap: 15px;
    }

    .quick-contact-form .form-group input,
    .quick-contact-form .form-group textarea {
        padding: 15px 18px;
        font-size: 15px;
        border-radius: 12px;
    }

    .btn-premium-send {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        border-radius: 12px;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .get-in-touch-section {
        padding: 50px 5%;
    }

    .contact-wrapper {
        gap: 35px;
    }

    .section-header-left {
        margin-bottom: 20px;
    }

    .section-header-left .section-title {
        font-size: 26px !important;
        line-height: 1.15;
    }

    .section-header-left .section-desc {
        font-size: 14px;
    }

    .contact-item-box {
        flex-direction: row;
        justify-content: flex-start;
        max-width: 300px;
        margin: 0 auto;
    }

    .icon-sphere {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .item-text p {
        font-size: 14px;
    }

    .social-icons-row a {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .premium-inquiry-card {
        padding: 28px 18px;
        border-radius: 18px;
    }

    .premium-inquiry-card h3 {
        font-size: 22px;
    }

    .quick-contact-form .form-group input,
    .quick-contact-form .form-group textarea {
        padding: 13px 16px;
        font-size: 14px;
    }

    .btn-premium-send {
        padding: 14px 20px;
        font-size: 15px;
        gap: 8px;
    }
}

/* ==========================================================================
   Shining Wave Flow Section
   ========================================================================== */
.shining-wave-wrapper {
    position: relative;
    width: 100%;
    background: #fcfcfc;
    height: 12vw;
    min-height: 80px;
    max-height: 200px;
    overflow: hidden;
    margin-bottom: -1px;
}

.wave-glow-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(255, 187, 0, 0.4), transparent);
    filter: blur(15px);
    z-index: 1;
    animation: glow-pulse 3s infinite alternate;
}

.shining-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.parallax-waves>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax-waves>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax-waves>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax-waves>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax-waves>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

@keyframes glow-pulse {
    0% {
        opacity: 0.6;
        height: 50%;
    }

    100% {
        opacity: 1;
        height: 70%;
    }
}

/* Footer Section */
.site-footer {
    padding: 60px 5% 40px;
    background: #0d1b31;
    /* Deeper Navy for Footer */
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.brand-col .footer-logo {
    margin-bottom: 25px;
}

.brand-col .footer-logo img {
    height: 60px;
    filter: brightness(0) invert(1);
    /* Logo in white for dark footer */
}

.footer-about {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-newsletter {
    position: relative;
    margin-top: 20px;
}

.footer-newsletter input {
    width: 100%;
    padding: 15px 60px 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.footer-newsletter input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.footer-newsletter button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 45px;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background: var(--white);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* Values Grid Section - Constant AI-Premium Texture */
.values-grid-section {
    padding: 50px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Static Tech-Wave & Mesh Hybrid */
.values-grid-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        /* Constant Topographic Wave Accents */
        radial-gradient(circle at 10% 20%, rgba(255, 187, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(27, 51, 88, 0.04) 0%, transparent 40%),
        /* High-End Topographic Line Pattern */
        repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.02) 0px, rgba(0, 0, 0, 0.02) 1px, transparent 1px, transparent 15px),
        /* Central Mesh Core */
        radial-gradient(circle at 50% 50%, rgba(255, 187, 0, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Static Cinematic Grain Overlay */
.values-grid-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 1;
}

.values-shining-waves {
    display: none;
}

/* Large background typography removed for cleaner AI look */

.values-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
    /* Above mesh */
}

.value-card-modern {
    position: relative;
    padding: 45px 35px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 187, 0, 0.08);
    border-radius: 24px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.value-card-modern::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 187, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.value-card-modern:hover::before {
    opacity: 1;
}

.value-index-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
    font-family: var(--font-heading);
}

.value-card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 187, 0, 0.3);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
}

.value-card-modern:hover::before {
    color: rgba(255, 187, 0, 0.1);
    transform: translateY(-10px);
}

.value-icon-box {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.5s ease;
}

.value-icon-box i {
    font-size: 26px;
    color: var(--secondary);
    transition: all 0.5s ease;
}

.value-card-modern:hover .value-icon-box i {
    color: var(--primary);
    transform: scale(1.1);
}

.value-card-modern h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 15px;
    letter-spacing: -0.8px;
    font-family: var(--font-heading);
}

.value-card-modern p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    opacity: 0.85;
}

.value-card-modern:hover p {
    opacity: 1;
}

@media (max-width: 1024px) {
    .values-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .value-card-modern {
        border: 1px solid #eee;
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .values-container {
        grid-template-columns: 1fr;
    }

    .values-grid-section {
        padding: 80px 0;
    }
}

/* Team Section */
.team-section {
    padding: 40px 0 80px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

/* Premium Textures */
.team-bg-glow {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 187, 0, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.team-dot-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
}

.team-section .container {
    position: relative;
    z-index: 2;
}

.team-section .section-header {
    margin-bottom: 40px;
}

.team-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 15px;
    margin-top: 0;
}

.team-card {
    flex: 1;
    min-width: 0;
    position: relative;
    transition: var(--transition);
}

.team-card-inner {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    height: 100%;
}

.team-image {
    position: relative;
    aspect-ratio: 1/1.2;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-socials {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 10;
}

.team-socials a {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.team-socials a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.team-info {
    padding: 20px 10px;
    text-align: center;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.team-info h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.team-role {
    font-size: 11px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hover Effects */
.team-card:hover .team-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-dark);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
    filter: grayscale(0%) contrast(1);
}

.team-card:hover .team-socials {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   5. Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   6. Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        /* Spits out right below the header */
        left: 5%;
        right: 5%;
        width: auto;
        height: auto;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        border-radius: 24px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.04);
        gap: 10px;
        /* Tighter minimalist gap */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1050;
        max-height: 80vh;
        overflow-y: auto;
    }

    header.menu-open .nav-links {
        opacity: 1;
        visibility: visible;
        transform: translateY(15px);
        /* Floating gap from header */
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        background: #f9f9f9 !important;
        width: 100% !important;
        min-width: 100% !important;
        padding: 5px 0 !important;
        margin-top: 10px !important;
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
        border-radius: 15px !important;
        box-shadow: none !important;
    }

    .has-dropdown.active .dropdown-menu {
        display: block !important;
    }

    .dropdown-menu li {
        display: block !important;
        width: 100% !important;
    }

    .dropdown-menu li a {
        display: flex !important;
        padding: 15px 25px !important;
        color: var(--secondary) !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        justify-content: flex-start !important;
        text-align: left !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
        background: transparent !important;
        opacity: 1 !important;
    }

    .dropdown-menu li:last-child a {
        border-bottom: none !important;
    }

    .dropdown-menu li a:hover {
        background: rgba(255, 187, 0, 0.1) !important;
        color: var(--primary) !important;
        padding-left: 30px !important;
    }

    .has-dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        font-size: 16px;
        font-weight: 600;
        width: 100%;
        padding: 12px;
        border-radius: 12px;
        justify-content: center;
        transition: var(--transition);
    }

    .nav-links a:hover {
        background: #f8f9fa;
        color: var(--primary);
    }

    .mobile-only-btn {
        display: block;
        width: 100%;
        margin-top: 10px;
    }

    .mobile-only-btn .btn-chat {
        display: flex !important;
        width: 100%;
        justify-content: center;
        padding: 15px;
        background: var(--primary);
        color: var(--secondary);
        border-radius: 12px;
        font-weight: 700;
    }

    .nav-actions .btn-chat {
        display: none;
        /* Usually hidden on small mobile to save space */
    }

    header {
        padding: 15px 20px;
    }

    header.scrolled {
        padding: 10px 20px;
    }

    .hero h1 {
        font-size: clamp(48px, 12vw, 65px);
    }

    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .stats-wrapper {
        grid-template-columns: 1fr;
    }

    .stat-item::after {
        display: none;
    }
}

/* Mobile Perfection (768px) */
@media (max-width: 768px) {
    section {
        padding: 60px 5% !important;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 32px !important;
        line-height: 1.2;
    }

    .section-desc {
        font-size: 16px;
    }

    .hero {
        padding: 60px 5% 40px !important;
        height: auto;
        min-height: 80vh;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-video-container::after {
        background: linear-gradient(180deg, rgba(27, 51, 88, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
    }

    .hero-video-container video {
        object-position: center;
    }

    .hero-text-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        z-index: 10;
    }

    .hero p {
        margin: 0 auto 20px;
        font-size: 15px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .stats-section {
        padding: 40px 5% !important;
    }

    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        padding: 20px;
        text-align: center;
        background: #fcfcfc;
        border-radius: 16px;
    }

    .stat-item::after {
        display: none !important;
    }

    .modern-why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .main-card,
    .span-grid {
        grid-row: auto;
        grid-column: auto;
    }

    .flex-row {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
    }

    .why-card-icon {
        margin-top: 20px;
        text-align: center;
    }

    .review-item-minimal {
        width: 290px;
        margin-right: 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .site-footer {
        padding: 70px 6% 35px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .brand-col .footer-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .brand-col .footer-logo img {
        height: 48px;
    }

    .footer-about {
        font-size: 14px;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }

    .footer-social-links {
        justify-content: center;
        gap: 12px;
    }

    .footer-col h4 {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-col>p {
        font-size: 14px;
        max-width: 380px;
        margin: 0 auto 15px;
    }

    .footer-newsletter {
        max-width: 420px;
        margin: 0 auto;
    }

    .footer-newsletter input {
        padding: 14px 55px 14px 18px;
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin-top: 40px;
        padding-top: 25px;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 48px !important;
    }

    .logo img {
        height: 50px;
    }

    .section-title {
        font-size: 28px !important;
    }

    /* Footer small-screen fixes */
    .site-footer {
        padding: 55px 5% 30px;
    }

    .footer-grid {
        gap: 28px;
    }

    .brand-col .footer-logo img {
        height: 42px;
    }

    .footer-about {
        font-size: 13.5px;
    }

    .footer-social-links a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .footer-col h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-newsletter {
        max-width: 100%;
    }

    .footer-newsletter input {
        padding: 13px 52px 13px 16px;
        font-size: 13px;
        border-radius: 10px;
    }

    .footer-newsletter button {
        width: 40px;
        border-radius: 6px;
        font-size: 14px;
    }

    .footer-bottom {
        margin-top: 30px;
        gap: 12px;
        font-size: 12px;
    }

    .footer-bottom p {
        font-size: 12px;
        line-height: 1.5;
    }

    .footer-bottom-links {
        gap: 16px;
    }

    .footer-bottom-links a {
        font-size: 12px;
    }

    /* Hide the rotated side tab on very small screens */
    .get-in-touch {
        display: none;
    }
}

/* Fix for landscape mobile / Mobile "Desktop Mode" scaling */
@media (max-width: 1024px) and (max-height: 500px) {
    .hero {
        padding: 60px 5% 40px !important;
        min-height: 100vh;
    }

    .hero h1 {
        font-size: clamp(32px, 8vw, 42px) !important;
        margin-bottom: 15px;
    }

    .hero p {
        margin-bottom: 20px;
        font-size: 14px;
    }

    .hero-btns {
        flex-direction: row;
        width: auto;
    }
}

/* ==========================================================================
   7. Scheduling Modal (Calendly Style)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2000;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: var(--white);
    width: 92%;
    max-width: 1040px;
    height: 85vh;
    max-height: 680px;
    border-radius: 24px;
    /* More modern rounded corners */
    position: relative;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.12);
    /* Brighter, modern shadow */
    display: flex;
    overflow: hidden;
    animation: modalPop 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Hairline border */
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    z-index: 10;
}

.modal-layout {
    display: flex;
    height: 100%;
}

/* Sidebar - Minimalist cleanup */
.modal-sidebar {
    width: 360px;
    padding: 50px 45px;
    border-right: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--white);
    /* Pure white back */
    flex-shrink: 0;
}

.back-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: var(--white);
    color: #4d4d4d;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.back-btn:hover {
    border-color: #0066ff;
    color: #0066ff;
}

.sidebar-header {
    margin-top: 40px;
}

.user-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
}

.meeting-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary);
    margin-top: 10px;
}

.meeting-info {
    margin-top: 30px;
}

.info-line {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4d4d4d;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-line i {
    font-size: 18px;
    width: 20px;
}

.sidebar-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-footer a {
    font-size: 13px;
    color: #0066ff;
    text-decoration: none;
}

/* Content Area */
.modal-content {
    flex: 1;
    overflow-y: auto;
}

.modal-step {
    display: none;
    padding: 40px;
}

.modal-step.active {
    display: block;
}

.step-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 30px;
}

/* Datetime Grid */
.datetime-grid {
    display: flex;
    height: 100%;
}

.calendar-wrapper {
    flex: 1;
    padding: 0 40px 0 0;
}

.timezone-selector {
    margin-top: 25px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.timezone-selector p {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.tz-display {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #4d4d4d;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.tz-display:hover {
    background: #f0f7ff;
    border-color: #0066ff33;
}

.tz-dropdown-list {
    position: absolute;
    bottom: 50px;
    left: 40px;
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 101;
    display: none;
    flex-direction: column;
    width: 280px;
    max-height: 250px;
    overflow-y: auto;
    padding: 8px;
}

.tz-dropdown-list.active {
    display: flex;
}

.tz-option {
    padding: 10px 15px;
    font-size: 13px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    color: #4d4d4d;
}

.tz-option:hover {
    background: #f0f7ff;
    color: #0066ff;
}

.calendar-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 35px;
}

.calendar-header h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

.calendar-header button {
    background: none;
    border: none;
    color: #0066ff;
    cursor: pointer;
    font-size: 14px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 10px;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-light);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.day-btn {
    aspect-ratio: 1;
    border: none;
    background: none;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    color: #4d4d4d;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.day-btn.active {
    background: #f0f7ff;
    color: #0066ff;
}

.day-btn.selected {
    background: #0066ff !important;
    color: var(--white) !important;
}

.day-btn:hover:not(.disabled) {
    background: #eef5ff;
}

.day-btn.disabled {
    color: #ccc;
    cursor: not-allowed;
}

/* Time Selection */
.time-wrapper {
    width: 300px;
    /* Slightly wider for better slot spacing */
    border-left: 1px solid #f0f0f0;
    padding: 40px 30px;
    animation: slideInRight 0.4s ease;
    overflow-y: auto;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.time-header h4 {
    font-size: 14px;
    margin-bottom: 20px;
    color: #4d4d4d;
}

.time-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 380px;
    overflow-y: auto;
    padding-right: 10px;
}

.time-slot {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    /* Subtler border */
    background: transparent;
    color: #0066ff;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.time-slot:hover {
    background: rgba(0, 102, 255, 0.05);
    border-color: #0066ff;
    transform: translateY(-1px);
}

.time-slot.selected {
    background: #444;
    /* Darker minimalist selection */
    color: var(--white);
    border-color: #444;
    width: 48%;
}

.confirm-mode .time-slot:not(.selected) {
    display: none;
}

.time-confirm-wrapper {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.btn-confirm {
    flex: 1;
    padding: 12px;
    background: #0066ff;
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
}

/* Details Form */
.details-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
}

.btn-add-guests {
    background: none;
    border: 1px solid #0066ff;
    color: #0066ff;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 20px;
    cursor: pointer;
}

.form-terms {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 25px;
}

.btn-submit-schedule {
    background: #0066ff;
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit-schedule:hover {
    background: #0052cc;
    transform: translateY(-2px);
}

/* Responsive Modal */
@media (max-width: 900px) {
    .modal-layout {
        flex-direction: column;
    }

    .modal-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #efefef;
        padding: 20px;
    }

    .datetime-grid {
        flex-direction: column;
    }

    .time-wrapper {
        width: 100%;
        border-left: none;
        padding-left: 0;
        margin-top: 30px;
    }
}

/* ── ABOUT PAGE HERO ─────────────────────────────────── */
.page-hero {
    position: relative;
    padding: 150px 0 90px;
    background: var(--secondary);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Premium dot-grid texture on dark hero */
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 1;
    pointer-events: none;
}

/* Decorative blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.25;
    pointer-events: none;
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #8b5cf6, transparent);
    top: -100px;
    left: -100px;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary), transparent);
    bottom: -80px;
    right: -80px;
    opacity: 0.15;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.page-hero-text {
    text-align: left;
}

/* Breadcrumb */
.ph-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.ph-breadcrumb a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.ph-breadcrumb a:hover {
    color: var(--primary);
}

.ph-breadcrumb i {
    font-size: 10px;
    opacity: 0.5;
}

.ph-breadcrumb span {
    color: rgba(255, 255, 255, 0.75);
}

/* Glowing pill badge */
.ph-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 187, 0, 0.1);
    border: 1px solid rgba(255, 187, 0, 0.3);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.ph-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

/* Headline */
.page-hero h1 {
    font-size: clamp(38px, 4.5vw, 62px);
    color: var(--white);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
    font-family: var(--font-heading);
}

.ph-highlight {
    color: var(--primary);
}

/* Sub paragraph */
.page-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    font-weight: 400;
    max-width: 460px;
    margin-bottom: 40px;
}

/* Stats row */
.ph-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.ph-stat strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1;
}

.ph-stat span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
    display: block;
}

.ph-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
}

/* Right side video box */
.page-hero-media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-custom-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Video overlay badge */
.video-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 100px;
}

.video-badge i {
    font-size: 18px;
    color: var(--primary);
}

/* Utilities */
.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.text-center {
    text-align: center;
}


/* ── WHO WE ARE SECTION ──────────────────────────────── */
.about-mission-section {
    padding: 100px 0;
    background: #f8f9fc;
    position: relative;
    overflow: hidden;
}

/* Subtle diagonal line texture */
.about-mission-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-45deg,
            rgba(0, 0, 0, 0.025) 0px,
            rgba(0, 0, 0, 0.025) 1px,
            transparent 1px,
            transparent 12px);
    z-index: 0;
    pointer-events: none;
}

.about-mission-section .container {
    position: relative;
    z-index: 1;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Image side */
.mission-image {
    position: relative;
    z-index: 1;
}

.mission-image img {
    width: 100%;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    display: block;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.image-accent-box {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    background: transparent;
    border: 2px solid rgba(255, 187, 0, 0.35);
    border-radius: 12px;
    z-index: 1;
}

/* Floating stats card over image */
.floating-card {
    position: absolute;
    bottom: 28px;
    left: -28px;
    z-index: 10;
    background: var(--white);
    border-radius: 14px;
    padding: 18px 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.fc-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fc-stat {
    text-align: center;
}

.fc-stat strong {
    font-size: 26px;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -1px;
    display: block;
    line-height: 1;
}

.fc-stat strong span {
    color: var(--primary);
}

.fc-stat>span {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-top: 4px;
}

.fc-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.08);
}

/* Text side */
.mission-text {
    padding-left: 10px;
}

/* Badge pill */
.wwa-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 20, 65, 0.05);
    border: 1px solid rgba(13, 20, 65, 0.1);
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 22px;
}

.wwa-badge i {
    color: var(--primary);
    font-size: 13px;
}

.mission-text .section-title {
    font-size: clamp(28px, 3vw, 40px);
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.15;
}

.mission-text>p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 36px;
}

/* Feature icon rows */
.wwa-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wwa-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.wwa-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--secondary);
    color: var(--primary);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wwa-feature h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.wwa-feature p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}


/* Mission & Vision Section — Editorial Redesign */
.mission-vision-section {
    background: #fff;
    padding-bottom: 90px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

/* Crosshatch dot grid texture on white */
.mission-vision-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(13, 20, 65, 0.05) 1px, transparent 1px);
    background-size: 22px 22px;
    z-index: 0;
    pointer-events: none;
}

.mission-vision-section .mv-top-bar,
.mission-vision-section .container {
    position: relative;
    z-index: 1;
}

/* Top header bar with full-width accent stripe */
.mv-top-bar {
    background: var(--secondary);
    padding: 60px 5%;
    margin-bottom: 70px;
}

.mv-top-bar .sub-title {
    color: var(--primary);
    margin-bottom: 10px;
    opacity: 1;
}

.mv-heading {
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--white);
    line-height: 1;
    font-family: var(--font-heading);
}

/* Two column layout with divider */
.mv-split {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0 60px;
    align-items: start;
}

.mv-divider {
    background: rgba(0, 0, 0, 0.07);
    width: 1px;
    height: 100%;
    min-height: 400px;
}

/* Each block */
.mv-block {
    position: relative;
    padding: 0 10px;
}

.mv-number {
    font-size: 80px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    display: block;
    margin-bottom: -20px;
    letter-spacing: -3px;
    user-select: none;
    font-family: var(--font-heading);
}

/* Label pill */
.mv-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 187, 0, 0.08);
    border: 1px solid rgba(255, 187, 0, 0.25);
    color: var(--secondary);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.mv-label i {
    color: var(--primary);
    font-size: 14px;
}

.mv-block-inner h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.mv-block-inner p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 28px;
}

/* Checklist */
.mv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mv-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
}

.mv-list li i {
    color: var(--primary);
    font-size: 13px;
    background: rgba(255, 187, 0, 0.12);
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── WE BELIEVE IN — Editorial Premium Layout ────── */
.core-values-section {
    padding: 60px 0 30px;
    background: #0b1120;
    position: relative;
    overflow: hidden;
}

.core-values-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 60L60 0' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: auto, 60px 60px;
    opacity: 0.8;
    /* Subtle enough because textures themselves are faint */
    pointer-events: none;
    z-index: 0;
}

/* Amber glow bottom-left */
.core-values-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 187, 0, 0.05) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.core-values-section .container {
    position: relative;
    z-index: 1;
}

/* Two-column split */
.beliefs-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
}

/* LEFT — Big italic headline */
.beliefs-left {
    position: sticky;
    top: 120px;
}

.beliefs-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 24px;
}

.beliefs-headline {
    font-size: clamp(42px, 5vw, 62px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -3px;
    color: var(--white);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.beliefs-headline em {
    font-style: italic;
    color: var(--primary);
    font-weight: 300;
    /* Thin italic contrast */
}

.beliefs-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    max-width: 260px;
}

/* RIGHT — Stacked rows */
.beliefs-right {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.belief-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    cursor: default;
    transition: all 0.3s ease;
    position: relative;
}

/* Gold left accent line on hover */
.belief-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: all 0.3s ease;
}

.belief-row:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

.belief-row:hover {
    padding-left: 20px;
    background: rgba(255, 187, 0, 0.04);
    border-bottom-color: rgba(255, 187, 0, 0.2);
    border-radius: 0 8px 8px 0;
}

.belief-index {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 2px;
    min-width: 28px;
    flex-shrink: 0;
    transition: color 0.3s;
}

.belief-row:hover .belief-index {
    color: var(--primary);
}

.belief-body {
    flex: 1;
}

.belief-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.4px;
    margin-bottom: 6px;
    transition: color 0.3s;
}

.belief-row:hover .belief-body h3 {
    color: var(--primary);
}

.belief-body p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s;
}

.belief-row:hover .belief-body p {
    color: rgba(255, 255, 255, 0.75);
}

.belief-arrow {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
    flex-shrink: 0;
}

.belief-row:hover .belief-arrow {
    color: var(--primary);
    transform: translateX(5px);
}


/* SVG Hexagon mesh texture layer */
.core-values-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34L28 66zM28 68l28 16v-2L28 66 0 82v2L28 68z' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 56px 100px;
    z-index: 0;
    pointer-events: none;
}

/* Radial gold glow — top left */
.core-values-section::after {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 187, 0, 0.10) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Extra glow bottom right via box decoration */
.core-values-section .container::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.core-values-section .container {
    position: relative;
    z-index: 1;
}

/* Override card styles for dark background */
.core-values-section .section-header .sub-title {
    color: var(--primary);
    opacity: 1;
}

.core-values-section .section-title {
    color: var(--white);
}

.core-values-section .section-desc {
    color: rgba(255, 255, 255, 0.55);
}


.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.value-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 26px 24px;
    transition: var(--transition);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.value-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 187, 0, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.value-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 187, 0, 0.12);
    border: 1px solid rgba(255, 187, 0, 0.25);
    color: var(--primary);
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 19px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    font-size: 15px;
}

/* Editorial Dark Call To Action */
.contact-teaser {
    padding: 140px 5%;
    background: #0d1423;
    /* Deep sophisticated slate */
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.contact-teaser .section-title {
    font-size: clamp(36px, 5vw, 54px);
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.contact-teaser p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-teaser .btn-primary {
    padding: 18px 40px;
    font-size: 16px;
    margin-top: 40px;
}

/* Subpage Responsiveness */
@media (max-width: 900px) {
    .page-hero {
        padding: 120px 0 80px;
    }

    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-hero-text {
        text-align: center;
    }

    .page-hero h1 {
        font-size: clamp(32px, 8vw, 50px);
    }

    .page-hero p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
    }

    .page-hero-media {
        margin-top: 20px;
    }

    .ph-breadcrumb {
        justify-content: center;
    }

    .ph-stats {
        justify-content: center;
        gap: 20px 40px;
    }

    .ph-stat-divider {
        display: none;
    }

    .ph-stat {
        text-align: center;
        min-width: 100px;
    }

    .ph-stat strong {
        font-size: 24px;
    }

    .ph-stat span {
        font-size: 10px;
        white-space: nowrap;
    }

    /* Our Philosophy (Beliefs) Section Mobile Fixes */
    .beliefs-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .beliefs-left {
        position: relative;
        top: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .beliefs-headline {
        font-size: clamp(36px, 10vw, 48px);
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .beliefs-headline br {
        display: none;
    }

    .beliefs-sub {
        max-width: 100%;
        margin: 0 auto;
    }

    .belief-row {
        padding: 25px 15px;
        gap: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .belief-row:last-child {
        border-bottom: none;
    }

    .belief-row:hover {
        padding-left: 20px;
    }

    .belief-index {
        font-size: 14px;
        min-width: 24px;
    }

    .belief-body h3 {
        font-size: 19px;
    }

    .belief-arrow {
        display: none;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mission-text {
        padding-left: 0;
        text-align: center;
    }

    .wwa-badge {
        justify-content: center;
    }

    .wwa-features {
        text-align: left;
        max-width: 500px;
        margin: 0 auto;
    }

    .mv-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mv-divider {
        display: none;
    }

    .image-accent-box {
        bottom: -15px;
        right: -15px;
    }

    .value-card {
        padding-left: 20px;
    }

    /* Team Leadership Mobile Fixes */
    .team-section {
        padding: 60px 0 80px;
    }

    .team-section .section-header {
        margin-bottom: 30px;
    }

    .team-grid {
        flex-wrap: wrap;
        gap: 25px;
        margin-top: 0;
    }

    .team-card {
        flex: 0 1 calc(50% - 25px);
        min-width: 260px;
    }

    @media (max-width: 600px) {
        .team-card {
            flex: 0 1 100%;
            max-width: 380px;
            margin: 0 auto;
        }
    }
}

/* ==========================================================================
   8. Services Page Styles
   ========================================================================== */

/* ==========================================================================
   8. Services Page Styles (Redesigned Hero)
   ========================================================================== */
.services-hero {
    padding: 160px 0 100px;
    background: #060912;
    /* Deep Obsidian Base */
    position: relative;
    overflow: hidden;
}

/* Shining Colorful Mesh */
.mesh-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(255, 187, 0, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 85% 15%, rgba(0, 242, 255, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(255, 0, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(27, 51, 88, 1) 0%, transparent 60%);
    filter: blur(80px);
    z-index: 1;
    animation: floating-glow 20s infinite alternate ease-in-out;
}

@keyframes floating-glow {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.15) translate(20px, -20px);
        opacity: 0.9;
    }
}

/* Noise Grain Texture */
.hero-texture {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 2;
}

.hero-split-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 10;
}

.s-hero-content {
    flex: 1.2;
    text-align: left;
}

.s-hero-text {
    max-width: 650px;
}

.s-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 187, 0, 0.5);
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-family: var(--font-heading);
    backdrop-filter: blur(10px);
}

.s-title {
    font-size: clamp(40px, 6vw, 64px);
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: -0.04em;
}

.s-desc {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 40px;
}

.s-hero-btns {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-scroll-down {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: #ffffff;
    font-size: 15px;
    transition: var(--transition);
}

.btn-scroll-down i {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: var(--transition);
}

.btn-scroll-down:hover {
    color: var(--primary);
}

.btn-scroll-down:hover i {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(5px);
}

/* Hero Visual (Minimalist) */
.s-hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.minimal-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 540px;
}

.hero-minimal-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.visual-accent-line {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border-bottom: 4px solid var(--primary);
    border-right: 4px solid var(--primary);
    border-radius: 0 0 15px 0;
    z-index: -1;
}

@media (max-width: 1100px) {
    .hero-split-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .s-hero-content,
    .s-hero-visual {
        flex: 1;
        width: 100%;
        justify-content: center;
    }

    .s-hero-text {
        margin: 0 auto;
    }

    .s-hero-btns {
        justify-content: center;
    }

    .hero-minimal-img {
        height: 350px;
    }

    .visual-accent-line {
        display: none;
    }
}

@media (max-width: 600px) {
    .s-hero-btns {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        /* Center the small buttons */
    }

    .s-hero-btns a {
        width: auto;
        /* Keep buttons small/natural size */
        padding: 12px 25px;
        /* Compact padding */
        font-size: 14px;
    }

    .btn-scroll-down {
        border-radius: 12px;
    }
}


/* Services Grid Overview */
.services-overview {
    padding: 40px 0;
    background: #ffffff;
    position: relative;
}

.s-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.s-card {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 28px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.s-card:hover {
    transform: translateY(-15px);
    background: #ffffff;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.s-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 187, 0, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 18px;
    margin-bottom: 30px;
    transition: all 0.5s ease;
}

.s-card:hover .s-card-icon {
    background: var(--primary);
    color: var(--secondary);
    transform: rotateY(360deg);
}

.s-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
}

.s-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.s-card-list {
    list-style: none;
    padding: 0;
}

.s-card-list li {
    font-size: 14px;
    color: var(--secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.s-card-list li i {
    font-size: 10px;
    color: var(--primary);
}

/* Detailed Image/Text Sections */
.s-detail-section {
    padding: 60px 0;
    background: #ffffff;
}

.s-detail-section.s-dark {
    background: #0b1120;
    color: var(--white);
}

.s-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.detail-label {
    display: block;
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.s-detail-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.s-dark .s-detail-text h2 {
    color: var(--white);
}

.s-detail-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.s-dark .s-detail-text p {
    color: rgba(255, 255, 255, 0.7);
}

.s-spec-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.spec-item strong {
    display: block;
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.s-dark .spec-item strong {
    color: var(--white);
}

.spec-item p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0 !important;
}

.s-detail-visual {
    position: relative;
}

.visual-box {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.1);
}

.visual-box img {
    width: 100%;
    height: auto;
    transition: transform 0.8s ease;
}

.visual-box:hover img {
    transform: scale(1.05);
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
}

.s-reverse {
    direction: rtl;
}

.s-reverse .s-detail-text {
    direction: ltr;
}

/* Process Section */
.process-section {
    padding: 60px 0;
    background: #fcfcfc;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.p-step {
    position: relative;
    padding: 25px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.p-step:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.p-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.p-step:hover .p-num {
    color: var(--primary);
    transform: translateY(-5px);
}

.p-step h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
}

.p-step p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Services */
@media (max-width: 1024px) {
    .s-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .s-detail-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .s-reverse {
        direction: ltr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .s-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .s-spec-list {
        grid-template-columns: 1fr;
    }

    .s-title {
        font-size: 36px;
    }

    .services-hero {
        padding: 120px 0 60px;
    }
}


/* Services CTA Section - High-End Final Touch */
.services-cta {
    padding: 60px 0 100px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-card {
    background: #0b1120;
    border-radius: 40px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.cta-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 187, 0, 0.08) 0%, transparent 60%);
    transform: rotate(-15deg);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.cta-inner p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 45px;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .cta-btns .btn-primary,
    .cta-btns .btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .cta-card {
        padding: 60px 30px;
    }
}


/* ==========================================================================
   9. Industries Page Styles
   ========================================================================== */

.ind-hero {
    padding: 120px 0 60px;
    background: #0b1120;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ind-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 187, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 187, 0, 0.05) 0%, transparent 50%);
    filter: blur(60px);
}

.ind-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.ph-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 187, 0, 0.15);
    border: 1px solid rgba(255, 187, 0, 0.3);
    color: var(--primary);
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.ind-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.ph-highlight {
    color: var(--primary);
}

.ind-hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Industries Grid */
.ind-grid-section {
    padding: 60px 0;
    background: #ffffff;
}

.ind-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ind-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ind-card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ind-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.ind-card:hover .ind-card-bg img {
    transform: scale(1.1);
}

.ind-card-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 20%, rgba(11, 17, 32, 0.95) 100%);
}

.ind-card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: var(--white);
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.ind-card:hover .ind-card-content {
    transform: translateY(0);
}

.ind-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    opacity: 0;
    transition: all 0.4s ease;
}

.ind-card:hover .ind-icon {
    opacity: 1;
}

.ind-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.ind-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 90%;
}

.ind-list {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    transition: all 0.5s ease 0.1s;
}

.ind-card:hover .ind-list {
    opacity: 1;
}

.ind-list li {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
}

/* Why Section */
.ind-why-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.ind-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ind-why-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.ind-metrics {
    display: flex;
    gap: 40px;
}

.ind-metric strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.ind-metric span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ind-why-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

/* Responsive Industries */
@media (max-width: 1024px) {

    .ind-main-grid,
    .ind-why-grid {
        grid-template-columns: 1fr;
    }

    .ind-why-image {
        order: -1;
    }
}

@media (max-width: 600px) {
    .ind-card {
        height: 400px;
    }

    .ind-card-content {
        padding: 30px;
        transform: translateY(0);
    }

    .ind-icon,
    .ind-list {
        opacity: 1;
    }
}


/* ==========================================================================
   10. Blog Page Styles
   ========================================================================== */

.blog-page .blog-hero {
    padding: 90px 5%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Premium Noise Grain */
.blog-hero-texture {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 2;
}

/* Vibrant Shining Mesh Glows */
.blog-hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #0b1120;
    /* Deep navy base to make colors shine */
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 187, 0, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 242, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(255, 0, 153, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 10% 90%, rgba(27, 51, 88, 0.8) 0%, transparent 50%);
    filter: blur(60px);
    animation: mesh-shimmer 15s infinite alternate ease-in-out;
}

/* Shining Journey Path (Static & Step-wise) */
.hero-journey-path {
    position: absolute;
    top: 55%;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.6;
}

.hero-journey-path svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(255, 187, 0, 0.2));
}

.journey-step {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--primary);
}

.journey-step span {
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(255, 187, 0, 0.4);
    border-radius: 50%;
    animation: pulse-step 3s infinite ease-out;
}

.journey-step label {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading);
    pointer-events: none;
    transition: var(--transition);
}

.journey-step:hover label {
    color: var(--primary);
    transform: translateX(-50%) translateY(-5px);
}

@media (max-width: 768px) {
    .hero-journey-path {
        display: none;
        /* Hide on small mobile to keep it clean */
    }
}

@keyframes mesh-shimmer {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.2) rotate(5deg);
        opacity: 1;
    }

    100% {
        transform: scale(1) rotate(-5deg);
        opacity: 0.8;
    }
}

.blog-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero .sub-title {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-family: var(--font-heading);
    border: 1px solid rgba(255, 187, 0, 0.5);
    display: inline-block;
    backdrop-filter: blur(5px);
    font-size: 13px;
}

.blog-hero .section-title {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    color: #ffffff;
    /* White text for dark background */
}

.blog-hero .section-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    /* Light text for readability */
    max-width: 550px;
    margin: 0 auto;
}

/* Update Curved Separator to match dark hero */
.hero-bottom-curve .shape-fill {
    fill: #ffffff;
    /* Keep white to transition into the next section */
}

/* Philosophy Style Featured Post (Image-Inspired) */
.featured-post-section {
    padding: 60px 5% 100px;
    background: #0b1120;
    /* Deep Midnight */
    position: relative;
    overflow: hidden;
}

.featured-bg-hexagon {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='92' viewBox='0 0 80 92' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0l40 23v46L40 92 0 69V23L40 0z' fill='none' stroke='white' stroke-opacity='0.03' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 80px 92px;
    z-index: 1;
}

.featured-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    position: relative;
    z-index: 10;
}

.featured-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feat-sup-title {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 15px;
    display: block;
}

.feat-big-title {
    font-size: clamp(50px, 7vw, 84px);
    line-height: 0.9;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.05em;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.feat-bottom-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 17px;
    max-width: 320px;
    line-height: 1.6;
}

/* Right Content Row */
.featured-story-row {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.featured-story-row:hover {
    border-color: var(--primary);
}

.story-num {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    padding-top: 8px;
}

.story-content {
    flex: 1;
}

.story-tags {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 15px;
}

.story-cat {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
}

.story-time {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    font-weight: 600;
}

.story-title {
    font-size: clamp(22px, 2.5vw, 32px);
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.story-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    max-width: 600px;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.story-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.story-author span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.story-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.story-link:hover {
    gap: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .featured-split-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 600px) {
    .feat-big-title {
        font-size: 60px;
    }

    .featured-story-row {
        gap: 20px;
    }

    .story-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

/* Blog Grid Section */
.blog-grid-section {
    padding: 60px 5%;
    background: #fbfcfe;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    background: var(--white);
    color: var(--secondary);
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.blog-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.post-thumb {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card:hover .post-thumb img {
    transform: scale(1.1);
}

.post-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: var(--secondary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.post-body {
    padding: 30px;
}

.post-body h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.post-body p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.post-footer span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.read-more {
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-more i {
    font-size: 12px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.pag-btn {
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.pag-btn.disabled {
    opacity: 0.3;
    pointer-events: none;
}

.pag-btn:hover {
    color: var(--primary);
}

.pag-numbers {
    display: flex;
    gap: 10px;
}

.pag-numbers .num {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.pag-numbers .num.active,
.pag-numbers .num:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Blog Newsletter */
.blog-newsletter {
    padding: 60px 5%;
    background: #ffffff;
}

.newsletter-box {
    background: #0b1120;
    border-radius: 40px;
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 187, 0, 0.1) 0%, transparent 60%);
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.newsletter-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 30px;
    color: var(--white);
    font-size: 16px;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .btn-primary {
    border-radius: 100px;
    padding: 15px 40px;
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .featured-post-card {
        grid-template-columns: 1fr;
    }

    .featured-content {
        padding: 30px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        border-radius: 0;
    }

    .newsletter-form input {
        background: rgba(255, 255, 255, 0.05);
        height: 60px;
        border-radius: 100px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 15px;
    }

    .newsletter-form .btn-primary {
        width: 100%;
        height: 60px;
    }
}

/* ==========================================================================
   11. Career Page Styles
   ========================================================================== */

.career-page .career-hero {
    padding: 90px 5% 60px;
    background: #ffffff;
    text-align: center;
}

.career-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Perks Grid */
.perks-section {
    padding: 60px 5%;
    background: #fbfcfe;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.perk-card {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.perk-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 100px rgba(27, 51, 88, 0.06);
    border-color: var(--primary);
}

.perk-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 187, 0, 0.1);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.perk-card:hover .perk-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.perk-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.perk-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Job Positions List */
.positions-section {
    padding: 60px 5%;
    background: #ffffff;
}

.positions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.positions-count {
    font-weight: 700;
    color: var(--primary);
    background: rgba(255, 187, 0, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.job-card {
    background: var(--white);
    padding: 30px 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.job-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    border-color: var(--primary);
}

.job-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.job-info h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    gap: 25px;
    font-size: 14px;
    color: var(--text-light);
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-job {
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    padding: 12px 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.btn-job:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.general-application {
    text-align: center;
    padding: 40px;
    background: #fbfcfe;
    border-radius: 30px;
    border: 1px dashed rgba(0, 0, 0, 0.1);
}

.general-application p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Hiring Process Timeline */
.hiring-process {
    padding: 60px 5%;
    background: var(--secondary);
    color: var(--white);
}

.hiring-process .sub-title {
    color: var(--primary);
}

.hiring-process .section-title {
    color: var(--white);
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.process-flow::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.flow-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 0 0 10px rgba(255, 187, 0, 0.2);
}

.flow-step h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
}

.flow-step p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Career Responsive */
@media (max-width: 1024px) {
    .perks-grid {
        grid-template-columns: 1fr;
    }

    .process-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }

    .process-flow::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .btn-job {
        width: 100%;
        justify-content: center;
    }

    .positions-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .process-flow {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   12. Contact Page Styles
   ========================================================================== */

.contact-page .contact-hero {
    padding: 90px 5% 60px;
    background: #ffffff;
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Main Grid Layout */
.contact-main-section {
    padding: 20px 5% 80px;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* Contact Details */
.detail-card {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: #fbfcfe;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    transition: var(--transition);
}

.detail-card:hover {
    transform: translateX(10px);
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.detail-info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
}

.detail-info p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.detail-info span {
    display: block;
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
    margin-top: 5px;
}

/* Social Box */
.social-box {
    padding: 40px;
    background: var(--secondary);
    border-radius: 20px;
    color: var(--white);
    text-align: center;
}

.social-box h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-box .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-box .social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-box .social-links a:hover {
    transform: translateY(-5px);
}

/* Premium Form */
.contact-form-container {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 40px 100px rgba(27, 51, 88, 0.04);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field.full-width {
    grid-column: span 2;
    margin-bottom: 30px;
}

.form-field label {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    font-family: var(--font-heading);
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 15px 25px;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    font-size: 15px;
    color: var(--secondary);
    outline: none;
    transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(255, 187, 0, 0.05);
}

/* Custom Checkbox */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 25px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-light);
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 4px;
}

.checkbox-container:hover input~.checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked~.checkmark {
    background-color: var(--primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* FAQ Section */
.contact-faq {
    padding: 60px 5%;
    background: #fbfcfe;
}

.faq-accordion {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question i {
    font-size: 14px;
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 30px 25px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    display: none;
    /* In real app, JS handles toggling */
}

/* Map Section */
.map-section {
    padding: 60px 0;
}

.map-placeholder {
    height: 450px;
    width: 100%;
    background: #0b1120;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 17, 32, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 30px;
}

.map-overlay i {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 25px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* Contact Responsive */
@media (max-width: 1100px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-field.full-width {
        grid-column: span 1;
    }

    .contact-form-container {
        padding: 30px;
    }
}

/* ==========================================================================
   13. Notification & Form States
   ========================================================================== */

/* Success Modal Dialog */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.success-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-dialog {
    background: var(--white);
    width: 90%;
    max-width: 450px;
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.8) translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.success-modal-overlay.active .success-dialog {
    transform: scale(1) translateY(0);
}

.success-icon-wrap {
    width: 100px;
    height: 100px;
    background: rgba(30, 215, 96, 0.1);
    color: #1ed760;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    margin: 0 auto 30px;
    border: 2px solid rgba(30, 215, 96, 0.2);
    animation: icon-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes icon-pop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-dialog h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.success-dialog p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.btn-success-close {
    background: var(--secondary);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-success-close:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Modal Decorative Accents */
.dialog-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), transparent);
    border-radius: 50%;
    opacity: 0.1;
}

/* Button Loading State */
.btn-primary.loading,
.btn-premium-send.loading {
    pointer-events: none;
    opacity: 0.8;
    position: relative;
    color: transparent !important;
}

.btn-primary.loading::after,
.btn-premium-send.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% - 13px);
    left: calc(50% - 13px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    z-index: 2;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   14. FAQ Accordion
   ========================================================================== */

.contact-faq {
    padding: 100px 0;
    background: #fdfdfd;
}

.faq-accordion {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.faq-question i {
    font-size: 14px;
    transition: transform 0.4s ease;
    color: var(--primary);
    background: rgba(var(--primary-rgb, 10, 10, 10), 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    color: var(--text-dark);
    /* Ensure text is dark and visible */
    line-height: 1.8;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.4s ease;
    display: block !important;
}

/* Active State */
.faq-item.active {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-question {
    color: var(--primary);
    padding-bottom: 5px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    background: var(--primary);
    color: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 1500px;
    /* Force plenty of space */
    padding-bottom: 30px;
    padding-top: 10px;
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   LET'S CHAT DRAWER
   ========================================================================== */
.chat-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.chat-drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.chat-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 1100px;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.1);
    transition: right 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    overflow-y: auto;
}

.chat-drawer.open {
    right: 0;
}

.drawer-inner {
    display: flex;
    min-height: 100%;
}

.drawer-left {
    flex: 1.2;
    padding: 50px 60px;
}

.drawer-right {
    flex: 0.8;
    background: var(--secondary);
    color: var(--white);
    padding: 50px 35px;
    position: relative;
}

.drawer-header h2 {
    font-size: 36px;
    font-family: var(--font-accent);
    color: var(--secondary);
    margin-bottom: 5px;
}

.drawer-header p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 25px;
}

/* Service Selection */
.service-selection {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.radio-card {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
}

.radio-card input {
    position: absolute;
    opacity: 0;
}

.radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
}

.radio-card input:checked+.radio-custom {
    border-color: var(--primary);
    background: var(--primary);
}

.radio-card input:checked+.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
}

.radio-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Form Styles */
.drawer-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.drawer-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drawer-form label {
    font-size: 12px;
    font-weight: 700;
    color: #999;
    letter-spacing: 1px;
}

.drawer-form input,
.drawer-form textarea {
    border: none;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
    background: transparent;
}

.drawer-form input:focus,
.drawer-form textarea:focus {
    border-color: var(--primary);
}

.form-consent {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-light);
}

.checkbox-container a {
    color: var(--primary);
    text-decoration: underline;
}

.btn-submit {
    background: var(--secondary);
    color: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-submit:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Right Side Styles */
.drawer-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    z-index: 10;
}

.drawer-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.right-links {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.link-item {
    display: flex;
    gap: 20px;
}

.link-icon {
    font-size: 24px;
    color: var(--primary);
}

.link-content p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 5px;
}

.link-content a {
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    color: var(--white);
    text-decoration: none;
}

.link-content a:hover {
    color: var(--primary);
}

.direct-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card {
    margin-bottom: 35px;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.info-val {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.info-action {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.next-steps {
    margin-top: 40px;
}

.next-steps h3 {
    font-size: 15px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.video-preview {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    max-width: 280px;
}

.video-preview img {
    width: 100%;
    transition: transform 0.5s ease;
    display: block;
}

.video-preview:hover img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding-left: 5px;
}

/* Responsive Drawer */
@media (max-width: 1024px) {
    .chat-drawer {
        max-width: 100%;
    }

    .drawer-inner {
        flex-direction: column;
    }

    .drawer-left {
        padding: 50px 30px;
    }

    .drawer-right {
        padding: 50px 30px;
    }

    .drawer-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .service-selection {
        grid-template-columns: 1fr;
    }

    .drawer-form .form-row {
        grid-template-columns: 1fr;
    }
}