/* CSS Variables - Brand Colors */
:root {
    --navy-blue: #24485F;
    --gold: #CB9E57;
    --white: #FFFFFF;
    --text-light: rgba(255, 255, 255, 0.95);
    --text-muted: rgba(255, 255, 255, 0.8);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    scroll-padding-top: 120px;
}

/* Scroll Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

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

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

/* Fixed Background with Slow Zoom Out */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/background-optimized.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: slowZoomOut 10s ease-out forwards, breathe 8s ease-in-out 10s infinite;
}

@keyframes slowZoomOut {
    0% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1.0);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Translucent Overlay - Dark */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 15, 25, 0.85) 0%, rgba(20, 25, 40, 0.75) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 0;
    z-index: 2;
}

/* Header with Navy Background Bar - Sticky */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.125rem 2rem;
    padding-top: calc(1.125rem + 2rem); /* extra top padding for initial "floating" offset */
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1000;
    /* Only transition padding for the slide-up effect */
    transition: padding-top 0.35s ease;
}

/* Pseudo-element for expanding background */
.header::before {
    content: '';
    position: absolute;
    top: 2rem; /* initial floating offset */
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(36, 72, 95, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: -1;
    /* Smooth transitions for background expansion */
    transition: top 0.35s ease,
                left 0.35s ease,
                right 0.35s ease,
                border-radius 0.35s ease,
                box-shadow 0.35s ease;
}

/* Scrolled state - background expands, content stays put */
.header.scrolled {
    padding-top: 1.125rem; /* remove extra top padding */
}

.header.scrolled::before {
    top: 0;
    left: calc(-50vw + 50%); /* expand to full viewport width */
    right: calc(-50vw + 50%);
    border-radius: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;
    position: relative; /* ensure content is above ::before */
}

.logo-container {
    flex-shrink: 0;
    padding-right: 3rem;
}

.logo {
    height: 48px;
    width: auto;
}

.navigation {
    display: flex;
    gap: 0;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.625rem 1.25rem;
    border-radius: 30px;
    white-space: nowrap;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-cta {
    background-color: var(--gold);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cta:hover {
    background-color: #E0B06D;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(203, 158, 87, 0.4);
}

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

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

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

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

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

/* Hero Content */
.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 8rem 4rem 4rem 4rem;
    position: relative;
}

/* Floating Lights Effect */
.floating-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.light-speck {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.5) 30%, transparent 60%);
    filter: blur(1px);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* Individual random animations for each speck */
.speck-1 { animation: float1 8s ease-in-out infinite; }
.speck-2 { animation: float2 11s ease-in-out infinite; }
.speck-3 { animation: float3 9s ease-in-out infinite; }
.speck-4 { animation: float4 12s ease-in-out infinite; }
.speck-5 { animation: float5 10s ease-in-out infinite; }
.speck-6 { animation: float6 13s ease-in-out infinite; }
.speck-7 { animation: float7 9.5s ease-in-out infinite; }
.speck-8 { animation: float8 11.5s ease-in-out infinite; }
.speck-9 { animation: float9 8.5s ease-in-out infinite; }
.speck-10 { animation: float10 10.5s ease-in-out infinite; }
.speck-11 { animation: float11 12.5s ease-in-out infinite; }
.speck-12 { animation: float12 9.8s ease-in-out infinite; }
.speck-13 { animation: float13 11.2s ease-in-out infinite; }
.speck-14 { animation: float14 10.8s ease-in-out infinite; }
.speck-15 { animation: float15 13.5s ease-in-out infinite; }
.speck-16 { animation: float16 8.8s ease-in-out infinite; }
.speck-17 { animation: float17 12.2s ease-in-out infinite; }
.speck-18 { animation: float18 9.2s ease-in-out infinite; }
.speck-19 { animation: float19 11.8s ease-in-out infinite; }
.speck-20 { animation: float20 10.2s ease-in-out infinite; }
.speck-21 { animation: float21 13.2s ease-in-out infinite; }
.speck-22 { animation: float22 8.2s ease-in-out infinite; }

@keyframes float1 { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; } 50% { transform: translate(20px, -30px) scale(1.2); opacity: 0.8; } }
@keyframes float2 { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; } 50% { transform: translate(-25px, 35px) scale(0.9); opacity: 0.7; } }
@keyframes float3 { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; } 50% { transform: translate(30px, 20px) scale(1.3); opacity: 0.9; } }
@keyframes float4 { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; } 50% { transform: translate(-18px, -40px) scale(1.1); opacity: 0.7; } }
@keyframes float5 { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; } 50% { transform: translate(22px, 28px) scale(0.8); opacity: 0.6; } }
@keyframes float6 { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; } 50% { transform: translate(-30px, -25px) scale(1.4); opacity: 0.8; } }
@keyframes float7 { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; } 50% { transform: translate(15px, -35px) scale(1.2); opacity: 0.9; } }
@keyframes float8 { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; } 50% { transform: translate(-20px, 30px) scale(0.9); opacity: 0.7; } }
@keyframes float9 { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; } 50% { transform: translate(28px, -22px) scale(1.3); opacity: 0.8; } }
@keyframes float10 { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; } 50% { transform: translate(-22px, 38px) scale(1.1); opacity: 0.6; } }
@keyframes float11 { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; } 50% { transform: translate(25px, 15px) scale(0.8); opacity: 0.9; } }
@keyframes float12 { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; } 50% { transform: translate(-28px, -32px) scale(1.2); opacity: 0.7; } }
@keyframes float13 { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; } 50% { transform: translate(18px, 25px) scale(1.4); opacity: 0.8; } }
@keyframes float14 { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; } 50% { transform: translate(-24px, -28px) scale(0.9); opacity: 0.6; } }
@keyframes float15 { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; } 50% { transform: translate(32px, 18px) scale(1.3); opacity: 0.9; } }
@keyframes float16 { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; } 50% { transform: translate(-15px, 33px) scale(1.1); opacity: 0.7; } }
@keyframes float17 { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; } 50% { transform: translate(26px, -26px) scale(0.8); opacity: 0.8; } }
@keyframes float18 { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; } 50% { transform: translate(-30px, 22px) scale(1.2); opacity: 0.6; } }
@keyframes float19 { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; } 50% { transform: translate(20px, -38px) scale(1.4); opacity: 0.9; } }
@keyframes float20 { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; } 50% { transform: translate(-26px, 30px) scale(0.9); opacity: 0.7; } }
@keyframes float21 { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; } 50% { transform: translate(24px, 20px) scale(1.3); opacity: 0.8; } }
@keyframes float22 { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; } 50% { transform: translate(-28px, -24px) scale(1.1); opacity: 0.6; } }

.content-wrapper-center {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 3rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--gold);
    font-weight: 600;
}

.btn-offer {
    display: inline-block;
    background-color: var(--gold);
    color: var(--white);
    padding: 1.125rem 2.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-offer:hover {
    background-color: #E0B06D;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(203, 158, 87, 0.5);
}

/* Portfolio Section */
.portfolio-section {
    position: relative;
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, #F5F1E8 0%, #E8E0D0 100%);
    z-index: 1;
}

.portfolio-container {
    max-width: 1600px;
    margin: 0 auto;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 5rem;
}

.portfolio-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 2rem;
}

.icon-folder {
    width: 3.5rem;
    height: 3.5rem;
    color: var(--navy-blue);
    filter: drop-shadow(0 4px 10px rgba(36, 72, 95, 0.15));
}

.portfolio-accent-line {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--navy-blue);
    border-radius: 2px;
}

.portfolio-fireworks {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 60px;
    pointer-events: none;
}

.firework-spark {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
}

/* Firework 1 - Far Left */
.firework-spark-1 {
    left: 25%;
    animation: firework1 3s ease-out infinite;
}

/* Firework 2 - Left */
.firework-spark-2 {
    left: 38%;
    animation: firework2 3.2s ease-out 0.3s infinite;
}

/* Firework 3 - Center */
.firework-spark-3 {
    left: 50%;
    animation: firework3 3.4s ease-out 0.6s infinite;
}

/* Firework 4 - Right */
.firework-spark-4 {
    left: 62%;
    animation: firework4 3.1s ease-out 0.9s infinite;
}

/* Firework 5 - Far Right */
.firework-spark-5 {
    left: 75%;
    animation: firework5 3.3s ease-out 1.2s infinite;
}

/* Firework 6 - Extra Left */
.firework-spark-6 {
    left: 20%;
    animation: firework6 3.5s ease-out 1.5s infinite;
}

/* Firework 7 - Extra Right */
.firework-spark-7 {
    left: 80%;
    animation: firework7 3.2s ease-out 1.8s infinite;
}

/* Firework Animations */
@keyframes firework1 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    50% {
        transform: translate(-25px, -25px) scale(1.2);
        opacity: 0.6;
    }
    100% {
        transform: translate(-40px, -45px) scale(0.5);
        opacity: 0;
    }
}

@keyframes firework2 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    50% {
        transform: translate(-12px, -28px) scale(1.2);
        opacity: 0.6;
    }
    100% {
        transform: translate(-20px, -50px) scale(0.5);
        opacity: 0;
    }
}

@keyframes firework3 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    50% {
        transform: translate(0, -30px) scale(1.3);
        opacity: 0.7;
    }
    100% {
        transform: translate(0, -55px) scale(0.5);
        opacity: 0;
    }
}

@keyframes firework4 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    50% {
        transform: translate(12px, -27px) scale(1.2);
        opacity: 0.6;
    }
    100% {
        transform: translate(20px, -48px) scale(0.5);
        opacity: 0;
    }
}

@keyframes firework5 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    50% {
        transform: translate(25px, -26px) scale(1.2);
        opacity: 0.6;
    }
    100% {
        transform: translate(40px, -46px) scale(0.5);
        opacity: 0;
    }
}

@keyframes firework6 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    50% {
        transform: translate(-30px, -22px) scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50px, -40px) scale(0.5);
        opacity: 0;
    }
}

@keyframes firework7 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    50% {
        transform: translate(30px, -24px) scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: translate(50px, -42px) scale(0.5);
        opacity: 0;
    }
}

.portfolio-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.portfolio-subheading {
    font-size: 1.25rem;
    color: rgba(36, 72, 95, 0.75);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.portfolio-item {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(36, 72, 95, 0.12);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(36, 72, 95, 0.2);
}

.portfolio-item .card-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(36, 72, 95, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.portfolio-item .card-arrow svg {
    color: var(--navy-blue);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .card-arrow {
    background: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(203, 158, 87, 0.4);
}

.portfolio-item:hover .card-arrow svg {
    color: var(--white);
    transform: translate(2px, -2px);
}

.portfolio-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 41.67%; /* Aspect ratio for hero sections */
    overflow: hidden;
    background: linear-gradient(135deg, rgba(36, 72, 95, 0.05) 0%, rgba(203, 158, 87, 0.05) 100%);
}

.portfolio-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.3s ease;
    background: #f5f5f5;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(36, 72, 95, 0.08) 0%, rgba(203, 158, 87, 0.08) 100%);
}

.portfolio-placeholder i {
    font-size: 3rem;
    color: rgba(36, 72, 95, 0.3);
}

.portfolio-placeholder span {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(36, 72, 95, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(36, 72, 95, 0.95) 0%, rgba(36, 72, 95, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    text-align: center;
    color: var(--white);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.portfolio-project-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.portfolio-project-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #F5F1E8 0%, #E8E0D0 100%);
    padding: 8rem 4rem;
    position: relative;
    z-index: 1;
}

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

.pricing-header {
    text-align: center;
    margin-bottom: 5rem;
}

.pricing-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.icon-tag {
    width: 60px;
    height: 60px;
    color: var(--gold);
    filter: drop-shadow(0 4px 12px rgba(203, 158, 87, 0.3));
}

.pricing-sparkles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
}

.sparkle-1 { left: 20%; top: 20%; animation: sparkleGlow 2s ease-in-out infinite; animation-delay: 0s; }
.sparkle-2 { left: 80%; top: 20%; animation: sparkleGlow 2s ease-in-out infinite; animation-delay: 0.3s; }
.sparkle-3 { left: 20%; top: 80%; animation: sparkleGlow 2s ease-in-out infinite; animation-delay: 0.6s; }
.sparkle-4 { left: 80%; top: 80%; animation: sparkleGlow 2s ease-in-out infinite; animation-delay: 0.9s; }
.sparkle-5 { left: 50%; top: 10%; animation: sparkleGlow 2s ease-in-out infinite; animation-delay: 1.2s; }
.sparkle-6 { left: 50%; top: 90%; animation: sparkleGlow 2s ease-in-out infinite; animation-delay: 1.5s; }

@keyframes sparkleGlow {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.5); }
}

.pricing-heading {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.pricing-subheading {
    font-size: 1.375rem;
    color: rgba(36, 72, 95, 0.7);
    font-weight: 400;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(36, 72, 95, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(36, 72, 95, 0.18);
}

.pricing-card.featured {
    border: 3px solid var(--gold);
    box-shadow: 0 8px 35px rgba(203, 158, 87, 0.25);
}

.pricing-card.featured:hover {
    box-shadow: 0 12px 50px rgba(203, 158, 87, 0.35);
}

.featured-badge {
    position: absolute;
    top: 25px;
    right: -35px;
    background: var(--gold);
    color: white;
    padding: 0.5rem 2.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(203, 158, 87, 0.4);
    text-align: center;
}

.pricing-card-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(135deg, rgba(36, 72, 95, 0.03) 0%, rgba(36, 72, 95, 0.08) 100%);
}

.pricing-card.featured .pricing-card-header {
    background: linear-gradient(135deg, rgba(203, 158, 87, 0.08) 0%, rgba(203, 158, 87, 0.15) 100%);
}

.plan-name {
    font-size: 2rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.price-currency {
    font-size: 2rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-top: 0.5rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--navy-blue);
    line-height: 1;
}

.price-period {
    font-size: 1.375rem;
    color: rgba(36, 72, 95, 0.6);
    margin-top: 2rem;
}

.plan-subtitle {
    font-size: 1rem;
    color: rgba(36, 72, 95, 0.6);
    font-weight: 500;
}

.pricing-card-body {
    padding: 2.5rem 2rem;
}

.features-section {
    margin-bottom: 2.5rem;
}

.features-section.not-included {
    padding-top: 1.5rem;
    border-top: 2px solid rgba(36, 72, 95, 0.1);
}

.features-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 1.25rem;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: rgba(36, 72, 95, 0.85);
    line-height: 1.6;
}

.feature-item.highlight {
    color: var(--navy-blue);
    font-weight: 400;
}

.feature-item.payment-terms {
    font-size: 0.9rem;
    color: rgba(36, 72, 95, 0.7);
}

.feature-item.excluded {
    opacity: 0.6;
}

.check-icon, .x-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.check-icon {
    color: #4CAF50;
}

.x-icon {
    color: #e74c3c;
}

.add-ons-section {
    background: linear-gradient(135deg, rgba(203, 158, 87, 0.08) 0%, rgba(203, 158, 87, 0.15) 100%);
    border-radius: 12px;
    padding: 1.5rem;
}

.add-ons-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

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

.add-on-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.add-on-item:last-child {
    margin-bottom: 0;
}

.add-on-name {
    color: rgba(36, 72, 95, 0.85);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.add-on-price {
    font-weight: 600;
    color: var(--navy-blue);
}

/* Tooltip Styles */
.info-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: help;
}

.info-icon {
    width: 16px;
    height: 16px;
    color: var(--gold);
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.info-tooltip:hover .info-icon {
    opacity: 1;
}

.tooltip-text {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy-blue);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.4;
    width: 220px;
    text-align: left;
    z-index: 100;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--navy-blue);
}

.info-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.pricing-card-footer {
    padding: 0 2rem 3rem;
}

.btn-pricing {
    display: block;
    width: 100%;
    background-color: var(--gold);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background-color: #E0B06D;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(203, 158, 87, 0.5);
}

/* Bio Section */
.bio-section {
    position: relative;
    min-height: 100vh;
    padding: 8rem 4rem;
    display: flex;
    align-items: center;
    z-index: 1;
    background: linear-gradient(135deg, #1a2f3d 0%, #24485F 100%);
}

.bio-video-background {
    display: none;
}

.bio-video {
    display: none;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.bio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 15, 25, 0.85) 0%, rgba(20, 25, 40, 0.8) 100%);
    z-index: 1;
}

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

.bio-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.bio-text {
    flex: 1;
}

.bio-header-with-icon {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bio-icon {
    position: relative;
    flex-shrink: 0;
}

.icon-laptop-bio {
    width: 3.5rem;
    height: 3.5rem;
    color: var(--gold);
}

.bio-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bubble-bio {
    position: absolute;
    top: 0;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 0;
    opacity: 0;
}

.bubble-bio-1 { left: 5%; animation: bubbleRise1 3s ease-in-out infinite; animation-delay: 0s; }
.bubble-bio-2 { left: 20%; animation: bubbleRise2 3.5s ease-in-out infinite; animation-delay: 0.4s; }
.bubble-bio-3 { left: 35%; animation: bubbleRise3 3.2s ease-in-out infinite; animation-delay: 0.8s; }
.bubble-bio-4 { left: 50%; animation: bubbleRise4 3.8s ease-in-out infinite; animation-delay: 1.2s; }
.bubble-bio-5 { left: 65%; animation: bubbleRise5 3.3s ease-in-out infinite; animation-delay: 1.6s; }
.bubble-bio-6 { left: 80%; animation: bubbleRise6 3.6s ease-in-out infinite; animation-delay: 2s; }
.bubble-bio-7 { left: 15%; animation: bubbleRise7 3.4s ease-in-out infinite; animation-delay: 2.4s; }
.bubble-bio-8 { left: 90%; animation: bubbleRise8 3.7s ease-in-out infinite; animation-delay: 2.8s; }

.bio-heading {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    margin: 0;
}

.italic-text {
    font-style: italic;
    color: var(--white);
}

.bio-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.calendar-button-wrapper {
    margin: 2rem 0 1.5rem 0;
}

.btn-calendar {
    display: inline-block;
    background-color: var(--gold);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-calendar:hover {
    background-color: #E0B06D;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(203, 158, 87, 0.5);
}

.btn-contact {
    display: inline-block;
    background-color: var(--gold);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-contact:hover {
    background-color: #E0B06D;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(203, 158, 87, 0.5);
}

.bio-profile {
    flex-shrink: 0;
    text-align: center;
}

.bio-image {
    width: 300px;
    height: 350px;
    border-radius: 20px;
    object-fit: cover;
    object-position: center 20%;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    margin-bottom: 1.5rem;
}

.bio-caption {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.5;
}

.bio-title {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gold);
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #1a2f3d 0%, #0d1a23 100%);
    padding: 6rem 2rem 4rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.footer-column {
    background: #EEE7DA;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.3);
}

.footer-column:hover {
    transform: translateY(-3px);
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.4);
    border-color: rgba(203, 158, 87, 0.3);
}

.footer-logo-wrapper {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 45%;
}

.footer-logo {
    width: 100%;
    height: auto;
    display: block;
}

.footer-fireworks-container {
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
    z-index: 1;
}

.footer-firework-spark {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--navy-blue);
    border-radius: 50%;
    opacity: 0;
}

/* Top edge sparks */
.footer-spark-1 {
    left: 30%;
    top: 0;
    animation: footerFirework1 2s ease-out infinite;
}

.footer-spark-2 {
    left: 50%;
    top: 0;
    animation: footerFirework2 2.2s ease-out infinite;
}

/* Top-left corner sparks */
.footer-spark-3 {
    left: 10%;
    top: 0;
    animation: footerFirework3 2.1s ease-out infinite;
}

.footer-spark-4 {
    left: 5%;
    top: 5%;
    animation: footerFirework4 2.3s ease-out infinite;
}

/* Left edge sparks */
.footer-spark-5 {
    left: 0;
    top: 30%;
    animation: footerFirework5 2.2s ease-out infinite;
}

.footer-spark-6 {
    left: 0;
    top: 50%;
    animation: footerFirework6 2.4s ease-out infinite;
}

/* Top animations */
@keyframes footerFirework1 {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    10% { opacity: 0.8; }
    50% { transform: translate(0px, -35px) scale(1.2); opacity: 0.6; }
    100% { transform: translate(0px, -50px) scale(0.5); opacity: 0; }
}

@keyframes footerFirework2 {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    10% { opacity: 0.8; }
    50% { transform: translate(5px, -30px) scale(1.2); opacity: 0.6; }
    100% { transform: translate(10px, -45px) scale(0.5); opacity: 0; }
}

/* Top-left animations */
@keyframes footerFirework3 {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    10% { opacity: 0.8; }
    50% { transform: translate(-20px, -25px) scale(1.2); opacity: 0.6; }
    100% { transform: translate(-35px, -40px) scale(0.5); opacity: 0; }
}

@keyframes footerFirework4 {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    10% { opacity: 0.8; }
    50% { transform: translate(-15px, -28px) scale(1.2); opacity: 0.6; }
    100% { transform: translate(-30px, -42px) scale(0.5); opacity: 0; }
}

/* Left animations */
@keyframes footerFirework5 {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    10% { opacity: 0.8; }
    50% { transform: translate(-30px, -10px) scale(1.2); opacity: 0.6; }
    100% { transform: translate(-45px, -15px) scale(0.5); opacity: 0; }
}

@keyframes footerFirework6 {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    10% { opacity: 0.8; }
    50% { transform: translate(-25px, -5px) scale(1.2); opacity: 0.6; }
    100% { transform: translate(-40px, -8px) scale(0.5); opacity: 0; }
}

.footer-heading {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--navy-blue);
    margin-bottom: 2rem;
}

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

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    border: 1px solid var(--navy-blue);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--navy-blue);
    font-size: 1.05rem;
}

.contact-item i,
.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item a {
    color: var(--navy-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

.btn-footer-contact {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-footer-contact:hover {
    background-color: #E0B06D;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(203, 158, 87, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 2rem 1.5rem 2rem;
    margin-top: 3rem;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

.cta-wrapper {
    text-align: center;
    margin-top: 4rem;
}

.btn-consultation {
    display: inline-block;
    padding: 1.125rem 2.75rem;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-consultation:hover {
    background-color: #E0B06D;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(203, 158, 87, 0.5);
}

.btn-calendar.breathe {
    animation: breatheIn 0.8s ease-in-out;
}

@keyframes breatheIn {
    0% {
        transform: translateY(20px) scale(1);
        opacity: 0;
    }
    50% {
        transform: translateY(0) scale(1.05);
        opacity: 1;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        padding: 6rem 2rem 3rem 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .bio-heading {
        font-size: 3rem;
    }

    .bio-content {
        flex-direction: column;
        gap: 3rem;
    }

    .bio-image {
        width: 250px;
        height: 300px;
    }
}

/* Desktop - hide mobile close button */
@media (min-width: 969px) {
    .mobile-menu-close {
        display: none !important;
    }
}

/* Tablet Breakpoint */
@media (max-width: 968px) {
    .header {
        padding: 1rem 1.75rem;
        padding-top: calc(1rem + 1.5rem);
        max-width: calc(100% - 2rem);
    }

    .header::before {
        top: 1.5rem;
        border-radius: 35px;
    }

    .header.scrolled {
        padding-top: 1rem;
    }

    .header.scrolled::before {
        top: 0;
        border-radius: 0;
    }

    .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .logo-container {
        order: 1;
        flex-shrink: 0;
    }

    .logo {
        height: 42px;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 2;
        width: 44px;
        height: 44px;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
    }

    .navigation {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        max-width: none !important;
        height: 100vh !important;
        height: 100dvh !important;
        margin: 0 !important;
        padding: 5rem 2rem !important;
        background: rgba(36, 72, 95, 0.98) !important;
        backdrop-filter: blur(12px);
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        pointer-events: none;
        opacity: 0;
        transform: translateX(100%) !important;
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: 10000 !important;
    }

    .mobile-menu-close {
        display: flex !important;
        position: absolute;
        top: 2rem;
        right: 2rem;
        background: none;
        border: none;
        color: var(--white);
        font-size: 2.5rem;
        cursor: pointer;
        padding: 0.5rem;
        width: 50px;
        height: 50px;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10001;
    }

    .mobile-menu-close svg {
        width: 20px;
        height: 20px;
        color: var(--white);
    }

    .mobile-menu-close:hover {
        color: var(--gold);
        transform: rotate(90deg);
    }

    .mobile-menu-close:hover svg {
        color: var(--gold);
    }

    .btn-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        order: 3;
        flex-shrink: 0;
    }

    .navigation.active {
        pointer-events: auto;
        opacity: 1;
        transform: translateX(0) !important;
    }

    .navigation.active .mobile-menu-close {
        display: flex !important;
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.75rem;
        font-weight: 600;
        padding: 1rem 2rem;
        text-align: center;
        width: 100%;
        display: block;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        padding: 5rem 2rem 2rem 2rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .btn-offer {
        padding: 1.125rem 2.75rem;
        font-size: 1rem;
    }

    .bio-section {
        padding: 6rem 2rem;
    }

    .bio-heading {
        font-size: 2.5rem;
    }

    .bio-description {
        font-size: 1rem;
    }

    .bio-image {
        width: 220px;
        height: 260px;
    }

    /* Portfolio Section - Tablet */
    .portfolio-section {
        padding: 6rem 2rem 4rem;
    }

    .portfolio-container {
        max-width: 100%;
    }

    .portfolio-heading {
        font-size: 2.75rem;
    }

    .portfolio-subheading {
        font-size: 1.125rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .portfolio-project-title {
        font-size: 1.5rem;
    }

    .portfolio-project-description {
        font-size: 1rem;
    }
}

/* Mobile Breakpoint */
@media (max-width: 640px) {
    .header {
        padding: 0.875rem 1.5rem;
        padding-top: calc(0.875rem + 1rem);
        max-width: calc(100% - 1.5rem);
    }

    .header::before {
        top: 1rem;
        border-radius: 30px;
    }

    .header.scrolled {
        padding-top: 0.875rem;
    }

    .header.scrolled::before {
        top: 0;
        border-radius: 0;
    }

    .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo-container {
        order: 1;
    }

    .logo {
        height: 38px;
    }

    .mobile-menu-toggle {
        display: flex;
        width: 40px;
        height: 40px;
        order: 2;
        align-items: center;
        justify-content: center;
    }

    .btn-cta {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
        order: 3;
    }

    .hero-content {
        padding: 4.5rem 1.5rem 2rem 1.5rem;
    }

    .hero-title {
        font-size: 2.25rem;
        line-height: 1.25;
    }

    .btn-offer {
        padding: 1rem 2.25rem;
        font-size: 0.95rem;
    }

    .nav-link {
        font-size: 1.5rem;
        padding: 0.875rem 1.5rem;
    }

    .mobile-menu-close {
        display: flex !important;
        font-size: 2rem;
        top: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        position: absolute;
        background: none;
        border: none;
        color: var(--white);
        cursor: pointer;
        padding: 0.5rem;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10001;
    }

    .bio-section {
        padding: 5rem 1.5rem;
        min-height: auto;
    }

    /* Portfolio Section - Mobile */
    .portfolio-section {
        padding: 4rem 1.5rem 3rem;
    }

    .portfolio-header {
        margin-bottom: 3rem;
    }

    .icon-folder {
        width: 2.5rem;
        height: 2.5rem;
    }

    .portfolio-heading {
        font-size: 2rem;
    }

    .portfolio-subheading {
        font-size: 1rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-project-title {
        font-size: 1.25rem;
    }

    .portfolio-project-description {
        font-size: 0.95rem;
    }

    .portfolio-overlay {
        padding: 1.5rem;
    }

    .bio-heading {
        font-size: 2rem;
    }

    .bio-description {
        font-size: 0.95rem;
    }

    .bio-image {
        width: 200px;
        height: 240px;
    }

    .bio-caption {
        font-size: 1.125rem;
    }

    .footer-heading {
        font-size: 1.4rem;
    }

    .footer-tagline {
        font-size: 0.95rem;
    }
}

/* Value Section - Dark Theme */
.value-section {
    background: linear-gradient(180deg, rgba(10, 15, 25, 0) 0%, rgba(15, 25, 35, 1) 15%, rgba(18, 30, 40, 1) 100%);
    padding: 8rem 4rem 6rem 4rem;
    position: relative;
    z-index: 1;
}

.value-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.value-icon {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.icon-laptop {
    width: 50px;
    height: 50px;
    color: var(--white);
    opacity: 0.9;
}

.icon-small {
    height: 50px;
    width: auto;
    opacity: 0.9;
}

.digital-bubbles {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 100px;
    pointer-events: none;
}

.bubble {
    position: absolute;
    top: 0;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0;
    opacity: 0;
}

.bubble-1 { left: 5%; animation: bubbleRise1 3s ease-in-out infinite; animation-delay: 0s; }
.bubble-2 { left: 20%; animation: bubbleRise2 3.5s ease-in-out infinite; animation-delay: 0.4s; }
.bubble-3 { left: 35%; animation: bubbleRise3 3.2s ease-in-out infinite; animation-delay: 0.8s; }
.bubble-4 { left: 50%; animation: bubbleRise4 3.8s ease-in-out infinite; animation-delay: 1.2s; }
.bubble-5 { left: 65%; animation: bubbleRise5 3.3s ease-in-out infinite; animation-delay: 1.6s; }
.bubble-6 { left: 80%; animation: bubbleRise6 3.6s ease-in-out infinite; animation-delay: 2s; }
.bubble-7 { left: 15%; animation: bubbleRise7 3.4s ease-in-out infinite; animation-delay: 2.4s; }
.bubble-8 { left: 90%; animation: bubbleRise8 3.7s ease-in-out infinite; animation-delay: 2.8s; }

@keyframes bubbleRise1 {
    0% { top: 0; opacity: 0; transform: translateY(0) scale(0.5); }
    10% { opacity: 0.8; }
    100% { top: -80px; opacity: 0; transform: translateY(-80px) scale(1.2); }
}

@keyframes bubbleRise2 {
    0% { top: 0; opacity: 0; transform: translateY(0) scale(0.5); }
    10% { opacity: 0.9; }
    100% { top: -90px; opacity: 0; transform: translateY(-90px) scale(1.3); }
}

@keyframes bubbleRise3 {
    0% { top: 0; opacity: 0; transform: translateY(0) scale(0.5); }
    10% { opacity: 0.7; }
    100% { top: -85px; opacity: 0; transform: translateY(-85px) scale(1.1); }
}

@keyframes bubbleRise4 {
    0% { top: 0; opacity: 0; transform: translateY(0) scale(0.5); }
    10% { opacity: 0.8; }
    100% { top: -95px; opacity: 0; transform: translateY(-95px) scale(1.4); }
}

@keyframes bubbleRise5 {
    0% { top: 0; opacity: 0; transform: translateY(0) scale(0.5); }
    10% { opacity: 0.9; }
    100% { top: -88px; opacity: 0; transform: translateY(-88px) scale(1.2); }
}

@keyframes bubbleRise6 {
    0% { top: 0; opacity: 0; transform: translateY(0) scale(0.5); }
    10% { opacity: 0.7; }
    100% { top: -92px; opacity: 0; transform: translateY(-92px) scale(1.3); }
}

@keyframes bubbleRise7 {
    0% { top: 0; opacity: 0; transform: translateY(0) scale(0.5); }
    10% { opacity: 0.8; }
    100% { top: -82px; opacity: 0; transform: translateY(-82px) scale(1.1); }
}

@keyframes bubbleRise8 {
    0% { top: 0; opacity: 0; transform: translateY(0) scale(0.5); }
    10% { opacity: 0.9; }
    100% { top: -94px; opacity: 0; transform: translateY(-94px) scale(1.4); }
}

.value-heading {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.italic-underline {
    font-style: italic;
    text-decoration: underline;
    text-decoration-color: var(--white);
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

.gold-underline {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

.david-link {
    color: var(--white);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.david-link:hover {
    color: var(--gold);
}

.arrow-down {
    color: var(--gold);
    font-size: 1em;
    margin-left: 0.5rem;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
    vertical-align: baseline;
}

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

.business-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.business-card {
    background: linear-gradient(135deg, #f5f5dc 0%, #e8e8d0 100%);
    border-radius: 30px;
    padding: 2.5rem;
    text-align: left;
    transition: transform 0.3s ease;
}

.business-card:hover {
    transform: translateY(-5px);
}

.card-image-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
}

.card-arrow {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(203, 158, 87, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-arrow:hover {
    transform: rotate(-45deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(203, 158, 87, 0.6);
    background-color: #E0B06D;
}

.card-title {
    font-size: 2rem;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.card-title .italic {
    font-style: italic;
    font-weight: 400;
}

.card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Experts Section */
.experts-section {
    background: linear-gradient(180deg, rgba(235, 238, 230, 1) 0%, rgba(245, 240, 225, 1) 50%, rgba(238, 230, 215, 1) 100%);
    padding: 8rem 4rem 8rem 4rem;
    position: relative;
    z-index: 1;
}

.experts-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.experts-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 50px;
    margin-bottom: 2.5rem;
    position: relative;
}

.icon-cog-large {
    width: 3rem;
    height: 3rem;
    color: var(--navy-blue);
    animation: rotateCogClockwise 8s linear infinite;
    position: absolute;
    left: 0;
}

.icon-cog-small {
    width: 2.2rem;
    height: 2.2rem;
    color: var(--navy-blue);
    animation: rotateCogCounterClockwise 8s linear infinite;
    position: absolute;
    right: 2px;
    top: 35%;
    transform: translateY(-50%);
}

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

@keyframes rotateCogCounterClockwise {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(-360deg);
    }
}

.experts-heading {
    font-size: 3.25rem;
    font-weight: 400;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 6rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.process-highlight {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.stay-ahead {
    font-style: italic;
    text-decoration: underline;
    text-decoration-color: #1a1a1a;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

.expertise-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.expertise-card {
    background: #FFFFFF;
    border: 3px solid #1a1a1a;
    border-radius: 40px;
    padding: 3rem 2.5rem;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 12px 12px 0px rgba(0, 0, 0, 0.85);
}

.expertise-card:nth-child(2) {
    transform: translateY(60px);
}

.expertise-card:nth-child(4) {
    transform: translateY(60px);
}

.expertise-card:hover {
    transform: translateY(-3px);
    box-shadow: 14px 14px 0px rgba(0, 0, 0, 0.85);
}

.expertise-card:nth-child(2):hover,
.expertise-card:nth-child(4):hover {
    transform: translateY(57px);
}

.card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gold);
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: 700;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.expertise-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.expertise-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Value Section Responsive */
@media (max-width: 968px) {
    .value-section {
        padding: 6rem 2rem 4rem 2rem;
    }

    .value-heading {
        font-size: 2.25rem;
    }

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

    .experts-section {
        padding: 6rem 2rem 6rem 2rem;
    }

    .experts-heading {
        font-size: 2.5rem;
        margin-bottom: 4rem;
    }

    .expertise-cards {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .expertise-card:nth-child(2),
    .expertise-card:nth-child(4) {
        transform: translateY(0);
    }

    .expertise-card:hover {
        transform: translateY(-3px);
    }

    .expertise-card:nth-child(2):hover,
    .expertise-card:nth-child(4):hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 640px) {
    .value-section {
        padding: 5rem 1.5rem 3rem 1.5rem;
    }

    .value-heading {
        font-size: 1.75rem;
    }

    .business-card {
        padding: 2rem;
    }

    .card-image {
        height: 220px;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .experts-section {
        padding: 5rem 1.5rem 5rem 1.5rem;
    }

    .experts-heading {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .expertise-cards {
        gap: 3rem;
    }

    .expertise-card {
        padding: 2rem 1.5rem;
        box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.85);
    }

    .expertise-card:hover {
        box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.85);
    }

    .card-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .expertise-title {
        font-size: 1.125rem;
    }

    .expertise-description {
        font-size: 0.9rem;
    }

    /* Pricing Section Responsive - Tablet */
    .pricing-section {
        padding: 6rem 2rem;
    }

    .pricing-heading {
        font-size: 2.5rem;
    }

    .pricing-subheading {
        font-size: 1.125rem;
    }

    .pricing-cards {
        display: flex;
        flex-direction: column-reverse;
        gap: 2.5rem;
    }

    .pricing-card-header {
        padding: 2.5rem 2rem 1.5rem;
    }

    .plan-name {
        font-size: 1.75rem;
    }

    .price-amount {
        font-size: 3.5rem;
    }

    .pricing-card-body {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 640px) {
    /* Pricing Section Responsive - Mobile */
    .pricing-section {
        padding: 4rem 1.5rem;
    }

    .pricing-heading {
        font-size: 2rem;
    }

    .pricing-subheading {
        font-size: 1rem;
    }

    .icon-tag {
        width: 50px;
        height: 50px;
    }

    .pricing-header {
        margin-bottom: 3rem;
    }

    .pricing-cards {
        gap: 2rem;
    }

    .pricing-card-header {
        padding: 2rem 1.5rem 1.25rem;
    }

    .plan-name {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .price-currency {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2.75rem;
    }

    .price-period {
        font-size: 1.125rem;
        margin-top: 1.5rem;
    }

    .plan-subtitle {
        font-size: 0.9rem;
    }

    .pricing-card-body {
        padding: 1.5rem 1.25rem;
    }

    .features-section {
        margin-bottom: 2rem;
    }

    .features-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .feature-item {
        font-size: 0.9rem;
        gap: 0.75rem;
    }

    .check-icon, .x-icon {
        width: 20px;
        height: 20px;
    }

    .add-ons-section {
        padding: 1.25rem;
    }

    .add-ons-title {
        font-size: 0.95rem;
    }

    .add-on-item {
        font-size: 0.875rem;
    }

    .pricing-card-footer {
        padding: 0 1.5rem 2.5rem;
    }

    .btn-pricing {
        font-size: 1rem;
        padding: 0.875rem 1.75rem;
    }

    .featured-badge {
        font-size: 0.75rem;
        padding: 0.4rem 2.5rem;
    }
}

/* Contact Page Styles */
.contact-hero-section {
    position: relative;
    min-height: 50vh;
    padding: 12rem 4rem 4rem 4rem;
    z-index: 2;
    background-image: url('images/background-optimized.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 15, 25, 0.85) 0%, rgba(20, 25, 40, 0.75) 100%);
    z-index: -1;
}

.contact-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-hero-subtitle {
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.contact-content-section {
    background: linear-gradient(135deg, #F5F1E8 0%, #E8E0D0 100%);
    padding: 6rem 4rem;
    position: relative;
    z-index: 2;
}

.contact-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: #EEE7DA;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 3rem 2.5rem;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.4);
    border-color: rgba(203, 158, 87, 0.3);
}

.contact-card .footer-logo-wrapper {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 180px;
}

.contact-card .footer-logo {
    width: 100%;
    height: auto;
}

.contact-info-card {
    padding-bottom: 6rem;
}

/* Web3Forms Contact Form Styles */
.web3-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-field {
    position: relative;
    display: flex;
    align-items: center;
}

.required-indicator {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: var(--navy-blue);
    font-size: 1.25rem;
    font-weight: 600;
    pointer-events: none;
}

.web3-contact-form textarea + .required-indicator {
    top: 1rem;
}

.web3-contact-form input,
.web3-contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    padding-right: 2.5rem;
    border: 1px solid rgba(37, 64, 84, 0.2);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: #FFFFFF;
    color: var(--navy-blue);
    transition: all 0.3s ease;
}

.web3-contact-form input:focus,
.web3-contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(203, 158, 87, 0.1);
}

.web3-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.web3-contact-form input::placeholder,
.web3-contact-form textarea::placeholder {
    color: #999;
}

.form-submit-btn {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.form-submit-btn:hover {
    background: #E0B06D;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(203, 158, 87, 0.5);
}

.page-footer {
    background: linear-gradient(135deg, #1a2f3d 0%, #0d1a23 100%);
    padding: 4rem 2rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-content-simple {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-simple {
    width: 180px;
    height: auto;
}

.footer-tagline-simple {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-section-heading {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-social-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-social-simple {
    display: flex;
    gap: 1rem;
}

.social-link-simple {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link-simple:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.footer-nav-simple {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.page-footer .footer-bottom {
    margin-top: 0;
    padding-top: 2rem;
}

/* Minimal Home Footer Styles */
.page-footer-minimal {
    background: linear-gradient(135deg, #1a2f3d 0%, #0d1a23 100%);
    padding: 3rem 2rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.page-footer-minimal .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0 1.5rem 0;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Page Responsive */
@media (max-width: 968px) {
    .contact-hero-section {
        padding: 10rem 2rem 3rem 2rem;
        min-height: 45vh;
    }

    .contact-hero-title {
        font-size: 3rem;
    }

    .contact-hero-subtitle {
        font-size: 1.375rem;
    }

    .contact-content-section {
        padding: 4rem 2rem;
    }

    .contact-cards-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content-simple {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-social-nav {
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .contact-hero-section {
        padding: 8rem 1.5rem 3rem 1.5rem;
        min-height: 40vh;
    }

    .contact-hero-title {
        font-size: 2.25rem;
    }

    .contact-hero-subtitle {
        font-size: 1.125rem;
    }

    .contact-content-section {
        padding: 4rem 1.5rem;
    }

    .contact-cards-container {
        gap: 2rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-info-card {
        padding-bottom: 5rem;
    }

    .contact-card .footer-logo-wrapper {
        width: 150px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .page-footer {
        padding: 3rem 1.5rem 1.5rem 1.5rem;
    }

    .footer-content-simple {
        gap: 2rem;
    }

    .footer-section-heading {
        font-size: 1rem;
    }

    .footer-contact-item {
        font-size: 0.875rem;
    }

    .footer-nav-simple {
        gap: 0.5rem;
    }
}

/* ============================================
   NAVIGATION DROPDOWN STYLES
   ============================================ */

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(36, 72, 95, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: rgba(203, 158, 87, 0.2);
    color: var(--gold);
}

/* Mobile: No dropdown, show as regular links */
@media (max-width: 968px) {
    .nav-dropdown {
        display: block;
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
        min-width: auto;
    }

    .nav-dropdown-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Clickable Service Cards on Homepage */
.business-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.business-card-link:hover .business-card {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(36, 72, 95, 0.15);
}

/* ============================================
   SERVICE PAGE STYLES
   ============================================ */

/* Service Page Hero */
.service-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    overflow: hidden;
}

.service-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(36, 72, 95, 0.85) 0%, rgba(26, 47, 61, 0.75) 100%);
    z-index: 1;
}

.service-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 180px 2rem 60px 2rem;
    max-width: 800px;
}

.service-hero__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}

.service-hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.service-hero__underline {
    width: 200px;
    height: 4px;
    background: var(--gold);
    margin: 0 auto 32px auto;
    border-radius: 2px;
}

.service-hero__description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Blocks - Staggered Layout */
.service-blocks {
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 2;
    margin-top: 100vh;
    min-height: 400px;
}

.service-blocks__container {
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin: 0;
    padding: 0;
}

.service-block {
    flex: 1;
    border-radius: 0;
    padding: 4rem 3rem;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
}

/* Navy shades - dark to light, left to right */
.service-block--1 {
    background: #1a2f3d; /* Dark navy */
    margin-top: -120px;
}

.service-block--2 {
    background: #24485F; /* Medium navy (brand navy) */
    margin-top: -60px;
}

.service-block--3 {
    background: #2d5a73; /* Light navy */
    margin-top: 0;
}

.service-block__number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.service-block:hover .service-block__number {
    transform: scale(1.2);
}

.service-block__number span {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.service-block__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-block__description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

/* Navy Content Section */
.navy-section {
    background: linear-gradient(180deg, rgba(235, 238, 230, 1) 0%, rgba(245, 240, 225, 1) 50%, rgba(238, 230, 215, 1) 100%);
    padding: 8rem 4rem;
    padding-top: 32rem;
    position: relative;
    z-index: 1;
    margin-top: -400px;
}

.navy-section__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.navy-section__title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.navy-section__description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
}

/* Navy Section Benefits Grid */
.navy-benefits {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    justify-items: center;
}

.navy-benefit-item {
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 350px;
    width: 100%;
    grid-column: span 2;
    transition: transform 0.3s ease;
}

.navy-benefit-item:hover {
    transform: translateY(-5px);
}

/* Center the last 2 items in the grid */
.navy-benefit-item:nth-child(4) {
    grid-column: 2 / 4;
}

.navy-benefit-item:nth-child(5) {
    grid-column: 4 / 6;
}

.navy-benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--gold);
    stroke-width: 2;
}

.navy-benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.navy-benefit-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Tablet breakpoint */
@media (max-width: 968px) {
    .navy-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }

    /* Reset desktop 6-column spanning */
    .navy-benefit-item {
        grid-column: span 1;
    }

    /* Center last item on tablet */
    .navy-benefit-item:nth-child(4) {
        grid-column: auto;
    }

    .navy-benefit-item:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 350px;
        margin: 0 auto;
    }

    .navy-benefit-icon {
        width: 50px;
        height: 50px;
    }

    .navy-benefit-title {
        font-size: 1.3rem;
    }

    .navy-benefit-description {
        font-size: 0.95rem;
    }
}

/* Mobile breakpoint */
@media (max-width: 640px) {
    .navy-section {
        padding: 6rem 2rem;
    }

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

    /* Reset all spanning and positioning for single column */
    .navy-benefit-item {
        grid-column: span 1;
    }

    .navy-benefit-item:nth-child(4),
    .navy-benefit-item:nth-child(5) {
        grid-column: auto;
    }

    .navy-benefit-icon {
        width: 48px;
        height: 48px;
    }

    .navy-benefit-title {
        font-size: 1.2rem;
    }

    .navy-benefit-description {
        font-size: 0.9rem;
    }
}

/* Service Detail Sections */
.service-detail {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.service-detail--alt {
    background: linear-gradient(135deg, #F5F1E8 0%, #E8E0D0 100%);
}

.service-detail__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-detail__content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.service-detail--reverse .service-detail__content {
    flex-direction: row-reverse;
}

.service-detail__image-wrapper {
    flex: 1;
    max-width: 550px;
}

.service-detail__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-detail__text {
    flex: 1;
    max-width: 550px;
}

.service-detail__label {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-blue);
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-detail__heading {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0 0 25px 0;
}

.service-detail__description {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

/* Feature List */
.service-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    color: var(--gold);
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.feature-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Service CTA Section */
.service-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    z-index: 2;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: linear-gradient(135deg, #1a2f3d 0%, #24485F 100%);
    z-index: 0;
}

/* Decorative gradient shapes */
.service-cta::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(203, 158, 87, 0.2) 0%, rgba(203, 158, 87, 0) 70%);
    border-radius: 50%;
    top: -150px;
    right: -100px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.service-cta__shape {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, rgba(203, 158, 87, 0.2) 0%, rgba(203, 158, 87, 0) 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.service-cta__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.service-cta__heading {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin: 0 0 20px 0;
}

.service-cta__text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px 0;
    line-height: 1.7;
}

.service-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1.125rem 2.75rem;
    background-color: var(--gold);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.service-cta__button:hover {
    background-color: #E0B06D;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(203, 158, 87, 0.5);
}

/* Service Page Responsive - Tablet */
@media (max-width: 968px) {
    .service-hero {
        min-height: 100vh;
    }

    .service-hero__content {
        padding: 160px 2rem 50px 2rem;
    }

    .service-hero__title {
        font-size: 3rem;
    }

    .service-hero__underline {
        width: 150px;
        height: 3px;
    }

    .service-hero__description {
        font-size: 17px;
    }

    /* Service Blocks - Stack on tablet */
    .service-blocks {
        margin-top: 100vh;
    }

    .service-blocks__container {
        flex-direction: column;
        padding: 0;
        gap: 0;
    }

    .service-block--1,
    .service-block--2,
    .service-block--3 {
        margin-top: 0;
    }

    .service-block {
        min-height: 300px;
        padding: 3.5rem 2rem;
        border-radius: 0;
    }

    /* Navy Section */
    .navy-section {
        padding: 6rem 2rem;
        padding-top: 26rem;
        margin-top: -300px;
    }

    .navy-section__title {
        font-size: 2.5rem;
    }

    .navy-section__description {
        font-size: 1.1rem;
    }

    .service-cta {
        padding: 80px 0;
    }

    .service-cta__heading {
        font-size: 36px;
    }
}

/* Service Page Responsive - Mobile */
@media (max-width: 640px) {
    .service-hero {
        min-height: 100vh;
    }

    .service-hero__image {
        object-position: center;
    }

    .service-hero__content {
        padding: 140px 1.5rem 50px 1.5rem;
    }

    .service-hero__title {
        font-size: 2.25rem;
        line-height: 1.25;
    }

    .service-hero__underline {
        width: 120px;
        height: 3px;
        margin-bottom: 24px;
    }

    .service-hero__description {
        font-size: 16px;
    }

    /* Service Blocks - Stack on mobile */
    .service-blocks {
        margin-top: 100vh;
    }

    .service-blocks__container {
        padding: 0;
        gap: 0;
    }

    .service-block {
        min-height: 280px;
        padding: 3rem 1.5rem;
        border-radius: 0;
    }

    .service-block__title {
        font-size: 1.5rem;
    }

    .service-block__description {
        font-size: 0.95rem;
    }

    /* Navy Section */
    .navy-section {
        padding: 5rem 1.5rem;
        padding-top: 20rem;
        margin-top: -250px;
    }

    .navy-section__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .navy-section__description {
        font-size: 1rem;
    }


    .service-detail__content {
        gap: 40px;
    }

    .service-detail__heading {
        font-size: 28px;
    }

    .service-detail__description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .service-features {
        gap: 20px;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
    }

    .feature-content h4 {
        font-size: 16px;
    }

    .feature-content p {
        font-size: 14px;
    }

    .service-cta {
        padding: 60px 0;
    }

    .service-cta__heading {
        font-size: 28px;
    }

    .service-cta__text {
        font-size: 15px;
    }

    .service-cta__button {
        padding: 1rem 2rem;
        font-size: 14px;
    }
}

/* ============================================
   FOOTER (Endurance Painting Style)
   ============================================ */
.footer {
    background: #000000;
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
    z-index: 10;
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 68px;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 50px;
}

.footer__column {
    display: flex;
    flex-direction: column;
}

.footer__logo {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.footer__tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    margin-top: 15px;
    line-height: 1.5;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.footer__social-link:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.social-icon {
    width: 20px;
    height: 20px;
}

.footer__heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 25px 0;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer__link:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer__address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
}

.footer__address p {
    margin: 0 0 8px;
}

.footer__phone {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__phone:hover {
    color: var(--white);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

/* Footer Responsive - Tablet */
@media (max-width: 968px) {
    .footer__container {
        padding: 0 40px;
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Footer Responsive - Mobile */
@media (max-width: 640px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer__container {
        padding: 0 20px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__logo {
        width: 100px;
    }

    .footer__heading {
        font-size: 16px;
    }

    .footer__link,
    .footer__address {
        font-size: 14px;
    }
}
