/* Gotham Font */
@import url('https://fonts.cdnfonts.com/css/gotham');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Light theme colors */
    --primary-color: #000052;
    --primary-hover: #000039;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --background: #ffffff;
    --surface: #f9fafb;
    --border: #e5e7eb;
    --shadow: rgba(0, 0, 0, 0.1);
    --accent: #10b981;
    
    /* Typography */
    --font-primary: 'Gotham', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Gotham', 'Lato', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 1.5rem;
    --border-radius: 0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark theme colors */
[data-theme="dark"] {
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --background: #111827;
    --surface: #1f2937;
    --border: #374151;
    --shadow: rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    transition: var(--transition);
    font-weight: 400; /* Normal weight for body text */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700; /* Gotham Bold for headings */
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: 
        radial-gradient(ellipse at center top, 
            rgba(16, 185, 129, 0.6) 0%, 
            rgba(16, 185, 129, 0.4) 20%, 
            rgba(16, 185, 129, 0.2) 50%, 
            transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(1px);
}

.header.scrolled::before {
    opacity: 1;
}

.header.scrolled,
.header.menu-open {
    background: rgba(0, 0, 82, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.menu-open::before {
    opacity: 1;
}

[data-theme="dark"] .header {
    background: transparent;
}

[data-theme="dark"] .header.scrolled,
[data-theme="dark"] .header.menu-open {
    background: rgba(0, 0, 82, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .header.scrolled::before,
[data-theme="dark"] .header.menu-open::before {
    opacity: 1;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.logo {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 3rem;
    width: auto;
    transition: all 0.3s ease;
    content: url('/data/images/logo.svg');
    opacity: 0;
    animation: fadeInLogo 0.7s ease forwards;
}

.header.scrolled .logo-image {
    content: url('/data/images/logo_white.svg');
    opacity: 0;
    animation: fadeInLogo 0.7s ease forwards;
}

@keyframes fadeInLogo {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-text {
    display: inline-block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
}

.nav-link:hover {
    color: #4d94ff;
    background: white;
    border: 2px solid white;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-toggle {
    background: none;
    border: 2px solid white;
    color: white;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    min-width: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-toggle:hover {
    background: white;
    color: #4d94ff;
    border: 2px solid white;
}

.lang-text {
    display: block;
}

.theme-toggle {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    width: 2rem;
    height: 2rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 1.25rem;
    background: white; /* Always white for visibility on both transparent and blue navbar */
    border-radius: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 6px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.mobile-menu-toggle span:nth-child(3) {
    bottom: 6px;
}

.mobile-menu-toggle span:nth-child(4) {
    display: none;
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translateX(-50%) translateY(50%) rotate(-45deg);
}

.mobile-menu-overlay {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 0; /* Start collapsed */
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    padding: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
    opacity: 1;
    visibility: visible;
    z-index: 1;
    overflow: hidden;
}

.mobile-menu-overlay.active {
    max-height: 50vh; /* Expand to show menu */
    padding: 1.5rem 0;
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0 1rem;
}

.mobile-nav-links li {
    margin-bottom: 0;
}

.mobile-nav-link {
    display: inline-block;
    color: white; /* White text */
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Gotham Bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    background: transparent;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #4d94ff; /* Light blue text on hover */
    background: white; /* White background on hover */
    border: 2px solid white;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 0 4rem; /* Increased top padding to push content down */
}

/* Video Background Styles */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    filter: blur(17px);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

[data-theme="dark"] .hero-video-overlay {
    background: transparent;
}

.hero-container {
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em; /* Tighter letter spacing like the image */
    line-height: 1.1; /* Tighter line height */
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 400; /* Normal weight for readability */
    letter-spacing: -0.01em; /* Slightly tighter letter spacing */
    line-height: 1.5;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: white;
    border: 2px solid #4d94ff;
    padding: 1.125rem 2.5rem;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(77, 148, 255, 0.8) 0%, rgba(77, 148, 255, 1) 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.75s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(60px);
    opacity: 0;
    z-index: -1;
}

.cta-button:hover::before {
    width: 400%;
    height: 400%;
    opacity: 0.9;
    filter: blur(80px);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #4d94ff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.625s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(30px);
    opacity: 0;
    z-index: -1;
}

.cta-button:hover::after {
    width: 250%;
    height: 250%;
    opacity: 0.10;
    filter: blur(40px);
}

.cta-button:hover {
    color: white;
    border-color: #4d94ff;
}

.cta-button .cta-text {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.booking-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    padding: 1.125rem 4rem;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    box-shadow: none;
    min-width: 320px;
}

/* Left vector pattern */
.booking-submit-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 200%;
    background-image: url('/data/images/button-pattern-white.svg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
}

.booking-submit-btn:hover::before {
    opacity: 0.5;
    left: -50px;
}

/* Right vector pattern */
.booking-submit-btn::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(-1); /* Mirror the pattern */
    width: 150px;
    height: 200%;
    background-image: url('/data/images/button-pattern-white.svg');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
}

.booking-submit-btn:hover::after {
    opacity: 0.5;
    right: -50px;
}

.booking-submit-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.booking-submit-btn .btn-text {
    display: inline-block;
    position: relative;
    z-index: 2;
}

.hero-visual {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* Removed - replaced with hero-image-container */

/* Solution Section - Keep original for fallback */

/* Sections */
section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
}

/* Pain Section */
.pain-section {
    position: relative;
    background: var(--surface);
    overflow: hidden;
}

.pain-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/data/images/contact-background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.pain-section .container {
    position: relative;
    z-index: 1;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.pain-item {
    text-align: center;
    padding: 2rem;
    background: var(--background);
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.pain-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px var(--shadow);
}

.pain-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pain-caption {
    font-weight: 600;
    color: var(--text-primary);
}

/* Hero Image Styling */
.hero-image-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    background: linear-gradient(135deg, var(--surface), var(--primary-color));
    transition: var(--transition);
}

.hero-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}

/* Fallback gradient for when image hasn't loaded yet */
.hero-image-container picture::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 66.67%; /* 3:2 aspect ratio */
    background: linear-gradient(135deg, var(--primary-color), var(--accent));
}

/* Services & Pricing Section */
.services-section {
    background: var(--background);
    padding: var(--section-padding);
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.7;
    font-weight: 400; /* Normal weight for readability */
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Reduced gap for less vertical space */
    max-width: 1200px; /* Wider for horizontal growth */
    margin: 0 auto;
}

/* Service Card Styling */
.service-card {
    background: var(--surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: row; /* Horizontal layout */
    box-shadow: 0 2px 8px var(--shadow);
}

.service-card:hover {
    box-shadow: 0 12px 30px var(--shadow);
    border-color: var(--primary-color);
}

/* Service Image */
.service-image-wrapper {
    width: 40%; /* Fixed width for horizontal layout */
    min-width: 300px;
    height: auto;
    min-height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--accent));
    position: relative;
    flex-shrink: 0;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image {
    transform: scale(1.01);
}

/* Service Content */
.service-content {
    padding: 2rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
}

.service-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 400; /* Normal weight for readability */
}

/* Service Features List */
.service-features {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    flex: 1;
}

.service-features li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400; /* Normal weight for readability */
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-features li strong {
    color: var(--text-primary);
}

/* Service Pricing */
.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--background);
    border-radius: 0;
    border: 2px solid var(--primary-color);
}

.price-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.service-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
    margin: -0.5rem 0 1.5rem 0;
    text-align: center;
}

/* Service CTA Button */
.service-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    padding: 1.125rem 2.5rem;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    width: 100%;
    box-shadow: none;
}

/* Left vector pattern */
.service-cta-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 200%;
    background-image: url('/data/images/button-pattern-white.svg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
}

.service-cta-button:hover::before {
    opacity: 0.5;
    left: -20px;
}

/* Right vector pattern */
.service-cta-button::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(-1); /* Mirror the pattern */
    width: 150px;
    height: 200%;
    background-image: url('/data/images/button-pattern-white.svg');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
}

.service-cta-button:hover::after {
    opacity: 0.5;
    right: -20px;
}

.service-cta-button:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.service-cta-button .btn-text {
    display: inline-block;
    position: relative;
    z-index: 2;
}

/* Dark Mode Adjustments for Services */
[data-theme="dark"] .service-card {
    background: var(--surface);
    border-color: var(--border);
}

[data-theme="dark"] .service-card:hover {
    border-color: var(--primary-color);
}

[data-theme="dark"] .service-pricing {
    background: rgba(0, 0, 82, 0.1);
    border-color: var(--primary-color);
}

[data-theme="dark"] .hero-image-container {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Solution Section - Keep original for fallback */
.solution-section {
    max-width: 900px;
    margin: 0 auto;
}

.solution-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.solution-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 3rem 0 1.5rem;
}

.solution-list {
    list-style: none;
    margin: 2rem 0;
}

.solution-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Process Section */
.process-section {
    position: relative;
    background-image: url('/data/images/process-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(8px);
    z-index: 0;
}

.process-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 82, 0.45) 0%, 
        rgba(0, 0, 82, 0.35) 30%,
        rgba(16, 185, 129, 0.35) 70%,
        rgba(16, 185, 129, 0.30) 100%);
    z-index: 1;
}

.process-section .container {
    position: relative;
    z-index: 2;
}

.process-section .section-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.process-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-secondary);
    flex: 1;
    font-weight: 400; /* Normal weight for readability */
}

.process-connector {
    width: 2rem;
    height: 2px;
    background: var(--border);
    align-self: center;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.placeholder-photo {
    width: 200px;
    height: 200px;
    background: var(--surface);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--text-secondary);
}

.about-photo {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

.about-bio {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400; /* Normal weight for readability */
}

/* Contact Section */
.contact-section {
    position: relative;
    background: var(--surface);
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/data/images/contact-background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.booking-form-wrapper {
    background: var(--background);
    border-radius: var(--border-radius);
    padding: 3rem;
    border: 1px solid var(--border);
    margin: 3rem 0;
    box-shadow: 0 4px 6px var(--shadow);
}

.booking-form-header {
    margin-bottom: 2rem;
}

.booking-form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.booking-form-header p {
    color: var(--text-secondary);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-grid-datetime {
    grid-template-columns: 1fr 1fr;
}

.form-field {
    position: relative;
}

.form-field label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0;
    background: var(--background);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 82, 0.1);
}

/* Consistent placeholder styling for all form fields */
.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #999;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    opacity: 1;
}

.form-field input::-webkit-input-placeholder,
.form-field textarea::-webkit-input-placeholder {
    color: #999;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    opacity: 1;
}

.form-field input::-moz-placeholder,
.form-field textarea::-moz-placeholder {
    color: #999;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    opacity: 1;
}

[data-theme="dark"] .form-field input::placeholder,
[data-theme="dark"] .form-field textarea::placeholder,
[data-theme="dark"] .form-field input::-webkit-input-placeholder,
[data-theme="dark"] .form-field textarea::-webkit-input-placeholder,
[data-theme="dark"] .form-field input::-moz-placeholder,
[data-theme="dark"] .form-field textarea::-moz-placeholder {
    color: #666;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-actions {
    margin: 2rem 0;
}

.form-footer {
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-divider {
    margin: 3rem 0;
    position: relative;
    color: var(--text-secondary);
}

.contact-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
    z-index: 1;
}

.contact-divider span {
    background: var(--surface);
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.contact-email {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.contact-email a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Form Status Messages */
.form-status {
    display: none;
    padding: 1rem;
    border-radius: 0;
    margin-top: 1rem;
    font-weight: 500;
    text-align: center;
}

.form-status.loading {
    background: #e0f2fe;
    color: #0277bd;
    border: 1px solid #81d4fa;
}

.form-status.success {
    background: #e8f5e8;
    color: #2e7d32;
    border: 1px solid #81c784;
}

.form-status.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.form-status.info {
    background: #f3e5f5;
    color: #7b1fa2;
    border: 1px solid #ce93d8;
}

[data-theme="dark"] .form-status.loading {
    background: #0d47a1;
    color: #bbdefb;
    border: 1px solid #1976d2;
}

[data-theme="dark"] .form-status.success {
    background: #1b5e20;
    color: #c8e6c9;
    border: 1px solid #4caf50;
}

[data-theme="dark"] .form-status.error {
    background: #b71c1c;
    color: #ffcdd2;
    border: 1px solid #f44336;
}

[data-theme="dark"] .form-status.info {
    background: #4a148c;
    color: #e1bee7;
    border: 1px solid #9c27b0;
}

/* Custom Date Picker Styles */
.date-picker-container {
    position: relative;
}

.custom-date-input {
    cursor: pointer;
    position: relative;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 0.75rem;
    width: 100%;
    font-size: 1rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.custom-date-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 82, 0.1);
}

.custom-date-input::after {
    content: '📅';
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.custom-calendar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0;
    box-shadow: 0 10px 25px var(--shadow);
    z-index: 9999;
    margin-top: 0.25rem;
    overflow: hidden;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.calendar-nav-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--text-primary);
    padding: 0.2rem 0.4rem;
    border-radius: 0;
    transition: var(--transition);
}

.calendar-nav-btn:hover {
    background: var(--border);
}

.calendar-month-year {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.weekday {
    padding: 0.4rem 0.2rem;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--background);
}

.calendar-day {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background);
    cursor: pointer;
    font-size: 0.7rem;
    transition: var(--transition);
    position: relative;
    height: 36px;
    border: 1px solid var(--border);
    border-right: 0;
    border-bottom: 0;
}

.calendar-day:hover {
    background: var(--surface);
}

.calendar-day.other-month {
    color: var(--text-secondary);
    opacity: 0.4;
}

.calendar-day.today {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.calendar-day.selected {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.calendar-day.available {
    background: rgba(16, 185, 129, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.calendar-day.available:hover {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.05);
}

.calendar-day.unavailable {
    background: rgba(239, 68, 68, 0.1);
    color: var(--text-secondary);
    cursor: not-allowed;
    opacity: 0.6;
}

.calendar-day.unavailable:hover {
    background: rgba(239, 68, 68, 0.1);
    transform: none;
}

.calendar-day.loading {
    background: rgba(59, 130, 246, 0.1);
    color: var(--text-secondary);
    cursor: wait;
}

.calendar-day.loading::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1px solid var(--primary-color);
    border-top: 1px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.calendar-day:nth-child(7n) {
    border-right: 1px solid var(--border);
}

.calendar-day:nth-child(n+36) {
    border-bottom: 1px solid var(--border);
}

.calendar-footer {
    padding: 0.75rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.calendar-legend {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.legend-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-available {
    background: rgba(16, 185, 129, 0.8);
}

.legend-unavailable {
    background: rgba(239, 68, 68, 0.8);
}

/* Date availability indicator */
.date-availability-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 0;
    font-size: 0.875rem;
    transition: var(--transition);
}

.date-availability-indicator.available {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.date-availability-indicator.unavailable {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.date-availability-indicator.checking {
    background: rgba(0, 0, 82, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(0, 0, 82, 0.2);
}

.date-availability-indicator .availability-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.date-availability-indicator.available .availability-dot {
    background: #10b981;
}

.date-availability-indicator.unavailable .availability-dot {
    background: #ef4444;
}

.date-availability-indicator.checking .availability-dot {
    background: #3b82f6;
    animation: pulse 1.5s infinite;
}

/* Dark theme adjustments */
[data-theme="dark"] .custom-calendar {
    background: var(--surface);
    border-color: var(--border);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .calendar-day.available {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
}

[data-theme="dark"] .calendar-day.unavailable {
    background: rgba(239, 68, 68, 0.2);
}

[data-theme="dark"] .date-availability-indicator.available {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.3);
}

[data-theme="dark"] .date-availability-indicator.unavailable {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.3);
}

[data-theme="dark"] .date-availability-indicator.checking {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.3);
}

/* Custom Time Picker Styles */
.time-picker-container {
    position: relative;
}

.custom-time-input {
    cursor: pointer;
    position: relative;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 0.75rem;
    width: 100%;
    font-size: 1rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.custom-time-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 82, 0.1);
}

.custom-time-picker {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0;
    box-shadow: 0 10px 25px var(--shadow);
    z-index: 9999;
    margin-top: 0.25rem;
    overflow: hidden;
    display: none;
}

.custom-time-picker.active {
    display: block;
}

.time-picker-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.time-picker-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.time-slots-container {
    max-height: 200px;
    overflow-y: auto;
    background: var(--background);
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0.75rem;
    min-height: 50px;
    background: var(--surface);
}

.time-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 0.75rem 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    min-height: 40px;
    text-align: center;
}

.time-slot:hover {
    background: var(--surface);
    border-color: var(--primary-color);
}

.time-slot.available {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: var(--text-primary);
}

.time-slot.available:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
    transform: scale(1.02);
}

.time-slot.unavailable {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: var(--text-secondary);
    cursor: not-allowed;
    opacity: 0.6;
}

.time-slot.unavailable:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    transform: none;
}

.time-slot.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.time-slot.loading {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: var(--text-secondary);
    cursor: wait;
    position: relative;
}

.time-slot.loading::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid var(--primary-color);
    border-top: 1px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.time-picker-footer {
    display: none;
}

/* Dark theme adjustments for time picker */
[data-theme="dark"] .custom-time-picker {
    background: var(--surface);
    border-color: var(--border);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .time-slot.available {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
}

[data-theme="dark"] .time-slot.unavailable {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
}

[data-theme="dark"] .time-slot.loading {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Responsive adjustments for time picker */
@media (max-width: 480px) {
    .custom-time-picker {
        left: -1rem;
        right: -1rem;
    }
    
    .time-slots-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo {
        font-size: 1.25rem;
        gap: 0.5rem;
    }
    
    .logo-image {
        height: 2.25rem;
    }
    
    .lang-toggle {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
        min-width: 2rem;
    }
    
    .hero {
        min-height: 60vh;
        padding: 6rem 0 3rem; /* More top padding on mobile too */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image-container {
        max-width: 100%;
    }
    
    .services-grid {
        gap: 2rem;
    }
    
    .service-card {
        flex-direction: column; /* Stack vertically on mobile */
    }
    
    .service-image-wrapper {
        width: 100%;
        height: 200px;
        min-width: auto;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-connector {
        width: 2px;
        height: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        align-items: center;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid-datetime {
        grid-template-columns: 1fr;
    }
    
    .booking-form-wrapper {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Print styles */
@media print {
    .header,
    .mobile-menu-overlay,
    .booking-form-wrapper {
        display: none;
    }
}
