/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #4a4a4a;
    --primary-dark: #2d2d2d;
    --primary-light: #6a6a6a;
    --dark: #1a1a1a;
    --dark-light: #2a2a2a;
    --light: #f5f5f5;
    --gray: #6b6b6b;
    --gray-light: #b0b0b0;
    --white: #ffffff;
    --accent: #8a8a8a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #3a3a3a, #6a6a6a, #a0a0a0);
    z-index: 10001;
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(100, 100, 100, 0.5);
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
   ======================================== */

/* Base hidden states */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Reveal from left */
.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Reveal from right */
.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up reveal */
.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Rotate reveal */
.reveal-rotate {
    opacity: 0;
    transform: translateY(40px) rotate(-5deg);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-rotate.active {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

/* Staggered children animation */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.active > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.active > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.active > * {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax elements */
.parallax-slow {
    transition: transform 0.1s ease-out;
}

.parallax-medium {
    transition: transform 0.1s ease-out;
}

.parallax-fast {
    transition: transform 0.1s ease-out;
}

/* Text reveal animation */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-reveal.active span {
    transform: translateY(0);
}

/* Blur reveal */
.reveal-blur {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-blur.active {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Card hover lift effect */
.hover-lift {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Scroll-triggered background color shift */
.bg-shift {
    transition: background-color 0.5s ease;
}

/* Element hidden state for JS */
.element-hidden {
    opacity: 0;
    transform: translateY(40px);
}

.element-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.highlight {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

/* Shine effect */
.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-shine:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 74, 74, 0.4);
}

.btn-outline {
    border: 2px solid var(--dark);
    background: transparent;
    color: var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-outline-light {
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--light);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.arrow {
    font-size: 1.2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--white);
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    list-style: none;
    margin-top: 15px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 24px;
    color: var(--dark);
    font-size: 0.9rem;
}

.dropdown-menu li a:hover {
    background: var(--light);
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--white);
}

/* Hero Section with Video */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

/* Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 62, 80, 0.85) 0%, rgba(61, 78, 96, 0.8) 100%);
}

/* Image Background */
.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(45, 62, 80, 0.85) 100%);
}

/* Dark overlay for the light beam image */
.hero-bg-overlay.dark-overlay {
    background: rgba(0, 0, 0, 0.3);
}

/* Cursor Light Beam Effect */
.hero-cursor-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 25%,
        transparent 60%
    );
}

.hero:hover .hero-cursor-light {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content.hero-centered {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 700px;
    margin: 0;
}

/* Two-column hero layout: content left, buttons bottom-right */
.hero-content.hero-split {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 0;
    align-items: end;
    max-width: 100%;
}

.hero-split .hero-brand-side {
    grid-column: 1;
    grid-row: 1 / -1;
    align-self: center;
}

.hero-buttons-right {
    grid-column: 2;
    grid-row: 1 / -1;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-self: end;
    padding-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.hero-buttons-right .btn {
    min-width: 140px;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.85rem;
}

.hero-brand-side {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.hero-brand {
    font-family: 'Inter', sans-serif;
    font-size: 5.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    letter-spacing: -2px;
    line-height: 1;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-stats-inline {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    margin: 40px 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.stat-inline {
    text-align: left;
}

.stat-inline .stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-inline .stat-suffix {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    color: #a0a0a0;
}

.stat-inline .stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-centered .hero-buttons,
.hero-split .hero-buttons {
    justify-content: flex-start;
}

.hero-subtitle {
    color: var(--gray-light);
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-title {
    font-size: 3.8rem;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.hero-title .highlight {
    color: #c0c0c0;
    font-style: normal;
}

.hero-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.hero-buttons .btn {
    min-width: 140px;
    justify-content: center;
    padding: 10px 22px;
    font-size: 0.85rem;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 0.8s ease forwards;
    animation-delay: 1s;
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stat-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    border-radius: 10px;
    border-left: 3px solid var(--gray-light);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
}

.stat-number {
    display: inline;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.stat-item .stat-suffix {
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 700;
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 5px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.2s;
}

/* Mouse Scroll Indicator */
.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(12px);
    }
}

/* Hero Decorative Lines */
.hero-decoration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    pointer-events: none;
    z-index: 1;
}

.deco-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
}

.deco-line.line-1 {
    width: 1px;
    height: 100%;
    right: 30%;
}

.deco-line.line-2 {
    width: 1px;
    height: 100%;
    right: 60%;
}

/* Marquee Section */
.marquee-section {
    background: #f5f5f5;
    padding: 30px 0;
    overflow: hidden;
}

.marquee {
    display: flex;
    position: relative;
}

.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(90deg, #f5f5f5 0%, transparent 100%);
}

.marquee::after {
    right: 0;
    background: linear-gradient(-90deg, #f5f5f5 0%, transparent 100%);
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-pill {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid #c0c0c0;
    border-radius: 50px;
    color: #3a3a3a;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: transparent;
    transition: all 0.3s ease;
}

.marquee-pill:hover {
    background: #3a3a3a;
    color: #ffffff;
    border-color: #3a3a3a;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Showcase Section - Leroux Style Device Slider */
.showcase-section {
    background: #d0d0d0;
    padding: 80px 0 0;
    overflow: hidden;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.showcase-title {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.showcase-title em {
    font-style: italic;
    font-weight: 400;
}

.showcase-subtitle {
    font-size: 2.5rem;
    color: rgba(26, 26, 46, 0.5);
    font-family: 'Playfair Display', serif;
    margin-top: 0;
}

/* ========================================
   ANIMATED CARDS SLIDER
   ======================================== */
.cards-slider {
    position: relative;
    padding: 40px 0 100px;
    overflow: hidden;
}

.cards-track {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cards-row {
    display: flex;
    align-items: center;
    gap: 25px;
    width: max-content;
}

.cards-row.row-1 {
    animation: cardsSlideLeft 45s linear infinite;
}

.cards-row.row-2 {
    animation: cardsSlideRight 50s linear infinite;
}

@keyframes cardsSlideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes cardsSlideRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause on hover */
.cards-slider:hover .cards-row {
    animation-play-state: paused;
}

/* Gradient fade edges */
.cards-slider::before,
.cards-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 10;
    pointer-events: none;
}

.cards-slider::before {
    left: 0;
    background: linear-gradient(90deg, #d0d0d0 0%, transparent 100%);
}

.cards-slider::after {
    right: 0;
    background: linear-gradient(-90deg, #d0d0d0 0%, transparent 100%);
}

/* Showcase Card Styles */
.showcase-card {
    position: relative;
    width: 340px;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Card Image */
.showcase-card .card-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.showcase-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
    filter: grayscale(100%) brightness(0.85) contrast(1.1);
}

/* Card Overlay */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Shine Effect */
.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

/* Card Hover Effects */
.showcase-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.25),
        0 15px 30px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.showcase-card:hover .card-image img {
    transform: scale(1.1);
    filter: grayscale(70%) brightness(0.9) contrast(1.05);
}

.showcase-card:hover .card-overlay {
    transform: translateY(0);
}

.showcase-card:hover .card-shine {
    left: 150%;
}

/* Card Border Animation */
.showcase-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.2)
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.showcase-card:hover::before {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .showcase-card {
        width: 260px;
        height: 180px;
    }
    
    .cards-row {
        gap: 15px;
    }
    
    .cards-slider::before,
    .cards-slider::after {
        width: 100px;
    }
}

/* Curved Separator */
.curve-separator {
    position: relative;
    margin-top: -50px;
}

.curve-separator svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* Legacy showcase styles (kept for compatibility) */
.title-line {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 30px auto 0;
}

.showcase-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    opacity: 0.3;
}

.tagline {
    color: rgba(255, 255, 255, 0.6);
    margin: 15px 0 30px;
}

/* About Section */
.about-section {
    padding: 0 0 100px;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

/* About Tabs Navigation */
.about-tabs {
    position: sticky;
    top: 70px;
    z-index: 10;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0;
}

.about-tabs-inner {
    display: flex;
    gap: 0;
}

.about-tab {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 30px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.about-tab:last-child {
    border-right: none;
}

.about-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #6a6a6a, #9a9a9a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.about-tab.active {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.03);
}

.about-tab.active::after {
    transform: scaleX(1);
}

.about-tab:hover {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.02);
}

.tab-num {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.5;
}

.about-tab.active .tab-num {
    opacity: 1;
}

.tab-label {
    font-weight: 500;
}

/* About Pages Container */
.about-pages {
    position: relative;
    min-height: 500px;
}

.about-page {
    display: none;
    padding: 80px 0 0;
    animation: aboutPageIn 0.5s ease forwards;
}

.about-page.active {
    display: block;
}

@keyframes aboutPageIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Page Dots */
.about-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 50px 0 0;
}

.about-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.about-dot.active {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.about-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* About Arrows */
.about-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
}

.about-arrow:hover {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
}

.about-arrow svg {
    width: 22px;
    height: 22px;
}

.about-arrow-prev {
    left: 20px;
}

.about-arrow-next {
    right: 20px;
}

/* About Intro */
.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.about-intro .section-title {
    color: var(--white);
    font-size: 2.8rem;
}

.section-title-sm {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--white);
}

.section-title-sm .highlight {
    color: #a0a0a0;
}

/* About Process Steps */
.about-process {
    margin-top: 80px;
}

.about-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.about-step {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4a4a4a, #8a8a8a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.about-step:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.about-step:hover::before {
    transform: scaleX(1);
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    font-style: italic;
}

.about-step h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-step p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* Vision (inside about page) */
.vision-section {
    padding: 100px 0;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vision-content .section-title {
    font-size: 2.5rem;
    color: var(--white);
}

.vision-content .section-title .highlight {
    color: #a0a0a0;
}

.vision-text {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 20px;
}

.vision-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.vision-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Goals (inside about page) */
.goals-section {
    padding: 100px 0;
    background: #1a1a1a;
    position: relative;
}

.goals-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.goals-header {
    text-align: left;
}

.goals-header .section-title {
    color: var(--white);
}

.goals-header .section-title .highlight {
    color: #a0a0a0;
}

.goals-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 15px;
}

.goals-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.goals-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(0.85);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.goals-image:hover img {
    transform: scale(1.03);
    filter: brightness(0.95);
}

.goals-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.goal-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.goal-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.goal-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.goal-card:hover .goal-icon {
    background: rgba(255, 255, 255, 0.12);
}

.goal-icon svg {
    width: 28px;
    height: 28px;
    color: #b0b0b0;
}

.goal-card h3 {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

/* Section Background Decorations */
.section-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
}

.bg-shape.shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    top: -150px;
    right: -150px;
    animation: float 20s ease-in-out infinite;
}

.bg-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    bottom: -100px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

.bg-shape.shape-3 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(100, 100, 100, 0.1) 0%, rgba(100, 100, 100, 0.02) 100%);
    top: -200px;
    left: -200px;
    animation: float 22s ease-in-out infinite;
}

.bg-shape.shape-4 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, rgba(100, 100, 100, 0.08) 0%, rgba(100, 100, 100, 0.02) 100%);
    bottom: -150px;
    right: -150px;
    animation: float 28s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(20px, -20px) rotate(5deg);
    }
    66% {
        transform: translate(-10px, 10px) rotate(-3deg);
    }
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(100, 100, 100, 0.08) 1px, transparent 0);
    background-size: 40px 40px;
}

.bg-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(100, 100, 100, 0.06) 2px, transparent 0);
    background-size: 50px 50px;
}

/* Floating Geometric Elements */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    opacity: 0.15;
}

.floating-shape.square {
    width: 60px;
    height: 60px;
    border: 3px solid var(--primary);
    animation: floatRotate 15s ease-in-out infinite;
}

.floating-shape.square-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-shape.square-2 {
    top: 60%;
    right: 8%;
    animation-delay: -5s;
}

.floating-shape.circle {
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    animation: floatBounce 12s ease-in-out infinite;
}

.floating-shape.circle-1 {
    top: 20%;
    right: 15%;
    animation-delay: -2s;
}

.floating-shape.circle-2 {
    bottom: 25%;
    left: 10%;
    animation-delay: -7s;
}

.floating-shape.triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 45px solid var(--primary);
    opacity: 0.1;
    animation: floatRotate 18s ease-in-out infinite reverse;
}

.floating-shape.triangle-1 {
    top: 40%;
    left: 3%;
    animation-delay: -3s;
}

.floating-shape.triangle-2 {
    bottom: 15%;
    right: 5%;
    animation-delay: -10s;
}

.floating-shape.plus {
    width: 40px;
    height: 40px;
    position: absolute;
    animation: floatBounce 14s ease-in-out infinite;
}

.floating-shape.plus::before,
.floating-shape.plus::after {
    content: '';
    position: absolute;
    background: var(--primary);
}

.floating-shape.plus::before {
    width: 100%;
    height: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.floating-shape.plus::after {
    width: 4px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.floating-shape.plus-1 {
    top: 15%;
    left: 25%;
    animation-delay: -4s;
}

.floating-shape.plus-2 {
    bottom: 30%;
    right: 20%;
    animation-delay: -9s;
}

@keyframes floatRotate {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(15px, -25px) rotate(90deg);
    }
    50% {
        transform: translate(-10px, -40px) rotate(180deg);
    }
    75% {
        transform: translate(-20px, -15px) rotate(270deg);
    }
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

/* Section Divider Wave */
.section-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.section-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.section-wave .shape-fill {
    fill: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-subtitle {
    color: #a0a0a0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-section .section-title {
    color: var(--white);
}

.about-section .section-title .highlight {
    color: #a0a0a0;
}

.about-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 15px;
}

.about-text + .about-text {
    margin-top: 12px;
}

.about-text {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.about-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.about-images {
    position: relative;
}

.about-img-main {
    position: relative;
}

.about-img-main::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
}

.about-img-main img {
    width: 100%;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

.about-img-main:hover img {
    transform: scale(1.02);
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.about-img-secondary img {
    width: 100%;
}

.experience-badge {
    position: absolute;
    top: 40px;
    right: -20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    color: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.exp-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.exp-text {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: 
        linear-gradient(45deg, transparent 49.5%, rgba(100, 100, 100, 0.03) 49.5%, rgba(100, 100, 100, 0.03) 50.5%, transparent 50.5%),
        linear-gradient(45deg, transparent 49.5%, rgba(100, 100, 100, 0.02) 49.5%, rgba(100, 100, 100, 0.02) 50.5%, transparent 50.5%),
        #ebebeb;
    background-size: 60px 60px, 100px 100px, 100% 100%;
    position: relative;
    overflow: hidden;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid #eef0f2;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(100, 100, 100, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #6a6a6a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(100, 100, 100, 0.3);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 0;
}

.service-features li {
    color: var(--gray);
    font-size: 0.9rem;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 10px;
}

/* Service Detail Sections */
.service-detail-section {
    padding: 100px 0;
    background: var(--white);
}

.service-detail-section.alt-bg {
    background: var(--light);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.detail-badge {
    display: inline-block;
    background: var(--dark);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.detail-intro {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.advantage-list h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.advantage-list ul {
    list-style: none;
    padding: 0;
}

.advantage-list ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--gray);
}

.advantage-list ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.services-offered {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offered-item {
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}

.alt-bg .offered-item {
    background: var(--white);
}

.offered-item h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.offered-item p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.capability-card {
    background: var(--light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.capability-card h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.capability-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.6) 0%, rgba(30, 30, 30, 0.65) 100%),
                url('images/Gemini_Generated_Image_yp8xv6yp8xv6yp8x.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.process-section .section-header.light .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 3px;
}

.process-section .section-header.light .section-title {
    color: var(--white);
}

.process-section .section-header.light .section-title .highlight {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.process-card {
    background: rgba(30, 30, 30, 0.55);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px 35px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-card:hover {
    background: rgba(40, 40, 40, 0.7);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
}

.process-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.25);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.process-content h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.process-content p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    line-height: 1.6;
}

.process-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.process-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

/* ========================================
   JOIN US SECTION (Paged)
   ======================================== */
.joinus-section {
    padding: 0 0 100px;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

/* Join Us Tabs */
.joinus-tabs {
    position: sticky;
    top: 70px;
    z-index: 10;
    background: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.joinus-tabs-inner {
    display: flex;
    gap: 0;
}

.joinus-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 30px;
    background: none;
    border: none;
    color: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.joinus-tab:last-child {
    border-right: none;
}

.joinus-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #4a4a4a, #8a8a8a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.joinus-tab.active {
    color: rgba(0, 0, 0, 0.85);
    background: rgba(0, 0, 0, 0.02);
}

.joinus-tab.active::after {
    transform: scaleX(1);
}

.joinus-tab:hover {
    color: rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.01);
}

.joinus-tab .tab-icon {
    display: flex;
    align-items: center;
}

.joinus-tab .tab-icon svg {
    width: 20px;
    height: 20px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.joinus-tab.active .tab-icon svg {
    opacity: 1;
}

/* Join Us Pages */
.joinus-pages {
    position: relative;
    min-height: 400px;
}

.joinus-page {
    display: none;
    padding: 70px 0 0;
    animation: joinusPageIn 0.5s ease forwards;
}

.joinus-page.active {
    display: block;
}

@keyframes joinusPageIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Join Us Hero Block */
.joinus-hero-block {
    margin-bottom: 50px;
}

.joinus-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 20px;
}

.joinus-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

/* Join Us Content Block */
.joinus-content-block {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.joinus-text p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.joinus-text p:last-child {
    margin-bottom: 0;
}

/* Highlight Cards */
.joinus-highlights {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.joinus-highlight-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 25px;
    transition: all 0.3s ease;
}

.joinus-highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.highlight-icon svg {
    width: 20px;
    height: 20px;
    color: #6a6a6a;
}

.joinus-highlight-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.joinus-highlight-card p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.5;
}

/* CTA */
.joinus-cta {
    margin-top: 50px;
}

/* Join Us Dots */
.joinus-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 50px 0 0;
}

.joinus-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.joinus-dot.active {
    background: rgba(0, 0, 0, 0.55);
    transform: scale(1.2);
}

.joinus-dot:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Join Us Arrows */
.joinus-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.45);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
}

.joinus-arrow:hover {
    background: rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.75);
    border-color: rgba(0, 0, 0, 0.15);
}

.joinus-arrow svg {
    width: 22px;
    height: 22px;
}

.joinus-arrow-prev {
    left: 20px;
}

.joinus-arrow-next {
    right: 20px;
}

/* Stats Section */
/* Quote Section */
.quote-section {
    padding: 100px 0 120px;
    background: #f5f5f5;
}

.quote-header {
    max-width: 650px;
    margin-bottom: 60px;
}

.quote-header .section-title {
    font-size: 2.5rem;
    color: var(--dark);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.25;
}

.quote-header .section-title .highlight {
    color: #6a6a6a;
}

.quote-header-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c8956c, #d4a574);
    margin-top: 25px;
    border-radius: 2px;
}

.quote-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #2c4a5c;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.quote-stats-side {
    padding: 50px 40px;
    display: flex;
    align-items: center;
}

.quote-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
}

.quote-stat {
    padding: 30px 25px;
    text-align: center;
    color: var(--white);
    position: relative;
}

/* Vertical divider between columns */
.quote-stat:nth-child(odd)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

/* Horizontal divider between rows */
.quote-stat:nth-child(1)::before,
.quote-stat:nth-child(2)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 70%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.quote-stat-num {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    display: inline;
}

.quote-stat-suffix {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.quote-stat p {
    opacity: 0.65;
    margin-top: 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-form-side {
    padding: 50px 45px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-form-title {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.quote-form-group input,
.quote-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
}

.quote-form-group input::placeholder,
.quote-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.quote-form-group input:focus,
.quote-form-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.quote-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.quote-form .btn-full {
    margin-top: 5px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #ebebeb;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-text {
    color: var(--gray);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.contact-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Contact Stats */
.contact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 45px;
    padding-top: 35px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-stat {
    text-align: center;
    padding: 10px 5px;
    position: relative;
}

.contact-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(0, 0, 0, 0.08);
}

.contact-stat-num {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--dark);
    display: inline;
}

.contact-stat-suffix {
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--dark);
}

.contact-stat p {
    margin-top: 6px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    opacity: 0.7;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef0f2;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(100, 100, 100, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(100, 100, 100, 0.5);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* ========================================
   TRUST & RESULTS SECTION
   ======================================== */
.trust-section {
    padding: 100px 0;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

/* Client Logos Bar */
.clients-bar {
    text-align: center;
    margin-bottom: 80px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.clients-label {
    color: var(--gray);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.client-logo {
    opacity: 0.4;
    transition: all 0.3s ease;
    padding: 15px 25px;
}

.client-logo:hover {
    opacity: 1;
}

.client-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1px;
}

/* Why Choose Us / Differentiators */
.why-choose-us {
    margin-bottom: 80px;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.diff-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a4a4a, #8a8a8a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.diff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.diff-card:hover::before {
    transform: scaleX(1);
}

.diff-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.diff-card:hover .diff-icon {
    background: rgba(255, 255, 255, 0.15);
}

.diff-icon svg {
    width: 28px;
    height: 28px;
    color: #b0b0b0;
    transition: all 0.3s ease;
}

.diff-card:hover .diff-icon svg {
    color: white;
}

.diff-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.diff-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.diff-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonials-slider {
    position: relative;
    min-height: 300px;
    flex: 1;
    min-width: 0;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-content {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
}

.quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 30px;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.testimonial-rating {
    margin-left: auto;
}

.testimonial-rating span {
    color: #9a9a9a;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary);
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonial-btn:hover {
    background: var(--primary);
}

.testimonial-btn svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.testimonial-btn:hover svg {
    color: white;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(100, 100, 100, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Footer */
.footer {
    position: relative;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 120px;
    color: #f5f5f5;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 150px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand-section {
    padding-right: 40px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 25px;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo .logo-icon svg {
    width: 100%;
    height: 100%;
    color: white;
}

.footer-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.footer-newsletter h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.newsletter-form {
    position: relative;
}

.newsletter-input-wrap {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.newsletter-input-wrap:focus-within {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-input-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 24px;
    color: white;
    font-size: 0.95rem;
    outline: none;
}

.newsletter-input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input-wrap button {
    background: var(--primary);
    border: none;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-input-wrap button:hover {
    background: var(--primary-light);
}

.newsletter-input-wrap button svg {
    width: 20px;
    height: 20px;
    color: white;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-nav-col h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-nav-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-nav-col ul {
    list-style: none;
}

.footer-nav-col ul li {
    margin-bottom: 14px;
}

.footer-nav-col ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-nav-col ul a:hover {
    color: white;
}

.footer-nav-col ul a .link-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--primary-light);
}

.footer-nav-col ul a:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-contact-link:hover {
    color: white;
}

.footer-address {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.contact-icon {
    font-size: 1rem;
}

.footer-social {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
}

.footer-bottom-left p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-right a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: white;
}

.footer-bottom-right .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Footer Decorations */
.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-float {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.footer-float.float-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.footer-float.float-2 {
    width: 300px;
    height: 300px;
    background: white;
    bottom: 50px;
    left: -100px;
}

.footer-float.float-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-light);
    bottom: -50px;
    right: 20%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-item.large,
    .showcase-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .about-grid,
    .contact-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-tab {
        padding: 16px 20px;
        font-size: 0.75rem;
    }
    
    .tab-num {
        font-size: 0.95rem;
    }
    
    .about-arrow {
        display: none;
    }
    
    .joinus-content-block {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .joinus-arrow {
        display: none;
    }
    
    .service-detail-grid.reverse {
        direction: ltr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .about-process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .goals-top-grid {
        gap: 40px;
    }

    .goals-image img {
        height: 280px;
    }

    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vision-grid {
        gap: 50px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quote-card {
        grid-template-columns: 1fr;
    }
    
    .quote-form-side {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Device slider responsive */
    .device-row {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .device.laptop .device-frame {
        width: 250px;
    }
    
    .device.laptop .device-screen {
        height: 150px;
    }
    
    .device.laptop.large .device-frame {
        width: 320px;
    }
    
    .device.laptop.large .device-screen {
        height: 190px;
    }
    
    .showcase-title {
        font-size: 2.5rem;
    }
    
    .showcase-subtitle {
        font-size: 2rem;
    }
    
    /* Trust Section Responsive */
    .differentiators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer Responsive */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-brand-section {
        padding-right: 0;
    }
    
    .footer-nav {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .navbar .btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 0;
    }
    
    .contact-stat:nth-child(2)::after {
        display: none;
    }
    
    .contact-stat-num {
        font-size: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-detail-content h2 {
        font-size: 1.8rem;
    }
    
    .stat-num {
        font-size: 2.5rem;
    }
    
    .about-img-secondary {
        display: none;
    }
    
    .experience-badge {
        position: relative;
        right: auto;
        top: auto;
        margin-top: 20px;
        display: inline-block;
    }
    
    /* New sections responsive */
    .about-process-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-intro .section-title {
        font-size: 2rem;
    }
    
    .section-title-sm {
        font-size: 1.5rem;
    }
    
    .about-tabs-inner {
        flex-direction: column;
    }
    
    .about-tab {
        padding: 14px 20px;
        font-size: 0.75rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .about-tab:last-child {
        border-bottom: none;
    }
    
    .about-arrow {
        display: none !important;
    }
    
    .about-page {
        padding: 50px 0 0;
    }
    
    /* Join Us mobile */
    .joinus-tabs-inner {
        flex-direction: column;
    }
    
    .joinus-tab {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        justify-content: flex-start;
        padding: 16px 20px;
    }
    
    .joinus-tab:last-child {
        border-bottom: none;
    }
    
    .joinus-arrow {
        display: none !important;
    }
    
    .joinus-page {
        padding: 40px 0 0;
    }
    
    .joinus-title {
        font-size: 2rem;
    }
    
    .joinus-content-block {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vision-image {
        order: -1;
    }

    .goals-top-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .goals-header {
        text-align: center;
    }

    .goals-image img {
        height: 250px;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quote-header .section-title {
        font-size: 1.8rem;
    }
    
    .quote-card {
        grid-template-columns: 1fr;
    }
    
    .quote-stats-side {
        padding: 30px 20px;
    }
    
    .quote-form-side {
        padding: 30px 20px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .quote-form-row {
        grid-template-columns: 1fr;
    }
    
    .quote-stat-num {
        font-size: 2rem;
    }

    /* Device slider mobile */
    .device-slider {
        padding: 20px 0 60px;
    }
    
    .device-row {
        gap: 15px;
        padding: 0 10px;
    }
    
    .device-row.row-2 {
        display: none;
    }
    
    .device.phone .device-frame {
        width: 90px;
    }
    
    .device.phone .device-screen {
        height: 160px;
    }
    
    .device.tablet .device-frame {
        width: 140px;
    }
    
    .device.tablet .device-screen {
        height: 200px;
    }
    
    .device.laptop .device-frame {
        width: 180px;
    }
    
    .device.laptop .device-screen {
        height: 110px;
    }
    
    .device.laptop.large .device-frame {
        width: 220px;
    }
    
    .device.laptop.large .device-screen {
        height: 130px;
    }
    
    .showcase-title {
        font-size: 2rem;
    }
    
    .showcase-subtitle {
        font-size: 1.5rem;
    }
    
    .curve-separator {
        margin-top: -30px;
    }
    
    .curve-separator svg {
        height: 60px;
    }
    
    /* Trust Section Mobile */
    .clients-logos {
        gap: 20px;
    }
    
    .client-logo span {
        font-size: 1.2rem;
    }
    
    .differentiators-grid {
        grid-template-columns: 1fr;
    }
    
    .diff-card {
        padding: 30px 25px;
    }
    
    .diff-number {
        font-size: 2rem;
    }
    
    .testimonial-content {
        padding: 30px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .testimonial-rating {
        margin-left: 0;
    }
    
    /* Footer Mobile */
    .footer-content {
        padding: 100px 0 0;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-right {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 9999;
    width: 0;
    transition: width 0.1s linear;
}

/* Element Reveal Animations */
.element-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.element-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Section Visibility */
.section-visible .section-title,
.section-visible .section-subtitle {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Reveal */
[data-scroll] {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Navbar transition */
.navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero content fade on scroll */
.hero-content {
    transition: opacity 0.1s ease, transform 0.1s ease;
}

/* Stagger animations for children */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }
.service-card:nth-child(5) { transition-delay: 0.5s; }
.service-card:nth-child(6) { transition-delay: 0.6s; }

.process-card:nth-child(1) { transition-delay: 0.1s; }
.process-card:nth-child(2) { transition-delay: 0.2s; }
.process-card:nth-child(3) { transition-delay: 0.3s; }
.process-card:nth-child(4) { transition-delay: 0.4s; }

/* Page load animation */
body:not(.loaded) {
    overflow: hidden;
}

body.loaded .hero-content {
    opacity: 1;
}

/* ================================================
   SERVICE PAGE STYLES
   ================================================ */

/* Service Hero */
.service-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 62, 80, 0.9) 0%, rgba(100, 100, 100, 0.85) 100%);
}

.service-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 60px 20px;
}

.service-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-hero h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Introduction Section */
.service-intro-section {
    padding: 100px 0;
    background: #f5f5f5;
}

.service-intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.intro-lead {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-intro-content p {
    color: var(--gray);
    line-height: 1.8;
}

.service-intro-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.intro-stat {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eef0f2;
}

.intro-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(45, 62, 80, 0.1);
}

.intro-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.intro-stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 5px;
}

/* Service Advantages */
.service-advantages {
    padding: 100px 0;
    background: #f0f2f4;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eef0f2;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(45, 62, 80, 0.12);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.advantage-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
}

.advantage-card h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.advantage-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Service Capabilities */
.service-capabilities {
    padding: 100px 0;
    background: #f5f5f5;
}

.capabilities-detailed {
    margin-top: 50px;
}

.capability-item {
    display: flex;
    gap: 40px;
    padding: 50px 0;
    border-bottom: 1px solid var(--gray-light);
}

.capability-item:last-child {
    border-bottom: none;
}

.capability-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gray-light);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    min-width: 100px;
}

.capability-content h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.capability-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.capability-content ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    list-style: none;
}

.capability-content ul li {
    color: var(--dark);
    font-size: 0.95rem;
    padding-left: 25px;
    position: relative;
}

.capability-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

/* Service Use Cases */
.service-usecases {
    padding: 100px 0;
    background: var(--dark);
}

.service-usecases .section-header.light .section-title,
.service-usecases .section-header.light .section-subtitle {
    color: var(--white);
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.usecase-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usecase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.usecase-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.usecase-content {
    padding: 25px;
}

.usecase-content h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.usecase-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Service CTA */
.service-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    text-align: center;
}

.service-cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.service-cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Service Page Responsive */
@media (max-width: 1024px) {
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .service-intro-stats {
        flex-direction: row;
        justify-content: center;
    }
    
    .intro-stat {
        flex: 1;
        max-width: 200px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero {
        min-height: 50vh;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-hero p {
        font-size: 1rem;
    }
    
    .service-intro-section {
        padding: 60px 0;
    }
    
    .service-intro-content h2 {
        font-size: 2rem;
    }
    
    .service-intro-stats {
        flex-direction: column;
    }
    
    .intro-stat {
        max-width: none;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .capability-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .capability-number {
        font-size: 3rem;
        min-width: auto;
    }
    
    .capability-content ul {
        grid-template-columns: 1fr;
    }
    
    .usecases-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-cta-content h2 {
        font-size: 2rem;
    }
}
