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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Ad Notice */
.ad-notice {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

/* Navigation */
.main-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f8d;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2c5f8d;
}

/* Hero Split Section - Split-Screen Modern Archetype */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    padding: 80px 40px;
    background: linear-gradient(135deg, #2c5f8d 0%, #1e4466 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.8;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    min-height: 400px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Intro Section - Split Layout */
.intro-section {
    display: flex;
    flex-direction: column;
}

.intro-left,
.intro-right {
    flex: 1;
    padding: 60px 40px;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-right {
    background: #f8f9fa;
}

.intro-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1e4466;
}

.intro-right p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

/* Features Grid */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 30px;
}

.feature-item {
    flex: 1 1 100%;
    padding: 30px;
    text-align: center;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5f8d;
}

.feature-item p {
    font-size: 16px;
    color: #666;
}

/* Services Preview */
.services-preview {
    padding: 80px 30px;
    background: #fff;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1e4466;
}

.services-header p {
    font-size: 18px;
    color: #666;
}

/* Split Layout for Services - Alternating */
.services-split-layout {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.service-card-left,
.service-card-right {
    display: flex;
    flex-direction: column;
}

.service-card-left img,
.service-card-right img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.service-info {
    padding: 40px;
    background: #f8f9fa;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1e4466;
}

.service-info p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.service-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.service-details span {
    background: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f8d;
    margin-bottom: 25px;
}

.btn-select {
    background: #2c5f8d;
    color: #fff;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #1e4466;
}

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, #1e4466 0%, #2c5f8d 100%);
    padding: 80px 30px;
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
}

.booking-form-wrapper h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

.booking-form-wrapper > p {
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
}

.booking-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f8d;
}

.btn-submit {
    width: 100%;
    background: #2c5f8d;
    color: #fff;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1e4466;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.why-choose h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e4466;
}

.reasons-layout {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

.reason-block {
    flex: 1;
    padding: 40px;
}

.reason-block h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c5f8d;
}

.reason-block p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.reason-image {
    flex: 1;
}

.reason-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Sections */
.cta-sticky-trigger {
    background: #f8f9fa;
    padding: 80px 30px;
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1e4466;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

.cta-primary {
    background: #2c5f8d;
    color: #fff;
}

.cta-primary:hover {
    background: #1e4466;
}

.cta-secondary {
    background: #fff;
    color: #2c5f8d;
    border: 2px solid #2c5f8d;
}

.cta-secondary:hover {
    background: #2c5f8d;
    color: #fff;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 30px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c5f8d;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background: #2a2a2a;
    border-radius: 5px;
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 14px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c5f8d;
    padding: 15px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: 999;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-btn {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-accept {
    background: #2ecc71;
    color: #fff;
}

.btn-accept:hover {
    background: #27ae60;
}

.btn-reject {
    background: #e74c3c;
    color: #fff;
}

.btn-reject:hover {
    background: #c0392b;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c5f8d 0%, #1e4466 100%);
    color: #fff;
    padding: 80px 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: #e0e0e0;
}

/* Services Full Page */
.services-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
}

.service-detail-card.reverse {
    flex-direction: column;
}

.service-images {
    flex: 1;
}

.service-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    padding: 50px;
    background: #f8f9fa;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1e4466;
}

.location-tag {
    font-size: 16px;
    color: #2c5f8d;
    font-weight: 600;
    margin-bottom: 25px;
}

.amenities-list {
    list-style: disc;
    padding-left: 25px;
    margin: 25px 0;
}

.amenities-list li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.pricing-display {
    margin: 30px 0;
}

.price-amount {
    font-size: 42px;
    font-weight: 700;
    color: #2c5f8d;
}

.price-unit {
    font-size: 20px;
    color: #666;
}

/* About Page */
.about-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
}

.about-split {
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
}

.about-split.reverse {
    flex-direction: column;
}

.about-text {
    flex: 1;
    padding: 40px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1e4466;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    margin-bottom: 80px;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #1e4466;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 100%;
    padding: 35px;
    background: #f8f9fa;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5f8d;
}

.value-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.team-section {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.team-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1e4466;
}

.team-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.stats-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.stat-item {
    flex: 1 1 100%;
    text-align: center;
    padding: 30px;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #2c5f8d;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 18px;
    color: #666;
}

.cta-section {
    text-align: center;
    padding: 80px 30px;
    background: #f8f9fa;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1e4466;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

/* Contact Page */
.contact-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.contact-info {
    flex: 1;
    padding: 40px;
    background: #f8f9fa;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1e4466;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c5f8d;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    position: relative;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 20px;
}

.additional-info {
    margin-top: 60px;
}

.additional-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1e4466;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 100%;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5f8d;
}

.faq-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1e4466;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.selected-service {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service-text {
    font-size: 18px;
    color: #2c5f8d;
}

.thanks-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1e4466;
}

.next-steps {
    list-style: decimal;
    padding-left: 25px;
}

.next-steps li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-primary {
    background: #2c5f8d;
    color: #fff;
}

.btn-primary:hover {
    background: #1e4466;
}

.btn-secondary {
    background: #fff;
    color: #2c5f8d;
    border: 2px solid #2c5f8d;
}

.btn-secondary:hover {
    background: #2c5f8d;
    color: #fff;
}

.contact-reminder {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-reminder p {
    font-size: 15px;
    color: #666;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1e4466;
}

.legal-intro {
    font-size: 16px;
    color: #888;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c5f8d;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1e4466;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.legal-content ul {
    list-style: disc;
    padding-left: 30px;
    margin: 20px 0;
}

.legal-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.legal-content a {
    color: #2c5f8d;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1e4466;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero-split {
        flex-direction: row;
    }

    .hero-content,
    .hero-image {
        flex: 1;
    }

    .intro-section {
        flex-direction: row;
    }

    .feature-item {
        flex: 1 1 50%;
    }

    .service-card-left,
    .service-card-right {
        flex-direction: row;
    }

    .service-card-right {
        flex-direction: row-reverse;
    }

    .service-card-left img,
    .service-card-right img {
        height: auto;
    }

    .reasons-layout {
        flex-direction: row;
    }

    .reasons-layout.reverse {
        flex-direction: row-reverse;
    }

    .about-split {
        flex-direction: row;
    }

    .about-split.reverse {
        flex-direction: row-reverse;
    }

    .value-card {
        flex: 1 1 calc(50% - 15px);
    }

    .stat-item {
        flex: 1 1 calc(25% - 22.5px);
    }

    .contact-layout {
        flex-direction: row;
    }

    .faq-item {
        flex: 1 1 calc(50% - 15px);
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .service-detail-card {
        flex-direction: row;
    }

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

/* Desktop Styles */
@media (min-width: 1024px) {
    .feature-item {
        flex: 1 1 25%;
    }
}