:root {
    /* Brand Colors - True North Living */
    --midnight-blue: #243B53;
    --ivory-white: #FDFBF7;
    --sky-mist: #C8E3D4;
    --golden-wheat: #E6B980;
    --clay-rose: #D6A77A;
    --charcoal: #2F2F2F;
    
    /* Color Usage */
    --primary-color: var(--midnight-blue);
    --primary-dark: #1a2a3a;
    --primary-light: #3a5a73;
    --bg-primary: var(--ivory-white);
    --bg-secondary: var(--sky-mist);
    --accent-primary: var(--golden-wheat);
    --accent-secondary: var(--clay-rose);
    --text-dark: var(--charcoal);
    --text-light: #5a5a5a;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    
    /* Modern Shadows */
    --shadow-sm: 0 2px 8px rgba(36, 59, 83, 0.08);
    --shadow: 0 4px 16px rgba(36, 59, 83, 0.12);
    --shadow-md: 0 8px 24px rgba(36, 59, 83, 0.15);
    --shadow-lg: 0 12px 40px rgba(36, 59, 83, 0.18);
    --shadow-xl: 0 20px 60px rgba(36, 59, 83, 0.25);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--midnight-blue) 0%, var(--primary-dark) 100%);
    --gradient-accent: linear-gradient(135deg, var(--golden-wheat) 0%, var(--clay-rose) 100%);
    --gradient-soft: linear-gradient(135deg, var(--sky-mist) 0%, rgba(200, 227, 212, 0.5) 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

*::selection {
    background: var(--accent-primary);
    color: var(--primary-color);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
}

body {
    font-family: 'Inter', 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-primary);
    padding-top: 130px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header - Ultra Modern Style */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(36, 59, 83, 0.95);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-bottom: 1px solid rgba(230, 185, 128, 0.2);
    transition: all var(--transition-base);
    box-shadow: 0 1px 0 0 rgba(230, 185, 128, 0.1) inset, 0 4px 24px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 185, 128, 0.3), transparent);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(230, 185, 128, 0.2) 20%, 
        rgba(230, 185, 128, 0.4) 50%, 
        rgba(230, 185, 128, 0.2) 80%, 
        transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

/* Header Top Bar */
.header-top-bar {
    border-bottom: 1px solid rgba(230, 185, 128, 0.25);
    background: rgba(36, 59, 83, 0.98);
    font-size: 0.75rem;
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 1.5rem;
    color: rgba(253, 251, 247, 0.92);
}

.header-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: inherit;
    text-decoration: none;
    opacity: 0.9;
    white-space: nowrap;
}

.header-contact-item svg {
    width: 14px;
    height: 14px;
}

.header-contact-item span {
    letter-spacing: 0.03em;
}

.header-contact-item:hover {
    opacity: 1;
}

.header-contact-item--phone {
    font-weight: 500;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.header.scrolled {
    background: rgba(36, 59, 83, 0.98);
    box-shadow: 0 1px 0 0 rgba(230, 185, 128, 0.15) inset, 0 8px 32px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(230, 185, 128, 0.25);
}

.header.scrolled::after {
    opacity: 0.8;
}

/* Header Wavy Design */
.header-wavy-design {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.wavy-svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 -2px 8px rgba(0, 0, 0, 0.1));
}

.wavy-svg path {
    fill: rgba(36, 59, 83, 0.95);
    animation: wavyFlow 8s ease-in-out infinite;
}

@keyframes wavyFlow {
    0%, 100% { 
        transform: translateX(0);
    }
    50% { 
        transform: translateX(-20px);
    }
}

/* Header Side Decorations */
.header .side-decoration {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    min-width: 150px;
    max-width: 300px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

.header .side-decoration-left {
    left: 0;
    background: linear-gradient(90deg, 
        rgba(36, 59, 83, 0.4) 0%, 
        rgba(36, 59, 83, 0.2) 30%, 
        rgba(36, 59, 83, 0.05) 70%, 
        transparent 100%);
}

.header .side-decoration-right {
    right: 0;
    background: linear-gradient(270deg, 
        rgba(36, 59, 83, 0.4) 0%, 
        rgba(36, 59, 83, 0.2) 30%, 
        rgba(36, 59, 83, 0.05) 70%, 
        transparent 100%);
}

.header .side-decoration::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 50%;
    background: linear-gradient(180deg, 
        transparent, 
        rgba(230, 185, 128, 0.3), 
        rgba(230, 185, 128, 0.5), 
        rgba(230, 185, 128, 0.3), 
        transparent);
    border-radius: var(--radius-full);
    box-shadow: 0 0 10px rgba(230, 185, 128, 0.3);
}

.header .side-decoration-left::before {
    left: 30px;
}

.header .side-decoration-right::before {
    right: 30px;
}

.header .side-decoration::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, 
        transparent, 
        rgba(230, 185, 128, 0.1), 
        rgba(230, 185, 128, 0.2), 
        rgba(230, 185, 128, 0.1), 
        transparent);
}

.header .side-decoration-left::after {
    right: 0;
}

.header .side-decoration-right::after {
    left: 0;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 185, 128, 0.3), transparent);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(230, 185, 128, 0.2) 20%, 
        rgba(230, 185, 128, 0.4) 50%, 
        rgba(230, 185, 128, 0.2) 80%, 
        transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.header.scrolled {
    background: rgba(36, 59, 83, 0.98);
    box-shadow: 0 1px 0 0 rgba(230, 185, 128, 0.15) inset, 0 8px 32px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(230, 185, 128, 0.25);
}

.header.scrolled::after {
    opacity: 0.8;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(230, 185, 128, 0.1) 25%, 
        transparent 50%, 
        rgba(230, 185, 128, 0.1) 75%, 
        transparent 100%);
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 1001;
    flex-shrink: 0;
    gap: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    transition: all var(--transition-base);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    position: relative;
    overflow: visible;
}

.logo-link::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 185, 128, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.logo-link:hover {
    transform: scale(1.05) translateY(-2px);
    opacity: 0.9;
}

.logo-link:hover::before {
    opacity: 1;
}

.logo-icon {
    height: 90px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
    transition: all var(--transition-base);
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    padding-left: 1.25rem;
}

.logo-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg, 
        var(--golden-wheat) 0%, 
        rgba(230, 185, 128, 0.6) 50%, 
        var(--golden-wheat) 100%);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(230, 185, 128, 0.4);
}

.logo-business-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.8px;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 0, 0, 0.15);
    position: relative;
    display: inline-block;
}

.logo-business-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--golden-wheat) 0%, 
        transparent 100%);
    transition: width 0.6s ease;
    border-radius: 2px;
}

.logo:hover .logo-business-name::after {
    width: 100%;
}

.logo-tagline {
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    font-weight: 500;
    color: rgba(230, 185, 128, 0.95);
    margin: 0;
    line-height: 1.5;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 
        0 0 10px rgba(230, 185, 128, 0.3),
        1px 1px 3px rgba(0, 0, 0, 0.2);
    max-width: 320px;
    font-family: 'Inter', sans-serif;
    position: relative;
    padding-top: 0.25rem;
}

.logo-tagline::before {
    content: '✦';
    display: inline-block;
    margin-right: 0.5rem;
    color: var(--golden-wheat);
    font-size: 0.7em;
    opacity: 0.8;
    animation: twinkle 3s ease-in-out infinite;
}

.logo-tagline::after {
    content: '✦';
    display: inline-block;
    margin-left: 0.5rem;
    color: var(--golden-wheat);
    font-size: 0.7em;
    opacity: 0.8;
    animation: twinkle 3s ease-in-out infinite 1.5s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu-right {
    margin-left: auto;
    position: relative;
}

.nav-menu-right::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -1rem;
    right: -1rem;
    transform: translateY(-50%);
    height: 46px;
    border-radius: 999px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.45;
    background: radial-gradient(circle at right, rgba(230, 185, 128, 0.5), transparent 70%);
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
    display: block;
    letter-spacing: 0.3px;
    overflow: hidden;
    border: 1px solid transparent;
    background: rgba(230, 185, 128, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 185, 128, 0.25), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    transform: translateX(-50%);
    transition: width var(--transition-base);
    border-radius: var(--radius-full);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transform: translateX(-50%);
    transition: width var(--transition-base);
    border-radius: var(--radius-full);
}

.nav-menu a:hover {
    color: var(--accent-primary);
    transform: translateY(-2px);
    border-color: rgba(230, 185, 128, 0.4);
    background: rgba(230, 185, 128, 0.2);
    box-shadow: 0 4px 12px rgba(230, 185, 128, 0.25);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-menu a.book-appointment {
    background: rgba(230, 185, 128, 0.05);
    font-weight: 500;
    opacity: 0.85;
}

.nav-menu a.book-appointment:hover {
    opacity: 1;
    background: rgba(230, 185, 128, 0.15);
}

.nav-menu a:hover::before {
    width: 200px;
    height: 200px;
}

.nav-menu a:hover::after {
    width: 70%;
}

.nav-menu a:hover::after {
    width: 60%;
}

.nav-menu a.active {
    color: var(--accent-primary);
    background: rgba(230, 185, 128, 0.25);
    border-color: rgba(230, 185, 128, 0.4);
    box-shadow: 0 2px 8px rgba(230, 185, 128, 0.3);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-menu a.active::after {
    width: 60%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform var(--transition-base);
    display: inline-block;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    list-style: none;
    padding: 0.75rem 0;
    margin: 0.5rem 0 0 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    border: 1px solid rgba(36, 59, 83, 0.15);
    z-index: 1000;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.875rem 1.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    border-radius: 0;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-accent);
    transform: scaleY(0);
    transition: transform var(--transition-base);
}

.dropdown-menu a:hover {
    background: rgba(200, 227, 212, 0.3);
    color: var(--primary-color);
    padding-left: 2rem;
    transform: translateX(0);
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu a::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 0.5rem;
    z-index: 1002;
    position: absolute;
    right: 1.5rem;
    top: 1.25rem;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

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

/* Hero Section with Parallax */
.hero-parallax {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-primary);
    color: var(--text-dark);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(230, 185, 128, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(200, 227, 212, 0.10) 0%, transparent 50%);
    opacity: 0.5;
    z-index: 3;
    pointer-events: none;
}

.hero-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(230, 185, 128, 0.25), rgba(200, 227, 212, 0.25));
    animation: float 6s ease-in-out infinite;
    filter: blur(1px);
}

.hero-shape-1 {
    width: 250px;
    height: 250px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 180px;
    height: 180px;
    top: 50%;
    right: 15%;
    animation-delay: 1.5s;
}

.hero-shape-3 {
    width: 120px;
    height: 120px;
    bottom: 25%;
    left: 20%;
    animation-delay: 3s;
}

.hero-shape-4 {
    width: 200px;
    height: 200px;
    top: 70%;
    right: 25%;
    animation-delay: 4.5s;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    transform: none;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(253, 251, 247, 0.96) 0%, rgba(200, 227, 212, 0.75) 100%);
    z-index: 2;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(230, 185, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(200, 227, 212, 0.08) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 4rem 0;
}

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.hero-logo-icon {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.hero-content {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.3s both;
    padding: 0 1.5rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1.75rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--primary-color);
    text-shadow: 0 2px 8px rgba(36, 59, 83, 0.08);
}

.hero-title br {
    display: block;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-dark);
    letter-spacing: 0.2px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.85;
    text-align: justify;
}

.btn-hero {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-coach-photo {
    margin: 2rem auto 1.75rem;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(36, 59, 83, 0.15);
    box-shadow: 0 10px 25px rgba(36, 59, 83, 0.15);
}

.hero-coach-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.scroll-indicator {
    display: none;
}

.scroll-indicator span {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: scrollDot 2s infinite;
}

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

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

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

@keyframes scrollDot {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(12px); }
    100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left var(--transition-slow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #d4a870 0%, #c89a6a 100%);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
    z-index: -1;
}

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

.btn-secondary:hover::before {
    width: 100%;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* Sections */
.section {
    padding: 3rem 0;
}

.page-hero {
    padding-top: 5rem;
}

.section-alt {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.8px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Content Grid */
.content-grid {
    max-width: 800px;
    margin: 0 auto;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.content-text p {
    margin-bottom: 1.5rem;
}

.content-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--bg-secondary);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-category {
    margin-bottom: 5rem;
    scroll-margin-top: 120px;
}

.service-category-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-secondary);
}

.service-category-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    color: var(--primary-color);
    margin: 0;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--bg-secondary);
    transition: all var(--transition-base);
    text-align: left;
}

.service-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.service-list li {
    color: var(--text-dark);
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.service-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Services Hero Section */
.services-hero-section {
    background: linear-gradient(135deg, rgba(36, 59, 83, 0.05), rgba(200, 227, 212, 0.15));
    padding: 3rem 0 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(230, 185, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(200, 227, 212, 0.15) 0%, transparent 50%);
    opacity: 0.6;
}

.services-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(230, 185, 128, 0.2), rgba(200, 227, 212, 0.2));
    animation: float 6s ease-in-out infinite;
}

.hero-shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.hero-shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.services-hero-content {
    position: relative;
    z-index: 2;
}

.hero-icon-wrapper {
    margin-bottom: 2rem;
    display: inline-block;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(230, 185, 128, 0.2), rgba(200, 227, 212, 0.2));
    border-radius: 50%;
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.services-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
}

.services-hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-divider span {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.hero-divider svg {
    color: var(--accent-primary);
    animation: rotate 3s linear infinite;
}

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

/* Service Section */
.service-section {
    padding: 3rem 0;
}

.service-section-individual {
    background: var(--bg-white);
}

.service-section-group {
    background: var(--bg-secondary);
}

.service-section-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.service-section-reverse {
    direction: rtl;
}

.service-section-reverse > * {
    direction: ltr;
}

.service-image-side {
    position: relative;
}

.service-image-side::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--accent-primary);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    animation: float 4s ease-in-out infinite;
}

.service-image-side::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: var(--bg-secondary);
    border-radius: 50%;
    opacity: 0.4;
    z-index: -1;
    animation: float 5s ease-in-out infinite reverse;
}

.service-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s ease;
    border: 4px solid rgba(255, 255, 255, 0.5);
}

.service-section-wrapper:hover .service-image {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 59, 83, 0.2), transparent);
    border-radius: 24px;
    transition: opacity 0.4s ease;
}

.service-section-wrapper:hover .service-image-overlay {
    opacity: 0.7;
}

.service-content-side {
    padding: 1rem 0;
    position: relative;
}

.service-number {
    position: absolute;
    top: -20px;
    left: -40px;
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    font-weight: 700;
    color: rgba(36, 59, 83, 0.05);
    line-height: 1;
    z-index: 0;
    user-select: none;
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--accent-primary), rgba(230, 185, 128, 0.8));
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(230, 185, 128, 0.3);
    transition: all 0.3s ease;
}

.service-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 185, 128, 0.4);
}

.service-content-side h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.service-card-modern {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(36, 59, 83, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(230, 185, 128, 0.1), transparent);
    border-radius: 50%;
    transform: translate(30%, -30%);
    z-index: 0;
}

.service-card-modern > * {
    position: relative;
    z-index: 1;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-primary), var(--bg-secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-modern:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-color: rgba(230, 185, 128, 0.3);
}

.service-card-modern:hover::before {
    opacity: 1;
}

.service-card-modern:hover .service-card-decoration {
    transform: translate(20%, -20%) scale(1.1);
    transition: transform 0.4s ease;
}

.service-card-modern h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-card-modern p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card-modern strong {
    color: var(--primary-color);
    font-weight: 600;
}

.service-list-modern {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-list-modern li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
}

.service-list-modern li svg {
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.service-closing {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--primary-color);
    font-style: italic;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent-primary);
}

.service-card-modern .btn {
    margin-top: 1rem;
}

/* Services CTA Section */
.services-cta-section {
    background: linear-gradient(135deg, rgba(36, 59, 83, 0.95), rgba(36, 59, 83, 0.85));
    padding: 3rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(230, 185, 128, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(200, 227, 212, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.cta-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-slow 8s ease-in-out infinite;
}

.floating-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-2 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    right: 15%;
    animation-delay: 2.5s;
}

.floating-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 80%;
    animation-delay: 5s;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) translateX(0); }
    33% { transform: translateY(-30px) translateX(20px); }
    66% { transform: translateY(20px) translateX(-15px); }
}

.services-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-icon {
    margin-bottom: 2rem;
    display: inline-block;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    backdrop-filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
}

.services-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-emphasis {
    font-size: 1.3rem !important;
    margin-top: 2rem !important;
    margin-bottom: 2.5rem !important;
}

.services-cta-content .btn {
    margin-top: 1rem;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

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

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

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(230, 185, 128, 0.6);
}

.services-footer {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--bg-secondary);
}

.services-footer p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.services-footer p:last-child {
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Schedule Section */
.schedule-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--bg-secondary);
}

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

.schedule-info {
    max-width: 600px;
    margin: 0 auto;
}

.schedule-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.schedule-info > p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.schedule-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
}

.schedule-btn svg {
    transition: transform var(--transition-base);
}

.schedule-btn:hover svg {
    transform: translate(3px, -3px);
}

.schedule-note {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.schedule-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    text-align: center;
    font-style: italic;
    opacity: 0.7;
}

/* Contact Section */
.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-link {
    display: inline-block;
    font-size: 1.2rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    transition: all 0.3s;
}

.contact-link:hover {
    background: var(--primary-color);
    color: white;
}

.contact-cta {
    margin-top: 3rem;
    text-align: center;
}

.contact-cta p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

/* Image Gallery Section */
.image-gallery-section {
    padding: 0;
    overflow: hidden;
    background: var(--bg-primary);
}

.gallery-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-container::-webkit-scrollbar {
    display: none;
}

.gallery-track {
    display: flex;
    width: max-content;
    animation: scrollGallery 30s linear infinite;
}

.gallery-item {
    position: relative;
    min-width: 400px;
    height: 500px;
    margin-right: 1.5rem;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
}

.gallery-item:hover {
    transform: scale(1.05) rotate(1deg);
    border-color: rgba(230, 185, 128, 0.3);
    box-shadow: var(--shadow-xl);
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.65));
    padding: 2rem;
    color: white;
    transform: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    background: radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.75));
}

.gallery-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    margin-bottom: 0.35rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Disable parallax on mobile for better performance */
@media (max-width: 768px) {
    .hero-image {
        background-attachment: scroll;
    }
    
    .parallax-bg {
        background-attachment: scroll;
    }
    
    .gallery-track {
        animation: none;
    }
    
    .gallery-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Parallax Sections */
.parallax-section {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.parallax-section .section-content {
    position: relative;
    z-index: 2;
}

.parallax-section .section-content {
    position: relative;
    z-index: 2;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    will-change: transform;
    z-index: 1;
}

.parallax-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(253, 251, 247, 0.95) 0%, rgba(200, 227, 212, 0.9) 100%);
}

.about-bg {
    background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1920&q=80');
}

.cta-bg {
    background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1920&q=80');
}

.section-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Problem Section */
.problem-section {
    background: linear-gradient(135deg, rgba(36, 59, 83, 0.03), rgba(200, 227, 212, 0.08));
    position: relative;
    overflow: hidden;
}

.problem-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(230, 185, 128, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(200, 227, 212, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, rgba(36, 59, 83, 0.02), rgba(200, 227, 212, 0.05));
    z-index: 1;
    pointer-events: none;
}

.problem-pattern {
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(230, 185, 128, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(200, 227, 212, 0.12) 0%, transparent 40%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(36, 59, 83, 0.02) 2px,
            rgba(36, 59, 83, 0.02) 4px
        );
    opacity: 0.4;
}

.problem-decorative-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.problem-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(230, 185, 128, 0.2), rgba(200, 227, 212, 0.2));
    animation: float 8s ease-in-out infinite;
    filter: blur(2px);
}

.problem-shape-1 {
    width: 180px;
    height: 180px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.problem-shape-2 {
    width: 120px;
    height: 120px;
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.problem-shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.problem-shape-4 {
    width: 100px;
    height: 100px;
    top: 70%;
    right: 20%;
    animation-delay: 6s;
}

.problem-floating .floating-element {
    background: rgba(230, 185, 128, 0.15);
    filter: blur(1.5px);
}

.problem-header {
    position: relative;
    z-index: 3;
}

.problem-section .section-content {
    position: relative;
    z-index: 4;
}

.problem-section .container {
    position: relative;
    z-index: 4;
}

.problem-icon {
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(230, 185, 128, 0.2), rgba(200, 227, 212, 0.2));
    border-radius: 50%;
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

.problem-list {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.problem-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(253, 251, 247, 0.9));
    padding: 1.5rem 2rem 1.5rem 3.5rem;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(36, 59, 83, 0.1);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.problem-item-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(230, 185, 128, 0.2), rgba(200, 227, 212, 0.2));
    border-radius: 50%;
    color: var(--primary-color);
    flex-shrink: 0;
}

.problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--transition-base);
}

.problem-item:hover {
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 8px 30px rgba(36, 59, 83, 0.15);
    border-left-color: var(--accent-primary);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(253, 251, 247, 0.95));
}

.problem-item:hover .problem-item-icon {
    background: linear-gradient(135deg, var(--accent-primary), rgba(230, 185, 128, 0.8));
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.problem-item:hover::before {
    transform: scaleY(1);
}

.problem-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

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

/* Benefits Image Grid */
.benefits-image-section {
    background: var(--bg-primary);
    padding: 6rem 0;
}

.benefits-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-image-card {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 1px solid rgba(36, 59, 83, 0.05);
}

.benefit-image-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 59, 83, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 1;
}

.benefit-image-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(36, 59, 83, 0.1);
}

.benefit-image-card:hover::after {
    opacity: 1;
}

.benefit-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

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

.benefit-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(36, 59, 83, 0.95), transparent);
    padding: 2rem;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.benefit-image-card:hover .benefit-content {
    transform: translateY(0);
}

.benefit-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-top: 1rem;
    line-height: 1.7;
}

/* Process Steps with Images */
.process-image-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.process-steps-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
}

.process-steps-timeline::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(230, 185, 128, 0.15), rgba(200, 227, 212, 0.35), rgba(230, 185, 128, 0.15));
    z-index: 0;
}

.process-step-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem 1.75rem 1.75rem;
    border: 1px solid rgba(36, 59, 83, 0.06);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.process-step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(230, 185, 128, 0.7);
}

.step-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.step-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #243B53;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(230, 185, 128, 0.5);
}

.step-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-dark);
    opacity: 0.7;
}

.process-step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-color);
    min-height: 3.2rem;
    display: flex;
    align-items: center;
}

.process-step-card p {
    font-size: 0.98rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 0.25rem;
}

.process-step-card .btn {
    align-self: flex-start;
    margin-top: auto;
    padding-inline: 1.4rem;
}

.step-content {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.process-step-image h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.process-step-image p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.process-step-image p:first-of-type {
    font-weight: 600;
    color: var(--primary-color);
}

.process-step-image .btn {
    margin-top: auto;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Risk Section */
.risk-section {
    background: var(--bg-secondary);
}

.risk-list {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.risk-item {
    background: var(--bg-white);
    padding: 2rem 2.5rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-secondary);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.risk-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--transition-base);
}

.risk-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--accent-primary);
}

.risk-item:hover::before {
    transform: scaleY(1);
}

.risk-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

.risk-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.risk-cta p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.risk-cta p:last-of-type {
    margin-bottom: 2rem;
}

/* Modern About Section */
.about-modern-section {
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-modern-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(36, 59, 83, 0.05), rgba(200, 227, 212, 0.1));
}

.about-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 59, 83, 0.1), transparent);
    pointer-events: none;
}

.about-content-wrapper {
    background: var(--bg-white);
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    overflow-y: auto;
}

.about-content-inner {
    max-width: 700px;
    margin: 0 auto;
}

.about-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-secondary);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-content-inner p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-content-inner strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-closing {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--primary-color);
    font-style: italic;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
    border-left: 3px solid var(--accent-primary);
}

.about-cta {
    margin-top: 3rem;
}

/* About Preview with Image */
.about-image-section {
    position: relative;
    min-height: 600px;
}

.about-preview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-preview-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.about-preview-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
}

.about-preview-content p:first-of-type {
    font-size: 1.2rem;
}

/* Final CTA with Image */
.final-cta-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.final-cta-image .cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(230, 185, 128, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(200, 227, 212, 0.15) 0%, transparent 50%);
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.final-cta-image .cta-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.final-cta-image .cta-floating-elements .floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-slow 8s ease-in-out infinite;
    filter: blur(1px);
}

.final-cta-image .cta-floating-elements .floating-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.final-cta-image .cta-floating-elements .floating-2 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    right: 15%;
    animation-delay: 2.5s;
}

.final-cta-image .cta-floating-elements .floating-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 80%;
    animation-delay: 5s;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
}

.cta-content p strong {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* Testimonials Section */
.section-testimonials {
    background: var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--accent-secondary);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(36, 59, 83, 0.1);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(230, 185, 128, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
    margin: 0;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
    flex: 1;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #243B53, #1B2A3A);
    color: white;
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 185, 128, 0.28), transparent 60%);
    opacity: 0.9;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 227, 212, 0.24), transparent 65%);
    opacity: 0.8;
}

.footer-inner {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr) minmax(0, 1.5fr);
    gap: 2.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

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

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.footer-logo-row img {
    height: 52px;
    width: auto;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.footer-logo-text h3 {
    font-size: 1.25rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0;
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.8;
    max-width: 320px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(200, 227, 212, 0.14);
    border: 1px solid rgba(200, 227, 212, 0.4);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #E6B980;
}

.footer-section-title {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 0.9rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.65rem;
}

.footer-links a,
.footer-contact a {
    color: white;
    text-decoration: none;
    opacity: 0.82;
    font-size: 0.93rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
}

.footer-links a::after,
.footer-contact a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: rgba(230, 185, 128, 0.85);
    transition: width 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    opacity: 1;
}

.footer-links a:hover::after,
.footer-contact a:hover::after {
    width: 100%;
}

.footer-icon-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(230, 185, 128, 0.9);
}

.footer-email-icon {
    width: 16px;
    height: 16px;
}

.footer-contact li span {
    opacity: 0.85;
    font-size: 0.93rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    opacity: 0.85;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.25rem;
}

.footer-bottom-links a {
    color: white;
    opacity: 0.8;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    opacity: 1;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
        row-gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 2.5rem 0 1.25rem;
    }

    .footer-content {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-wrap: wrap;
        padding: 1rem 1.5rem;
        gap: 1rem;
    }

    .logo {
        order: 1;
        gap: 0.75rem;
    }

    .logo-icon {
        height: 55px;
    }

    .logo-text {
        display: none;
    }

    .nav-menu-right {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(253, 251, 247, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 0 10px 40px rgba(36, 59, 83, 0.15);
        padding: 6rem 2rem 2rem;
        gap: 0.5rem;
        justify-content: flex-start;
        overflow-y: auto;
        z-index: 999;
        margin-left: 0;
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        border-radius: 12px;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
        background: rgba(36, 59, 83, 0.04);
        border-color: rgba(36, 59, 83, 0.08);
        text-shadow: none;
    }

    .nav-menu a::before {
        border-radius: 12px;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(253, 251, 247, 0.5);
        padding: 0;
        margin: 0.5rem 0 0 1rem;
        min-width: auto;
        border-radius: var(--radius-sm);
    }

    .dropdown-menu a {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .dropdown-menu a:hover {
        padding-left: 2rem;
    }

    .dropdown-arrow {
        margin-left: auto;
    }

    .nav-toggle {
        display: flex;
        position: absolute;
        right: 1.5rem;
        top: 1rem;
        z-index: 1002;
    }

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

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

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

    .hero-logo-icon {
        max-width: 350px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid,
    .services-grid,
    .testimonials-grid,
    .benefits-image-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    @media (max-width: 768px) {
        .process-steps-timeline {
            grid-template-columns: minmax(0, 1fr);
        }

        .process-steps-timeline::before {
            display: none;
        }
    }

    .hero-parallax {
        min-height: 90vh;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-logo-icon {
        max-width: 280px;
    }

    .gallery-item {
        min-width: 300px;
        height: 400px;
    }

    .benefit-image-card {
        height: 300px;
    }
    
    .about-modern-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .about-image-frame {
        min-height: 50vh;
        padding: 2rem;
    }
    
    .about-content-wrapper {
        padding: 3rem 2rem;
    }
    
    .about-title {
        font-size: 2.25rem;
    }
    
    .about-intro {
        font-size: 1.1rem;
    }

    .problem-item,
    .risk-item {
        padding: 1.25rem 1.5rem;
    }

    .process-step-image {
        padding: 0;
    }

    .step-image {
        height: 200px;
    }

    .about-preview-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .services-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-section-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-section-reverse {
        direction: ltr;
    }
    
    .service-image {
        height: 400px;
    }
    
    .service-content-side h2 {
        font-size: 2.25rem;
    }
    
    .services-cta-content h2 {
        font-size: 2.25rem;
    }

    .parallax-section {
        min-height: 500px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .logo-icon {
        height: 65px;
        width: auto;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0 3rem;
    }

    .hero-logo-icon {
        max-width: 280px;
    }

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

    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
}
