/* ============================================
   Overlook Global - Enterprise Corporate Website
   Design System & Styles
   ============================================ */

/* CSS Variables - Design System */
:root {
  /* Primary Brand Colors */
  --color-primary: #0E2A47;        /* Logo-matched navy */
  --color-primary-dark: #091F35;
  --color-primary-light: #163B5F;

  /* Accent (CTA / Links) */
  --color-accent: #1F4F82;         /* Strong but not flashy */

  /* Text Colors */
  --color-text: #1E2933;           /* Body text (softer than black) */
  --color-text-light: #4A5A6A;     /* Paragraphs */
  --color-text-muted: #7A8896;     /* Small text / captions */

  /* Hero-specific */
  --color-hero-heading: #0E2A47;
  --color-hero-text: #3E4C59;

  /* Backgrounds */
  --color-background: #FFFFFF;
  --color-background-off: #F8FAFC;

  /* Borders */
  --color-border: #E2E8F0;
  --color-border-light: #F1F5F9;

   /* HERO COLORS (OVERRIDE ONLY FOR HERO) */
  --hero-bg-start: #F8FAFC;
  --hero-bg-end: #EEF2F7;


    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing Scale */
    --spacing-xs: 0.5rem;    /* 8px */
    --spacing-sm: 1rem;      /* 16px */
    --spacing-md: 1.5rem;    /* 24px */
    --spacing-lg: 2rem;      /* 32px */
    --spacing-xl: 3rem;      /* 48px */
    --spacing-2xl: 4rem;     /* 64px */
    --spacing-3xl: 6rem;     /* 96px */
    --spacing-4xl: 8rem;     /* 128px */
    
    /* Typography Scale */
    --font-size-xs: 0.75rem;     /* 12px */
    --font-size-sm: 0.875rem;    /* 14px */
    --font-size-base: 1rem;      /* 16px */
    --font-size-lg: 1.125rem;    /* 18px */
    --font-size-xl: 1.25rem;     /* 20px */
    --font-size-2xl: 1.5rem;     /* 24px */
    --font-size-3xl: 1.875rem;   /* 30px */
    --font-size-4xl: 2.25rem;    /* 36px */
    --font-size-5xl: 3rem;       /* 48px */
    --font-size-6xl: 3.75rem;    /* 60px */
    
    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    /* Layout */
    --container-max-width: 1280px;
    --header-height: 80px;
    --border-radius: 4px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--color-text);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    html {
        font-size: 15px;
    }
}

/* ============================================
   Header & Navigation
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
   
    
    z-index: 1000;
    transition: all var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
    background-color: rgba(255, 255, 255, 0.95);
   /*  border-bottom: 1px solid var(--color-border-light); */
     backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

/* Logo */
.logo-link {
    text-decoration: none;
    color: var(--color-primary);
    display: flex;
    flex-direction: column;
    transition: opacity var(--transition-fast);
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-text {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
    line-height: var(--line-height-tight);
}

.logo-legal {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-regular);
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.01em;
    position: relative;
    transition: color var(--transition-fast);
    padding: var(--spacing-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--color-primary);
}

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

.nav-link.active {
    color: var(--color-primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

/* Login Button */
.btn-login {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-lg);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    background-color: var(--color-primary);
    color: var(--color-background);
    border-radius: 6px;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-login:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    transition: all var(--transition-base);
}

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

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

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

/* Mobile Navigation */
@media (max-width: 1024px) {
    .nav-list {
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .header {
        height: 70px;
    }
    
    .header-content {
        padding: var(--spacing-xs) 0;
    }
    
    .logo-link img {
        width: 140px !important;
    }
    
    .btn-login {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: var(--font-size-xs);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--color-background);
        border-bottom: 1px solid var(--color-border);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-base);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .nav.active {
        max-height: 350px;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
    }
    
    .nav-link {
        width: 100%;
        padding: var(--spacing-sm) 0;
        font-size: var(--font-size-base);
    }
}

@media (max-width: 480px) {
    .header {
        height: 65px;
    }
    
    .nav {
        top: 65px;
    }
    
    .logo-link img {
        width: 120px !important;
    }
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    padding-bottom: calc(var(--spacing-4xl) + 80px); /* Extra padding for scroll indicator */
    background: linear-gradient(
    135deg,
    var(--hero-bg-start) 0%,
    var(--hero-bg-end) 100%
    );
    overflow: hidden;
}

/* Hero Background with Animated Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.1), rgba(44, 82, 130, 0.05));
    animation: float 20s infinite ease-in-out;
}

.particle-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 30s;
}

.particle-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 35s;
}

.particle-4 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
    animation-duration: 20s;
}

.particle-5 {
    width: 100px;
    height: 100px;
    bottom: 40%;
    right: 10%;
    animation-delay: 3s;
    animation-duration: 28s;
}

.particle-6 {
    width: 70px;
    height: 70px;
    top: 70%;
    left: 50%;
    animation-delay: 5s;
    animation-duration: 32s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -50px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, -100px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translate(-40px, -30px) rotate(270deg);
        opacity: 0.6;
    }
}

/* Geometric Shapes */
.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 2px solid rgba(10, 37, 64, 0.08);
    animation: rotate 30s infinite linear;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    border-radius: 50% 0 50% 50%;
    animation-duration: 40s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    border-radius: 0 50% 50% 50%;
    animation-duration: 35s;
    animation-direction: reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-duration: 25s;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.1), rgba(44, 82, 130, 0.05));
    animation: float 20s infinite ease-in-out;
}

.particle-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 30s;
}

.particle-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 35s;
}

.particle-4 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
    animation-duration: 20s;
}

.particle-5 {
    width: 100px;
    height: 100px;
    bottom: 40%;
    right: 10%;
    animation-delay: 3s;
    animation-duration: 28s;
}

.particle-6 {
    width: 70px;
    height: 70px;
    top: 70%;
    left: 50%;
    animation-delay: 5s;
    animation-duration: 32s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -50px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, -100px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translate(-40px, -30px) rotate(270deg);
        opacity: 0.6;
    }
}

/* Geometric Shapes */
.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 2px solid rgba(10, 37, 64, 0.08);
    animation: rotate 30s infinite linear;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    border-radius: 50% 0 50% 50%;
    animation-duration: 40s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    border-radius: 0 50% 50% 50%;
    animation-duration: 35s;
    animation-direction: reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-duration: 25s;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Optional Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.50;
    object-fit: cover;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
   /*  max-width: 900px; */
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.hero-text-wrapper {
    position: relative;
}

.hero-headline {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.03em;
    overflow: hidden;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUpFade 1s ease forwards;
    text-align: center;
}

.hero-line-1 {
    animation-delay: 0.2s;
}

.hero-line-2 {
    animation-delay: 0.4s;
    
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtext {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-relaxed);
    color: #0E2A47;
  /*   margin-bottom: var(--spacing-2xl); */
   /*  max-width: 700px; */
    margin-left: auto;
    margin-right: auto;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease 0.8s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

.fade-in-delay-3{
    opacity: 0;
    animation: fadeIn 1s ease 1.7s forwards;
}

.hero-cta {
    margin-top: var(--spacing-xl);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-background);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
    pointer-events: auto;
}

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

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-primary);
    border-radius: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background-color: var(--color-primary);
    border-radius: 2px;
    animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-arrow {
    color: var(--color-primary);
    animation: bounceArrow 2s infinite ease-in-out;
    margin-top: var(--spacing-xs);
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

.scroll-text {
    font-size: var(--font-size-xs);
    color: var(--color-primary);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: var(--spacing-xs);
}

.scroll-indicator:hover {
    cursor: pointer;
}

.scroll-indicator:hover .scroll-mouse {
    border-color: var(--color-primary-dark);
}

.scroll-indicator:hover .scroll-wheel {
    background-color: var(--color-primary-dark);
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero {
        padding-bottom: calc(var(--spacing-3xl) + 80px);
    }
    
    .hero-headline {
        font-size: var(--font-size-5xl);
    }
    
    .hero-subtext {
        font-size: var(--font-size-lg);
    }
    
    .hero-content {
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: var(--header-height);
        padding-bottom: calc(var(--spacing-2xl) + 70px);
    }
    
    .hero-headline {
        font-size: var(--font-size-3xl);
        margin-bottom: var(--spacing-md);
    }
    
    .hero-subtext {
        font-size: var(--font-size-base);
        /* margin-bottom: var(--spacing-md); */
    }
    
    .hero-subtext-secondary {
        font-size: var(--font-size-sm);
        margin-top: var(--spacing-sm);
        margin-bottom: var(--spacing-md);
    }
    
    .hero-content {
        padding: var(--spacing-md) 0;
        margin-bottom: var(--spacing-lg);
    }
    
    .scroll-indicator {
        bottom: var(--spacing-md);
        position: relative;
        margin-top: var(--spacing-xl);
        transform: translateX(-50%);
    }
    
    .scroll-text {
        display: none;
    }
    
    .hero-cta {
        margin-top: var(--spacing-lg);
        margin-bottom: var(--spacing-xl);
    }
    
    .btn {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: var(--font-size-sm);
    }
}

@media (max-height: 700px) {
    .hero {
        padding-bottom: calc(var(--spacing-xl) + 60px);
    }
    
    .hero-content {
        padding: var(--spacing-sm) 0;
    }
    
    .hero-headline {
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-subtext {
        /* margin-bottom: var(--spacing-md); */
    }
    
    .hero-cta {
        margin-top: var(--spacing-md);
        margin-bottom: var(--spacing-lg);
    }
    
    .scroll-indicator {
        bottom: var(--spacing-sm);
        margin-top: var(--spacing-md);
    }
}

@media (max-height: 600px) {
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: var(--font-size-2xl);
    }
    
    .hero-subtext {
        font-size: var(--font-size-sm);
    }
}

/* ============================================
   Section Styles
   ============================================ */

section {
    padding: var(--spacing-4xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.about-text .section-header {
    text-align: left;
        margin-bottom: 20px;
}

.section-label {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    letter-spacing: -0.02em;
    line-height: var(--line-height-tight);
}

.about-text .section-title {
    font-size: var(--font-size-3xl);
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    section {
        padding: var(--spacing-3xl) 0;
    }
    
    .section-title {
        font-size: var(--font-size-4xl);
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--spacing-2xl) 0;
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .section-header {
        margin-bottom: var(--spacing-2xl);
    }
}

@media (max-width: 480px) {
    section {
        padding: var(--spacing-xl) 0;
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .section-header {
        margin-bottom: var(--spacing-xl);
    }
}

/* ============================================
   About Section
   ============================================ */

.about {
    position: relative;
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-background-off) 100%);
    overflow: hidden;
    padding: var(--spacing-3xl) 0;
    padding-top: var(--spacing-4xl);
}

/* Animated Background Shapes */
.about-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.about-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(14, 42, 71, 0.05) 0%, rgba(31, 79, 130, 0.03) 100%);
    filter: blur(60px);
    animation: floatShape 20s infinite ease-in-out;
}

.about-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
    animation-duration: 25s;
}

.about-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: 3s;
    animation-duration: 30s;
}

.about-shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 6s;
    animation-duration: 35s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(50px, -50px) scale(1.1);
        opacity: 0.7;
    }
}

.about-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-text-wrapper {
    position: relative;
    transform: translateX(-20px);
    opacity: 0;
    animation: textWrapperAppear 0.8s ease 0.2s forwards;
}

@keyframes textWrapperAppear {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* About Badge */
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-primary);
    background: rgba(14, 42, 71, 0.08);
    border: 1px solid rgba(14, 42, 71, 0.15);
    border-radius: 50px;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: slideInLeft 0.8s ease forwards;
    opacity: 0;
}

.about-badge svg {
    width: 16px;
    height: 16px;
    animation: rotateIcon 3s infinite ease-in-out;
}

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

@keyframes rotateIcon {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

.about-text {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-light);
}

.lead-text {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    line-height: var(--line-height-relaxed);
}

.about-text p {
    margin-bottom: var(--spacing-sm);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpStagger 0.8s ease forwards;
}

.about-text p:nth-child(2) {
    animation-delay: 0.2s;
}

.about-text p:nth-child(3) {
    animation-delay: 0.4s;
}

.about-text p:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes fadeInUpStagger {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Features */
.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border-light);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeftStagger 0.6s ease forwards;
}

.feature-item:nth-child(1) {
    animation-delay: 0.8s;
}

.feature-item:nth-child(2) {
    animation-delay: 1s;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(14, 42, 71, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

@keyframes slideInLeftStagger {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 42, 71, 0.1) 0%, rgba(31, 79, 130, 0.05) 100%);
    border-radius: 12px;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(14, 42, 71, 0.15) 0%, rgba(31, 79, 130, 0.1) 100%);
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-text strong {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
}

.feature-text span {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

/* About Visual - Stats */
.about-visual {
    position: relative;
}

.visual-container {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 60px rgba(14, 42, 71, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: containerAppear 1s ease 0.3s forwards;
}

@keyframes containerAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.visual-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    opacity: 0;
    animation: slideInTop 0.8s ease 0.5s forwards;
}

@keyframes slideInTop {
    to {
        opacity: 1;
    }
}

.visual-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    width: 100%;
    position: relative;
    z-index: 1;
}

.stat-item {
    position: relative;
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px solid var(--color-border-light);
    text-align: center;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: statItemAppear 0.8s ease forwards;
}

.stat-item-1 {
    animation-delay: 0.3s;
}

.stat-item-2 {
    animation-delay: 0.5s;
}

.stat-item-3 {
    animation-delay: 0.7s;
}

@keyframes statItemAppear {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(14, 42, 71, 0.15),
                0 0 0 4px rgba(14, 42, 71, 0.05);
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--color-primary);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 42, 71, 0.03) 0%, rgba(31, 79, 130, 0.01) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 42, 71, 0.1) 0%, rgba(31, 79, 130, 0.05) 100%);
    border-radius: 14px;
    color: var(--color-primary);
    transition: all var(--transition-base);
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(14, 42, 71, 0.15) 0%, rgba(31, 79, 130, 0.1) 100%);
}

.stat-number {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-xs);
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-sm);
}

/* Progress Bar */
.stat-progress {
    width: 100%;
    height: 3px;
    background: var(--color-border-light);
    border-radius: 2px;
    overflow: hidden;
    margin-top: var(--spacing-sm);
}

.stat-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 2px;
    transition: width 2s ease;
    animation: progressFill 2s ease forwards;
}

.stat-item-1 .stat-progress-bar {
    animation-delay: 1s;
}

.stat-item-2 .stat-progress-bar {
    animation-delay: 1.2s;
}

.stat-item-3 .stat-progress-bar {
    animation-delay: 1.4s;
}

@keyframes progressFill {
    to {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-3xl);
    }
    
    .visual-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--spacing-lg);
    }
    
    .stat-item {
        flex: 1;
        min-width: 200px;
    }
    
    .stat-number {
        font-size: var(--font-size-4xl);
    }
}

@media (max-width: 768px) {
    .visual-content {
        flex-direction: column;
        gap: var(--spacing-xl);
    }
    
    .stat-item {
        min-width: 100%;
    }
    
    .about-features {
        gap: var(--spacing-sm);
    }
    
    .feature-item {
        padding: var(--spacing-sm);
    }
}

/* ============================================
   Services Section
   ============================================ */

.services {
    position: relative;
    background: linear-gradient(135deg, #0E2A47 0%, #163B5F 50%, #0E2A47 100%);
    padding: var(--spacing-2xl) 0;
    overflow: hidden;
}

/* Services Background */
.services-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    background-image:
        linear-gradient(
            rgba(14, 42, 71, 0.88),
            rgba(14, 42, 71, 0.88)
        ),
        url("../images/sevices_bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.services-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.4;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(40px, 40px);
    }
}

.services-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: gradientFloat 15s infinite ease-in-out;
}

.services-gradient-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(31, 79, 130, 0.4) 0%, transparent 70%);
    animation-delay: 0s;
}

.services-gradient-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(14, 42, 71, 0.4) 0%, transparent 70%);
    animation-delay: 3s;
}

@keyframes gradientFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.services-header-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-xl);
}

.services .section-header {
    text-align: center;
        margin-bottom: var(--spacing-2xl);
}

.services .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.services .section-title {
    color: #FFFFFF;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: var(--line-height-relaxed);
    font-weight: var(--font-weight-light);
    margin-top: var(--spacing-sm);
}

.services-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.service-card {
    position: relative;
    height: 100%;
    min-height: 260px;
    perspective: 1000px;
    opacity: 0;
    transform: translateY(40px);
    animation: serviceCardAppear 0.8s ease forwards;
}

.service-card-1 {
    animation-delay: 0.1s;
}

.service-card-2 {
    animation-delay: 0.2s;
}

.service-card-3 {
    animation-delay: 0.3s;
}

.service-card-4 {
    animation-delay: 0.4s;
}

.service-card-5 {
    animation-delay: 0.5s;
}

.service-card-6 {
    animation-delay: 0.6s;
}

@keyframes serviceCardAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card-inner {
    position: relative;
    height: 100%;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-card-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.service-card:hover .service-card-inner::after {
    opacity: 1;
}

.service-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    box-shadow: 0 2px 8px rgba(14, 42, 71, 0.3);
}

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

.service-card:hover .service-card-inner {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.3) inset,
                0 0 40px rgba(14, 42, 71, 0.1);
    background: rgba(255, 255, 255, 1);
}

.service-number {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: rgba(14, 42, 71, 0.08);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    transition: all var(--transition-base);
}

.service-card:hover .service-number {
    color: rgba(14, 42, 71, 0.12);
    transform: scale(1.1);
}

.service-icon-wrapper {
    margin-bottom: var(--spacing-md);
    position: relative;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 42, 71, 0.1) 0%, rgba(31, 79, 130, 0.05) 100%);
    border-radius: 14px;
    color: var(--color-primary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(14, 42, 71, 0.15) 0%, rgba(31, 79, 130, 0.1) 100%);
    color: var(--color-primary);
}

.service-card:hover .service-icon::after {
    opacity: 0.1;
}

.service-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    line-height: var(--line-height-tight);
    transition: color var(--transition-base);
}

.service-card:hover .service-title {
    color: var(--color-primary-dark);
}

.service-description {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    transition: color var(--transition-base);
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateX(0);
}

.service-link svg {
    transition: transform var(--transition-base);
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .service-card {
        min-height: 240px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: var(--spacing-xl) 0;
    }
    
    .services-header-wrapper {
        margin-bottom: var(--spacing-lg);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .service-card {
        min-height: 220px;
    }
    
    .service-card-inner {
        padding: var(--spacing-md);
    }
    
    .section-subtitle {
        font-size: var(--font-size-sm);
    }
}

/* ============================================
   Why Overlook Global Section
   ============================================ */

.why-overlook {
    position: relative;
    background-color: #ffffff;
    padding: var(--spacing-4xl) 0;
}

.why-overlook-wrapper {
    display: flex;
    justify-content: center;
    padding: 0 var(--spacing-lg);
}

.why-overlook-container {
    background-color: #FFFFFF;
    border-radius: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: var(--spacing-4xl) var(--spacing-3xl);
    max-width: 1200px;
    width: 100%;
}

/* Header */
.why-overlook-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.why-overlook-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.why-overlook-subtitle {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
}

.why-overlook-title {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    letter-spacing: -0.02em;
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-md);
}

.why-overlook-description {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Blocks Container */
.why-overlook-blocks {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

/* Individual Block */
.why-overlook-block {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-1xl);
    align-items: center;
    padding: var(--spacing-2xl) 0;
    border-radius: 300px 0px 0px 300px;
    overflow: hidden;
    background: linear-gradient(90deg, #0e2a4775 0%, #ffffff 60%);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease, background 0.5s ease;
}

.why-overlook-block.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.why-overlook-block:hover {
    /* box-shadow: 0 10px 40px rgba(14, 42, 71, 0.15); */
    transform: translateY(-5px);
    background: linear-gradient(90deg, #0e2a47a0 0%, #ffffff 60%);
}


/* Curved Abstract Shape (Blob) */
.why-overlook-blob {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50% 40% 60% 30% / 50% 60% 40% 50%;
    background: linear-gradient(135deg, rgba(14, 42, 71, 0.04) 0%, rgba(31, 79, 130, 0.02) 100%);
    filter: blur(50px);
    z-index: 0;
    opacity: 0.8;
    animation: blobFloat 8s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 50% 40% 60% 30% / 50% 60% 40% 50%;
    }
    25% {
        transform: translate(20px, -20px) scale(1.05);
        border-radius: 60% 50% 40% 50% / 40% 50% 60% 50%;
    }
    50% {
        transform: translate(-15px, 15px) scale(0.95);
        border-radius: 40% 60% 50% 40% / 60% 40% 50% 60%;
    }
    75% {
        transform: translate(10px, 10px) scale(1.02);
        border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%;
    }
}

.why-overlook-block-1 .why-overlook-blob {
    top: -80px;
    left: -80px;
}

.why-overlook-block-2 .why-overlook-blob {
    top: -80px;
    right: -80px;
}

.why-overlook-block-3 .why-overlook-blob {
    top: -80px;
    left: -80px;
}

.why-overlook-block.why-overlook-block-2{
        border-radius: 0px 300px 300px 0px;
        background: linear-gradient(268deg, #0e2a4775 0%, #ffffff 60%);
}

.why-overlook-block.why-overlook-block-2:hover {
    background: linear-gradient(268deg, #0e2a47a0 0%, #ffffff 60%);
}

/* Block Content */
.why-overlook-block-image,
.why-overlook-block-text {
    position: relative;
    z-index: 1;
}

/* Circular Image */
.why-overlook-block-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.why-overlook-block-image img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s ease;
    opacity: 0;
    transform: scale(0.8) rotate(-5deg);
}

.why-overlook-block.animate-in .why-overlook-block-image img {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.why-overlook-block:hover .why-overlook-block-image img {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 40px rgba(14, 42, 71, 0.2);
}

/* Block 2 - Image on Right */
.why-overlook-block-2 .why-overlook-block-image {
    order: 2;
}

.why-overlook-block-2 .why-overlook-block-text {
    order: 1;
    margin-left: 90px !important;
    margin-right: 0px !important;
}

/* Text Content */
.why-overlook-block-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-right: 90px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.why-overlook-block-2 .why-overlook-block-text {
    transform: translateX(30px);
}

.why-overlook-block.animate-in .why-overlook-block-text {
    opacity: 1;
    transform: translateX(0);
}

.why-overlook-block-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    letter-spacing: -0.01em;
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-xs);
    transition: color 0.3s ease;
}

.why-overlook-block:hover .why-overlook-block-title {
    color: #1F4F82;
}

.why-overlook-block-description {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
}

/* Button */
.why-overlook-btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: #FFFFFF;
    background-color: #1F4F82;
    border-radius: 20px;
    text-decoration: none;
    align-self: flex-start;
    margin-top: var(--spacing-xs);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.why-overlook-block.animate-in .why-overlook-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

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

.why-overlook-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(31, 79, 130, 0.3);
    background-color: #2563a8;
}

.why-overlook-btn:hover::before {
    width: 300px;
    height: 300px;
}

.why-overlook-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-overlook-container {
        padding: var(--spacing-3xl) var(--spacing-2xl);
    }
    
    .why-overlook-block {
        gap: var(--spacing-2xl);
        padding: var(--spacing-xl);
    }
    
    .why-overlook-block-image img {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 768px) {
    .why-overlook {
        padding: var(--spacing-2xl) 0;
    }
    
    .why-overlook-wrapper {
        padding: 0 var(--spacing-md);
    }
    
    .why-overlook-container {
        padding: var(--spacing-xl) var(--spacing-md);
        border-radius: 20px;
    }
    
    .why-overlook-header {
        margin-bottom: var(--spacing-xl);
    }
    
    .why-overlook-title {
        font-size: var(--font-size-3xl);
    }
    
    .why-overlook-description {
        font-size: var(--font-size-sm);
    }
    
    .why-overlook-blocks {
        gap: var(--spacing-xl);
    }
    
    .why-overlook-block {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: var(--spacing-lg);
        text-align: center;
        border-radius: 20px;
    }
    
    .why-overlook-block-2 {
        border-radius: 20px !important;
    }
    
    .why-overlook-block-2 .why-overlook-block-image {
        order: 1;
    }
    
    .why-overlook-block-2 .why-overlook-block-text {
        order: 2;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .why-overlook-block-image img {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .why-overlook-block-text {
        align-items: center;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    
    .why-overlook-block-title {
        font-size: var(--font-size-xl);
        text-align: center;
    }
    
    .why-overlook-block-description {
        text-align: center;
        font-size: var(--font-size-sm);
    }
    
    .why-overlook-btn {
        align-self: center;
    }
    
    .why-overlook-block-text,
    .why-overlook-block-2 .why-overlook-block-text {
        transform: translateY(20px);
    }
    
    .why-overlook-block.animate-in .why-overlook-block-text {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .why-overlook-container {
        padding: var(--spacing-lg) var(--spacing-sm);
        border-radius: 16px;
    }
    
    .why-overlook-title {
        font-size: var(--font-size-2xl);
    }
    
    .why-overlook-block {
        padding: var(--spacing-md);
        border-radius: 16px;
    }
    
    .why-overlook-block-image img {
        width: 160px;
        height: 160px;
    }
    
    .why-overlook-block-title {
        font-size: var(--font-size-lg);
    }
}

/* ============================================
   Latest News & Insights Section
   ============================================ */

.news-insights {
    position: relative;
    background: linear-gradient(135deg, #0e2a47 0%, #1a365d 100%);
    padding: var(--spacing-3xl) 0 var(--spacing-3xl) 0;
    overflow: hidden;
}

/* Background Elements */
.news-insights-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.news-insights-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(14, 42, 71, 0.03) 1px, transparent 0);
    background-size: 50px 50px;
    opacity: 0.6;
    animation: newsPatternMove 25s linear infinite;
}

@keyframes newsPatternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.news-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: newsGradientFloat 20s infinite ease-in-out;
}

.news-gradient-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(31, 79, 130, 0.08) 0%, transparent 70%);
    animation-delay: 0s;
}

.news-gradient-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(14, 42, 71, 0.06) 0%, transparent 70%);
    animation-delay: 5s;
}

@keyframes newsGradientFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.news-insights .container {
    position: relative;
    z-index: 1;
}

/* Header */
.news-insights-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.news-insights-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.news-insights-title {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    color: white;
    letter-spacing: -0.02em;
    line-height: var(--line-height-tight);
}

/* Slider Wrapper */
.news-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.news-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    gap: 2rem;
    width: 100%;
}

/* News Card */
.news-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(14, 42, 71, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: calc((100% - 2rem) / 2);
    width: calc((100% - 2rem) / 2);
    flex-shrink: 0;
    flex-grow: 0;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(14, 42, 71, 0.15);
}

/* Card Image Wrapper */
.news-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #0E2A47 0%, #163B5F 100%);
}

.news-card-image {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.news-card:hover .news-card-image img {
    transform: scale(1.1);
}

.news-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(14, 42, 71, 0.4) 100%);
    z-index: 2;
    transition: opacity 0.4s ease;
}

.news-card:hover .news-card-overlay {
    opacity: 0.7;
}

.news-card-category {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 20px;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 3;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Card Content */
.news-card-content {
    padding: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.news-card-date,
.news-card-read-time {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.news-card-date svg {
    width: 14px;
    height: 14px;
}

.news-card-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-md);
    transition: color 0.3s ease;
}

.news-card:hover .news-card-title {
    color: #1F4F82;
}

.news-card-excerpt {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: #1F4F82;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.news-card-link svg {
    transition: transform 0.3s ease;
}

.news-card-link:hover {
    color: var(--color-primary);
    gap: var(--spacing-sm);
}

.news-card-link:hover svg {
    transform: translateX(4px);
}

/* Slider Navigation Buttons */
.news-slider-btn {
    position: absolute;
    top: 43%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(14, 42, 71, 0.1);
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 42, 71, 0.1);
}

.news-slider-btn:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(14, 42, 71, 0.2);
}

.news-slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.news-slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.news-slider-btn:disabled:hover {
    background: #ffffff;
    color: var(--color-primary);
    transform: translateY(-50%) scale(1);
}

.news-slider-prev {
    left: var(--spacing-xs);
}

.news-slider-next {
    right: var(--spacing-xs);
}

.news-slider-btn svg {
    width: 20px;
    height: 20px;
}

/* Slider Dots */
.news-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-2xl);
    z-index: 5;
}

.news-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgb(255 255 255 / 20%);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.news-slider-dot.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

.news-slider-dot:hover {
    background: white;
}

/* News Section Responsive */
@media (max-width: 1024px) {
    .news-insights {
        padding: var(--spacing-2xl) 0;
    }
    
    .news-insights-title {
        font-size: var(--font-size-4xl);
    }
    
    .news-card {
        min-width: calc((100% - 1.5rem) / 2);
        width: calc((100% - 1.5rem) / 2);
    }
    
    .news-card-image-wrapper {
        height: 240px;
    }
    
    .news-slider-btn {
        width: 45px;
        height: 45px;
    }
    
    .news-slider-prev {
        left: var(--spacing-sm);
    }
    
    .news-slider-next {
        right: var(--spacing-sm);
    }
}

@media (max-width: 768px) {
    .news-insights {
        padding: var(--spacing-2xl) 0;
    }
    
    .news-insights-header {
        margin-bottom: var(--spacing-xl);
    }
    
    .news-insights-title {
        font-size: var(--font-size-3xl);
    }
    
    .news-card {
        min-width: 100%;
        width: 100%;
    }
    
    .news-slider-track {
        gap: 1rem;
    }
    
    .news-card-image-wrapper {
        height: 220px;
    }
    
    .news-card-content {
        padding: var(--spacing-lg);
    }
    
    .news-card-title {
        font-size: var(--font-size-xl);
    }
    
    .news-card-excerpt {
        font-size: var(--font-size-sm);
    }
    
    .news-slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .news-slider-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .news-insights-title {
        font-size: var(--font-size-2xl);
    }
    
    .news-card-image-wrapper {
        height: 200px;
    }
    
    .news-card-content {
        padding: var(--spacing-md);
    }
    
    .news-card-title {
        font-size: var(--font-size-lg);
    }
}

@media (max-width: 480px) {
    .news-card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
    
    .news-slider-btn {
        display: none;
    }
}

/* ============================================
   Contact Section - Clean Simple Form
   ============================================ */

.contact {
    background-color: var(--color-background);
    padding: var(--spacing-3xl) 0 var(--spacing-sm) 0;
}

.contact .section-header {
    margin-bottom: var(--spacing-2xl);
}

.contact .section-subtitle {
   font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-light);
    margin-top: var(--spacing-sm);
    max-width: 600px;
    margin-left: auto;
    font-weight: 500;
    margin-right: auto;
}

/* Contact Layout - Side by Side */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-4xl);
    align-items: stretch;
}

/* Contact Info Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
    justify-content: flex-start;
}

.contact-info-item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    border-radius: 10px;
    color: white;
    transition: transform var(--transition-base), background-color var(--transition-base);
}

.contact-info-item:hover .contact-icon {
    transform: translateY(-2px);
    background-color: var(--color-primary-dark);
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-xs);
    display: block;
}

.contact-value {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--color-text);
    margin: 0;
}

.contact-link {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    animation: slideUpFade 0.5s ease;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.form-label {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
    display: block;
    padding-left: 5px;
}

.form-input {
    width: 100%;
    padding: 10px 20px;
    font-size: var(--font-size-base);
    font-family: inherit;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    background-color: white;
    color: var(--color-text);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-input:hover {
    border-color: #CBD5E0;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(14, 42, 71, 0.08);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
    font-family: inherit;
}

.form-message {
    padding: var(--spacing-md);
    border-radius: 8px;
    font-size: var(--font-size-sm);
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--transition-base);
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-message.success {
    background: #F0FDF4;
    color: #166534;
    border: 1px solid #BBF7D0;
}

.form-message.error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-3xl);
    }
}

@media (max-width: 768px) {
    .contact {
        padding: var(--spacing-1xl) 0;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-info-item {
        gap: var(--spacing-md);
    }
    
    .form-input {
        padding: 14px 18px;
    }
}

/* ============================================
   Footer
   ============================================ */

.contact-sidebar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    opacity: 0.3;
}

.sidebar-content {
    position: relative;
    z-index: 1;
    color: white;
    width: 100%;
}

.sidebar-label {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: var(--spacing-md);
}

.sidebar-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: white;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.sidebar-description {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: var(--spacing-4xl);
}

.sidebar-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.info-item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    color: white;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.info-label {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.info-value {
    font-size: var(--font-size-base);
    color: white;
    line-height: 1.6;
}

.info-link {
    color: white;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.info-link:hover {
    opacity: 0.8;
}

/* Right Side - Form Section */
.contact-form-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

/* Progress Steps */
.form-progress {
    margin-bottom: var(--spacing-lg);
}

.progress-steps {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.progress-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    position: relative;
}

.progress-step::after {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(50% + 24px);
    right: calc(-50% + 24px);
    height: 2px;
    background: var(--color-border-light);
    z-index: 0;
}

.progress-step:last-child::after {
    display: none;
}

.progress-step.active::after,
.progress-step.completed::after {
    background: var(--color-primary);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-background);
    border: 2px solid var(--color-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-muted);
    position: relative;
    z-index: 1;
    transition: all var(--transition-base);
}

.progress-step.active .step-number {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.progress-step.completed .step-number {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.step-label {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-muted);
    text-align: center;
    transition: color var(--transition-base);
}

.progress-step.active .step-label {
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
}

/* Form Steps */
.premium-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

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

/* Form Card */
.form-card {
    background: white;
    border-radius: 20px;
    padding: var(--spacing-3xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.card-header {
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--color-border-light);
}

.card-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}

.contact-form button.btn.btn-primary {
    margin-top: 14px;
}

.card-subtitle {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    line-height: 1.6;
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    padding-top: var(--spacing-lg);
}

.btn-secondary {
    padding: 14px 28px;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    background: white;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-background-off);
}

.btn-primary {
    padding: 14px 32px;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: white;
    background: var(--color-primary);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-base);
    margin-right: auto;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: scale(1.02);
}

.btn-primary:active {
    transform: scale(0.98);
}

/* Form Message */
.form-message {
    padding: var(--spacing-lg);
    border-radius: 12px;
    font-size: var(--font-size-sm);
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--transition-base);
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-message.success {
    background: #F0FDF4;
    color: #166534;
    border: 1px solid #BBF7D0;
}

.form-message.error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}


@media (max-width: 768px) {
    .contact {
        padding: var(--spacing-3xl) 0;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-info-item {
        gap: var(--spacing-md);
    }
    
    .form-input {
        padding: 14px 18px;
    }
}

/* ============================================
   Footer
   ============================================ */

/* ============================================
   Footer - Real Estate Finance Style
   ============================================ */

.footer {
    background: linear-gradient(135deg, #0e2a47 0%, #1a365d 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    margin-top: var(--spacing-1xl);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-3xl);
    margin-bottom: 20px;
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Column */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-about {
    max-width: 320px;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: var(--spacing-sm);
}

.footer-logo .logo-text {
    color: #FFFFFF;
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
}

.footer-logo .logo-legal {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Footer Description */
.footer-description {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xs);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition-base);
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Footer Heading */
.footer-heading {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: #FFFFFF;
    margin: 0 0 var(--spacing-sm) 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Footer Link List */
.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-link-list li {
    margin: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-regular);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
    display: inline-block;
}

.footer-link:hover {
    color: #FFFFFF;
    padding-left: 4px;
}

/* Footer Contact */
.footer-contact-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
    color: #FFFFFF;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
}

.footer-copyright {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.footer-legal-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: var(--font-size-sm);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-2xl);
    }
    
    .footer-about {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: var(--spacing-2xl) 0 var(--spacing-lg);
        margin-top: var(--spacing-1xl);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        margin-bottom: var(--spacing-xl);
    }
    
    .footer-about {
        grid-column: 1;
    }
    
    .footer-logo img {
        width: 140px !important;
    }
    
    .footer-heading {
        font-size: var(--font-size-sm);
    }
    
    .footer-link {
        font-size: var(--font-size-xs);
    }
    
    .footer-contact-item {
        font-size: var(--font-size-xs);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-copyright,
    .footer-legal-link {
        font-size: var(--font-size-xs);
    }

    .footer-column {
        align-items: center;
        text-align: center;
    }
}

* {
}

@media (max-width: 480px) {
    .footer {
        padding: var(--spacing-xl) 0 var(--spacing-md);
    }
    
    .footer-main {
        gap: var(--spacing-xl);
    }
    
    .footer-logo img {
        width: 120px !important;
    }
    
    .footer-description {
        font-size: var(--font-size-xs);
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   Animations
   ============================================ */

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Utility Classes */
.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ============================================
   New Sections Styles
   ============================================ */

/* What We Do Section */
.what-we-do {
    padding: var(--spacing-3xl) 0;
    background: var(--color-background);
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.what-we-do-card {
    padding: var(--spacing-xl);
    background: var(--color-background-off);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.what-we-do-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.what-we-do-icon {
    width: 64px;
    height: 64px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: white;
}

.what-we-do-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.what-we-do-description {
    color: var(--color-text-light);
    line-height: var(--line-height-relaxed);
}

/* Philosophy Section */
.philosophy {
    padding: var(--spacing-3xl) 0;
    background: var(--color-background-off);
}

.philosophy-content {
    max-width: 900px;
    margin: var(--spacing-2xl) auto 0;
}

.philosophy-text {
    margin-bottom: var(--spacing-2xl);
}

.philosophy-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.principle-card {
    padding: var(--spacing-xl);
    background: var(--color-background);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-primary);
}

.principle-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.principle-description {
    color: var(--color-text-light);
    line-height: var(--line-height-relaxed);
}

/* Our Process Section */
.our-process {
    padding: var(--spacing-3xl) 0;
    background: var(--color-background);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-xl);
}

.process-step-number {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
}

.process-step-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.process-step-description {
    color: var(--color-text-light);
    line-height: var(--line-height-relaxed);
}

/* Platform & Governance Section */
.platform-governance {
    padding: var(--spacing-3xl) 0;
    background: var(--color-background-off);
}

.platform-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.platform-item {
    padding: var(--spacing-xl);
    background: var(--color-background);
    border-radius: var(--border-radius);
}

.platform-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.platform-description {
    color: var(--color-text-light);
    line-height: var(--line-height-relaxed);
}

.platform-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.platform-list li {
    padding: var(--spacing-sm) 0;
    color: var(--color-text-light);
    position: relative;
    padding-left: var(--spacing-md);
}

.platform-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* Hero Secondary Text */
.hero-subtext-secondary {
    font-size: var(--font-size-lg);
    color: var(--color-text-light);
    margin-top: var(--spacing-md);
    line-height: var(--line-height-relaxed);
}

/* About Section Additional Styles */
.about-subsection-title {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
}

.about-features-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.about-feature-item {
    padding: var(--spacing-sm) 0;
    display: flex;
    align-items: start;
    gap: var(--spacing-sm);
}

.about-feature-icon {
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-lg);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Who We Work With Section */
.who-we-work-with {
    margin-top: var(--spacing-2xl);
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.who-we-work-with-title {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
}

.who-we-work-with-description {
    font-size: var(--font-size-lg);
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: var(--line-height-relaxed);
}

/* Service Features Styles */
.service-features {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-features-title {
    font-size: var(--font-size-sm);
    margin: var(--spacing-sm) 0;
    color: rgba(255, 255, 255, 0.9);
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-sm) 0;
}

.service-features-list li {
    padding: var(--spacing-xs) 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
}

/* Insights Description */
.insights-description {
    max-width: 800px;
    margin: var(--spacing-md) auto 0;
    text-align: center;
}

/* Responsive Styles for New Sections */
@media (max-width: 768px) {
    .what-we-do-grid,
    .philosophy-principles,
    .process-steps,
    .platform-content {
        grid-template-columns: 1fr;
    }
    
    .what-we-do,
    .philosophy,
    .our-process,
    .platform-governance {
        padding: var(--spacing-2xl) 0;
    }
    
    .who-we-work-with-title {
        font-size: var(--font-size-xl);
    }
    
    .who-we-work-with-description {
        font-size: var(--font-size-base);
    }
    
    .about-subsection-title {
        font-size: var(--font-size-lg);
    }
}

