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

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
    max-width: 100%;
}

:root {
    /* Color Palette - Monarch Blue & Frost White */
    --primary-color: #0C1C3E;
    --secondary-color: #F8F9FA;
    --accent-color: #1a3a5e;
    --navy-dark: #0C1C3E;
    --navy-medium: #1a3a5e;
    --navy-light: #2d5a8e;
    --text-dark: #0C1C3E;
    --text-light: #F8F9FA;
    --text-muted: rgba(248, 249, 250, 0.85);
    --overlay-dark: rgba(12, 28, 62, 0.8);
    --overlay-light: rgba(248, 249, 250, 0.1);
    --overlay-navy: rgba(26, 58, 94, 0.9);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-navy: 0 4px 20px rgba(12, 28, 62, 0.3);
}

@media (max-width: 768px) {
    :root {
        --spacing-md: 1.25rem;
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
        --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for fixed header */
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   Hero Slider Section
   =================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;

/* ===================================
   WhatsApp Float Button (Global)
   =================================== */
}

.whatsapp-float {
    position: fixed;
    bottom: 2.5rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 0.65rem 1.1rem 0.65rem 0.85rem;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    overflow: hidden;
    white-space: nowrap;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
    flex-shrink: 0;
    display: inline-block;
    max-width: none;
}

.whatsapp-float-label {
    line-height: 1;
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 5.5rem;
        right: 1rem;
        padding: 0.7rem;
        border-radius: 50%;
    }
    .whatsapp-float-label {
        display: none;
    }
}

/* Re-open hero-slider ruleset continuation */
.hero-slider {
    background-image:
        linear-gradient(rgba(4, 8, 20, 0.82), rgba(6, 12, 30, 0.88)),
        url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* --- Particle Canvas --- */
.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

/* --- Floating Geometric Shapes --- */
.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.06;
    will-change: transform;
}

.hero-shape.shape-1 {
    width: 500px;
    height: 500px;
    top: -10%;
    right: -5%;
    background: linear-gradient(135deg, #4c9aff, #7b61ff);
    animation: floatShape1 20s ease-in-out infinite;
}

.hero-shape.shape-2 {
    width: 350px;
    height: 350px;
    bottom: -8%;
    left: -5%;
    background: linear-gradient(135deg, #36d1dc, #5b86e5);
    animation: floatShape2 25s ease-in-out infinite;
    border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%;
}

.hero-shape.shape-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 15%;
    background: linear-gradient(135deg, #a18cd1, #fbc2eb);
    animation: floatShape3 18s ease-in-out infinite;
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
}

.hero-shape.shape-4 {
    width: 150px;
    height: 150px;
    bottom: 25%;
    right: 20%;
    background: linear-gradient(135deg, #89f7fe, #66a6ff);
    animation: floatShape1 22s ease-in-out infinite reverse;
    border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
}

.hero-shape.shape-5 {
    width: 100px;
    height: 100px;
    top: 15%;
    right: 30%;
    background: linear-gradient(135deg, #f6d365, #fda085);
    animation: floatShape3 15s ease-in-out infinite;
}

@keyframes floatShape1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(30px, -40px) rotate(10deg) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) rotate(-5deg) scale(0.95);
    }

    75% {
        transform: translate(15px, 35px) rotate(8deg) scale(1.02);
    }
}

@keyframes floatShape2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(40px, -30px) rotate(15deg);
    }

    66% {
        transform: translate(-30px, 25px) rotate(-10deg);
    }
}

@keyframes floatShape3 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(-25px, -35px) rotate(20deg) scale(1.08);
    }
}

/* --- Glow Orbs --- */
.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    animation: orbPulse 6s ease-in-out infinite;
}

.hero-glow-orb.orb-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: 5%;
    background: radial-gradient(circle, rgba(76, 154, 255, 0.25) 0%, transparent 70%);
    animation-delay: 0s;
}

.hero-glow-orb.orb-2 {
    width: 350px;
    height: 350px;
    bottom: 5%;
    left: 10%;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.2) 0%, transparent 70%);
    animation-delay: 2s;
}

.hero-glow-orb.orb-3 {
    width: 250px;
    height: 250px;
    top: 40%;
    left: 40%;
    background: radial-gradient(circle, rgba(54, 209, 220, 0.15) 0%, transparent 70%);
    animation-delay: 4s;
}

@keyframes orbPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.15);
    }
}

/* --- Hero Banner Content --- */
.hero-banner-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px var(--spacing-lg) 60px;
}

.hero-inner {
    max-width: 820px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.97);
    }

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

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    margin-bottom: 2rem;
    animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}

.hero-badge span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4cff9f;
    box-shadow: 0 0 8px rgba(76, 255, 159, 0.6);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 8px rgba(76, 255, 159, 0.6);
    }

    50% {
        transform: scale(1.3);
        box-shadow: 0 0 16px rgba(76, 255, 159, 0.9);
    }
}

/* Headline */
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6.5vw, 5rem);
    font-weight: 800;
    line-height: 1.08;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
    opacity: 0;
}

.hero-headline-accent {
    display: inline;
    background: linear-gradient(135deg, #4c9aff 0%, #7b61ff 50%, #36d1dc 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Subtext */
.hero-subtext {
    font-size: clamp(1rem, 2vw, 1.1875rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    opacity: 0;
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
    opacity: 0;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4c9aff 0%, #7b61ff 100%);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(76, 154, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #7b61ff 0%, #4c9aff 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: inherit;
    z-index: 0;
}

.hero-cta-primary span,
.hero-cta-primary svg {
    position: relative;
    z-index: 1;
}

.hero-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px rgba(76, 154, 255, 0.45);
}

.hero-cta-primary:hover::before {
    opacity: 1;
}

.hero-cta-primary:hover svg {
    transform: translateX(4px);
}

.hero-cta-primary svg {
    transition: transform 0.3s ease;
}

.hero-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #c79365;
    color: #ffffff;
    border: 1px solid #c79365;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(199, 147, 101, 0.3);
}

.hero-cta-outline:hover {
    background: #b07d50;
    border-color: #b07d50;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(199, 147, 101, 0.5);
}



/* ===================================
   Scroll Indicator (Modern Mouse)
   =================================== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 50;
    cursor: pointer;
    transition: opacity 0.3s ease;
    animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
    opacity: 0;
}

.scroll-indicator:hover {
    opacity: 0.65 !important;
}

.scroll-indicator-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator-wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 0.3;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator-text {
    font-size: 0.6875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ===================================
   Header Styles
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--spacing-lg) 0;
    background: linear-gradient(180deg, rgba(12, 28, 62, 0.6) 0%, rgba(12, 28, 62, 0) 100%);
    transition: all var(--transition-normal);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex-shrink: 0;
    min-width: fit-content;
}

.logo h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.02em;
    line-height: 1;
}

.logo .tagline {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Navigation Menu */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-link {
    position: relative;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: var(--spacing-xs) 0;
    transition: all var(--transition-fast);
    letter-spacing: 0.02em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--text-light);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

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

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-100 {
    transition-delay: 0.1s;
}

.animate-delay-200 {
    transition-delay: 0.2s;
}

.animate-delay-300 {
    transition-delay: 0.3s;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
    margin-left: auto;
}

/* Social Media Links */
.social-media {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-light);
    background: rgba(248, 249, 250, 0.1);
    border: 1px solid rgba(248, 249, 250, 0.2);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.social-link:hover {
    background: rgba(248, 249, 250, 0.2);
    border-color: rgba(248, 249, 250, 0.4);
    transform: translateY(-2px);
}

.btn-primary {
    background: #c79365;
    color: #ffffff;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 10px rgba(199, 147, 101, 0.3);
}

.btn-primary:hover {
    background: #b07d50;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(199, 147, 101, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        /* Full width for better mobile experience */
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(20px);
        padding: 5rem 2rem;
        /* Increased top padding to clear close button area */
        transition: right var(--transition-normal);
        z-index: 200;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: var(--spacing-lg);
        align-items: flex-start;
        /* Left align for cleaner look */
    }

    .nav-link {
        font-size: 1.5rem;
        /* Larger font for mobile touch targets */
        font-weight: 600;
    }

    .mobile-only {
        display: block;
        width: 100%;
        margin-top: var(--spacing-md);
        padding-top: var(--spacing-md);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .btn-mobile-nav {
        /* Look like a button */
        background: var(--text-light);
        color: var(--navy-dark);
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-full);
        text-align: center;
        display: inline-block;
        font-size: 1.125rem;
    }

    .menu-toggle {
        display: flex;
        z-index: 300;
        width: 44px;
        /* Larger touch target */
        height: 44px;
        align-items: center;
        justify-content: center;
    }

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

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

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

/* Hide mobile-only items on desktop */
@media (min-width: 1025px) {
    .mobile-only {
        display: none;
    }
}

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

    .header-container {
        padding: 0 var(--spacing-md);
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .logo .tagline {
        font-size: 0.65rem;
    }

    .social-media {
        display: none;
    }

    .btn-primary {
        display: none;
    }

    /* Hero Banner Responsive */
    .hero-banner-content {
        padding: 100px var(--spacing-md) 80px;
    }

    .hero-badge {
        margin-bottom: 1.25rem;
    }

    .hero-badge span {
        font-size: 0.7rem;
    }

    .hero-headline {
        margin-bottom: 1rem;
    }

    .hero-subtext {
        margin-bottom: 2rem;
    }

    .hero-cta-group {
        margin-bottom: 2.5rem;
    }

    .hero-cta-primary,
    .hero-cta-outline {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
    }



    .hero-glow-orb {
        display: none;
    }

    .hero-shape.shape-1 {
        width: 250px;
        height: 250px;
    }

    .hero-shape.shape-2 {
        width: 180px;
        height: 180px;
    }

    .hero-shape.shape-3,
    .hero-shape.shape-4,
    .hero-shape.shape-5 {
        display: none;
    }

    .scroll-indicator {
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-primary,
    .hero-cta-outline {
        width: 100%;
        justify-content: center;
    }


}

/* ===================================
   About Section — Ultra Modern
   =================================== */
.about-section {
    padding: 6rem var(--spacing-lg);
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 40%, #f4f6fb 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative BG Shapes */
.about-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.5;
}

.about-bg-shape-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(76, 154, 255, 0.06) 0%, transparent 70%);
}

.about-bg-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -80px;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.05) 0%, transparent 70%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Two Column Layout */
.about-two-column {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

/* ===== LEFT: Visual Composition ===== */
.about-visual {
    position: relative;
}

.about-visual-stack {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 480px;
    margin: 0 auto;
}

/* Image Cards */
.about-img-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(12, 28, 62, 0.12);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.about-img-primary {
    width: 72%;
    aspect-ratio: 4/5;
    top: 0;
    left: 0;
    z-index: 2;
    background: linear-gradient(145deg, #0C1C3E 0%, #1a3a5e 60%, #2d5a8e 100%);
}

.about-img-secondary {
    width: 55%;
    aspect-ratio: 4/5;
    bottom: 5%;
    right: 0;
    z-index: 3;
    background: linear-gradient(145deg, #1a3a5e 0%, #2d5a8e 60%, #4c9aff 100%);
    border: 4px solid #ffffff;
}

.about-img-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.35);
    position: relative;
}

.about-img-primary .about-img-inner {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
}

.about-img-primary .about-img-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(76, 154, 255, 0.08) 100%);
}

.about-img-secondary .about-img-inner {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

.about-visual-stack:hover .about-img-primary {
    transform: translate(-4px, -4px);
    box-shadow: 0 24px 72px rgba(12, 28, 62, 0.18);
}

.about-visual-stack:hover .about-img-secondary {
    transform: translate(4px, 4px);
    box-shadow: 0 24px 72px rgba(12, 28, 62, 0.16);
}

/* Experience Badge */
.about-experience-badge {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-30%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(12, 28, 62, 0.12), 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.about-exp-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4c9aff, #7b61ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: var(--font-display);
    letter-spacing: -0.03em;
}

.about-exp-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #4b5563;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Decorative Accents */
.about-accent-dot {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.about-accent-dot.dot-1 {
    width: 12px;
    height: 12px;
    background: #4c9aff;
    top: 10%;
    right: 15%;
    opacity: 0.4;
    animation: aboutDotFloat 4s ease-in-out infinite;
}

.about-accent-dot.dot-2 {
    width: 8px;
    height: 8px;
    background: #7b61ff;
    bottom: 30%;
    left: -5%;
    opacity: 0.3;
    animation: aboutDotFloat 5s ease-in-out infinite 1s;
}

.about-accent-dot.dot-3 {
    width: 6px;
    height: 6px;
    background: #36d1dc;
    top: 45%;
    right: 5%;
    opacity: 0.35;
    animation: aboutDotFloat 3.5s ease-in-out infinite 0.5s;
}

.about-accent-line {
    position: absolute;
    bottom: 8%;
    left: -8%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4c9aff, transparent);
    border-radius: 2px;
    z-index: 1;
    opacity: 0.4;
}

@keyframes aboutDotFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ===== RIGHT: Content ===== */
.about-content {
    padding: 0;
}

/* Label */
.about-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.about-label-line {
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, #4c9aff, #7b61ff);
    border-radius: 2px;
}

.about-label span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #4c9aff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Heading */
.about-heading {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--navy-dark);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
}

.about-heading-accent {
    background: linear-gradient(135deg, #4c9aff 0%, #7b61ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Text */
.about-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 540px;
}

/* Feature Cards */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.about-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.about-feature-card:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(12, 28, 62, 0.08);
    border-color: rgba(76, 154, 255, 0.15);
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(76, 154, 255, 0.1) 0%, rgba(76, 154, 255, 0.05) 100%);
    color: #4c9aff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-feature-icon.icon-purple {
    background: linear-gradient(135deg, rgba(123, 97, 255, 0.1) 0%, rgba(123, 97, 255, 0.05) 100%);
    color: #7b61ff;
}

.about-feature-icon.icon-teal {
    background: linear-gradient(135deg, rgba(54, 209, 220, 0.1) 0%, rgba(54, 209, 220, 0.05) 100%);
    color: #36d1dc;
}

.about-feature-card:hover .about-feature-icon {
    transform: scale(1.08);
}

.about-feature-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.about-feature-info p {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.55;
    margin: 0;
}

/* About CTA Link */
.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #4c9aff;
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.about-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4c9aff, #7b61ff);
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 1px;
}

.about-cta:hover::after {
    width: 100%;
}

.about-cta:hover {
    color: #7b61ff;
}

.about-cta svg {
    transition: transform 0.3s ease;
}

.about-cta:hover svg {
    transform: translateX(4px);
}

/* ===================================
   Shared Section Styles
   =================================== */
.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--navy-dark);
    padding: 0.5rem 1.25rem;
    background: rgba(10, 22, 40, 0.05);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #6b7280;
    max-width: 700px;
    margin: var(--spacing-md) auto 0;
}

/* ===================================
   Projects Section — Ultra Modern
   =================================== */
.projects-section {
    padding: 6rem var(--spacing-lg);
    background: #f4f6fb;
    position: relative;
    overflow: hidden;
}

.projects-bg-element {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(180deg, #eff1f5 0%, transparent 100%);
    z-index: 1;
}

.projects-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Section Header Customization */
.projects-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-label-wrapper {
    display: flex;
    justify-content: center;
}

.text-gradient {
    background: linear-gradient(135deg, #4c9aff 0%, #7b61ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Category Header */
.projects-category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-left: 0.25rem;
}

.cat-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.cat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(76,154,255,0.15) 0%, rgba(123,97,255,0.15) 100%);
    border: 1px solid rgba(76,154,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4c9aff;
    flex-shrink: 0;
}

.cat-icon--done {
    background: linear-gradient(135deg, rgba(16,185,129,0.12) 0%, rgba(5,150,105,0.12) 100%);
    border-color: rgba(16,185,129,0.2);
    color: #10b981;
}

.projects-category-header h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-dark);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0;
}

.cat-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 50px;
    background: rgba(76,154,255,0.12);
    color: #4c9aff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.cat-count--done {
    background: rgba(16,185,129,0.12);
    color: #059669;
}

.category-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(12, 28, 62, 0.12) 0%, transparent 100%);
}

/* Grid Layout */
.projects-grid-wrapper {
    position: relative;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* Project Card */
.project-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 600px;
    /* Fixed height for the card */
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(12, 28, 62, 0.2);
}

/* Image Wrapper */
.project-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-img {
    transform: scale(1.06);
}

.project-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12, 28, 62, 0) 0%,
        rgba(12, 28, 62, 0.25) 40%,
        rgba(12, 28, 62, 0.7) 65%,
        rgba(12, 28, 62, 0.97) 100%
    );
    opacity: 0.9;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.project-card:hover .project-overlay-gradient {
    opacity: 1;
}

/* Large watermark index number */
.project-index {
    position: absolute;
    top: 1.25rem;
    left: 1.5rem;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,0.06);
    letter-spacing: -0.04em;
    z-index: 2;
    pointer-events: none;
    transition: color 0.4s ease;
    font-family: var(--font-display);
    user-select: none;
}

.project-card:hover .project-index {
    color: rgba(255,255,255,0.11);
}

/* Badges */
.project-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.project-badge.ongoing {
    background: rgba(255, 255, 255, 0.95);
    color: #4c9aff;
}

.project-badge.completed {
    background: rgba(16, 185, 129, 0.95);
    color: #065f46;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.project-badge.ongoing .badge-dot {
    box-shadow: 0 0 0 2px rgba(76, 154, 255, 0.2);
    animation: pulse 2s infinite;
}



/* Content Area */
.project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 2rem 2.25rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-content {
    transform: translateY(-6px);
}

/* Property type small tag */
.project-type-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.6rem;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}

.project-card:hover .project-type-tag {
    opacity: 1;
    transform: translateY(0);
}

/* Title with italic sub-line */
.project-title {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 0;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
    letter-spacing: -0.01em;
}

.project-title em {
    font-style: italic;
    font-weight: 300;
    font-size: 1.35rem;
    color: rgba(255,255,255,0.85);
    display: block;
    letter-spacing: 0.01em;
}

/* Animated horizontal rule under title */
.project-title-rule {
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #4c9aff, #7b61ff);
    border-radius: 2px;
    margin: 1rem 0 0.9rem;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.project-card:hover .project-title-rule {
    width: 56px;
}

/* Location */
.project-location {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.4rem;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
}

.project-card:hover .project-location {
    opacity: 1;
    transform: translateY(0);
}

/* Link */
.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    text-decoration: none;
    overflow: hidden;
    position: relative;
}

.project-link span:first-child {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    padding-bottom: 3px;
    border-bottom: 1.5px solid rgba(255,255,255,0.35);
    transition: border-color 0.3s ease, color 0.3s ease;
    margin-right: 0.6rem;
}

.project-link-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #ffffff;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.project-link:hover span:first-child {
    border-color: #4c9aff;
    color: #4c9aff;
}

.project-link:hover .project-link-arrow {
    background: #4c9aff;
    border-color: #4c9aff;
    transform: translateX(4px);
}

.project-divider {
    height: 1px;
    background: #f3f4f6;
    margin: 1rem 0;
}

/* Specs */
.project-specs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.spec-val {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--navy-dark);
}

.spec-label {
    font-size: 0.65rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.spec-icon {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

/* Link */
.project-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    width: fit-content;
}

.project-link:hover {
    background: #ffffff;
    color: var(--navy-dark);
}

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

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

/* Responsive Design for About & Projects */
@media (max-width: 1024px) {
    .about-two-column {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* ... existing about styles ... */
    .about-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-content {
        text-align: center;
    }

    .about-label {
        justify-content: center;
    }

    .about-text {
        margin-left: auto;
        margin-right: auto;
    }

    .about-features {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
    }

    .about-feature-card {
        text-align: left;
    }

    .about-cta {
        justify-content: center;
    }

    .projects-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3.5rem var(--spacing-md);
    }

    /* ... existing about styles ... */
    .about-two-column {
        gap: 2.5rem;
    }

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

    .about-bg-shape {
        display: none;
    }

    .about-accent-dot,
    .about-accent-line {
        display: none;
    }

    .about-experience-badge {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }

    .about-exp-number {
        font-size: 1.5rem;
    }

    .about-exp-text {
        font-size: 0.65rem;
    }

    .about-heading {
        font-size: 1.625rem;
    }

    .about-text {
        font-size: 0.9375rem;
    }

    .about-feature-card {
        padding: 1rem;
    }

    .about-feature-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .about-feature-info h4 {
        font-size: 0.9375rem;
    }

    .about-feature-info p {
        font-size: 0.8125rem;
    }

    .projects-section {
        padding: 4rem var(--spacing-md);
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .project-image-wrapper {
        aspect-ratio: 16/10;
    }

    .projects-category-header h3 {
        font-size: 1.25rem;
    }
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    position: relative;
    padding: 6rem var(--spacing-lg);
    background: #0f172a;
    color: #ffffff;
    overflow: hidden;
}

.contact-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 40%),
        linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, #0f172a 100%);
    z-index: 1;
    pointer-events: none;
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contact-text-content {
    max-width: 500px;
}

.contact-text-content .section-label {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.display-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    color: #ffffff;
}

.display-title .text-gradient {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-intro {
    font-size: 1.125rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.method-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    transition: all 0.3s ease;
}

.method-item:hover .method-icon-box {
    background: rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.3);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
}

.method-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.method-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    font-weight: 600;
}

.method-value {
    font-size: 1.125rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.4;
}

.method-value a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-value a:hover {
    color: #38bdf8;
}

/* Glassmorphism Form */
.contact-form-wrapper {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #f0f4f8;
    box-shadow: 0 20px 60px -10px rgba(12, 28, 62, 0.1), 0 0 0 1px rgba(12, 28, 62, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0C1C3E, #1a3a5e);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: #0C1C3E;
    font-size: 0.9375rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.125rem;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    color: #0C1C3E;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: #cbd5e1;
}

.form-control:focus {
    outline: none;
    background: #ffffff;
    border-color: #0C1C3E;
    box-shadow: 0 0 0 3px rgba(12, 28, 62, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #0C1C3E 0%, #1a3a5e 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -10px rgba(12, 28, 62, 0.3);
    filter: brightness(1.08);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-text-content {
        margin: 0 auto;
        text-align: center;
    }

    .display-title {
        font-size: 2.5rem;
    }

    .contact-methods {
        align-items: center;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}

/* Footer */
.footer {
    background: #ffffff;
    padding: 6rem var(--spacing-lg) 2rem;
    color: var(--navy-dark);
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.footer-bg-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    z-index: 0;
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.brand-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy-dark);
    text-decoration: none;
    line-height: 1;
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-size: 0.75rem;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-top: 0.25rem;
}

.footer-desc {
    color: #6b7280;
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-icon:hover {
    background: #e0f2fe;
    color: #0ea5e9;
    transform: translateY(-2px);
    border-color: #bae6fd;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--navy-dark);
    letter-spacing: -0.01em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9375rem;
    font-weight: 500;
    display: inline-block;
}

.footer-links a:hover {
    color: #38bdf8;
    transform: translateX(4px);
}

/* Newsletter */
.footer-newsletter-text {
    color: #6b7280;
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.footer-newsletter-form {
    display: flex;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.35rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.footer-newsletter-form:focus-within {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.footer-newsletter-form input {
    border: none;
    outline: none;
    padding: 0.75rem 1rem;
    flex: 1;
    font-size: 0.9375rem;
    color: var(--navy-dark);
    background: transparent;
    min-width: 0;
}

.footer-newsletter-form button {
    background: var(--navy-dark);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.footer-newsletter-form button:hover {
    background: #38bdf8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.footer-credits {
    font-weight: 500;
    color: #6b7280;
}

.credit-link {
    color: var(--navy-dark);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
    position: relative;
}

.credit-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #38bdf8;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.credit-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}