:root {
    /* Premium Color Palette */
    --primary-color: #1a2c42; /* Deep elegant navy */
    --secondary-color: #c9a56c; /* Soft sophisticated gold */
    --secondary-hover: #b5925a;
    --text-dark: #2a3342;
    --text-light: #ffffff;
    --text-muted: #5e6b7e;
    --bg-light: #f8f6f0;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Effects */
    --shadow-soft: 0 10px 40px rgba(26, 44, 66, 0.15);
    --shadow-hover: 0 15px 50px rgba(201, 165, 108, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.92);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header & Logo */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

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

.logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: var(--transition-smooth);
}

.logo:hover {
    transform: scale(1.02);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 80%;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    transition: opacity 1.5s ease-in-out;
    animation: panImage 24s infinite alternate linear;
}

.hero-slide.prev {
    opacity: 1;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

@keyframes panImage {
    0% {
        transform: scale(1.1) translateX(-1.5%);
    }
    100% {
        transform: scale(1.1) translateX(1.5%);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.hero-text-area {
    flex: 1;
    align-self: flex-end;
    margin-bottom: 8rem;
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero-title {
    font-family: var(--font-heading);
    color: var(--text-light);
    background: linear-gradient(135deg, rgba(36, 76, 54, 0.75), rgba(36, 76, 54, 0.4));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 4px solid var(--secondary-color);
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 500;
    text-align: left;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 550px;
}

/* Form Area */
.hero-form-area {
    flex: 0 0 500px;
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.form-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-subtitle {
    font-family: var(--font-heading);
    color: #244c36; /* Matching the elegant forest green */
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.luxury-highlight {
    display: block;
    font-style: italic;
    font-weight: 700;
    font-size: 1.35em;
    color: var(--secondary-color);
    letter-spacing: 0.02em;
    margin-top: 0.2rem;
    margin-bottom: 0.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(26, 44, 66, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
    outline: none;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a2c42' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--secondary-color);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(201, 165, 108, 0.15);
}

.form-group input::placeholder {
    color: #a0aec0;
}

/* Checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--primary-color);
    border-radius: 4px;
    margin-top: 0.1rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.form-checkbox input[type="checkbox"]:checked {
    background-color: var(--primary-color);
}

.form-checkbox input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-checkbox label {
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1.4;
}

/* Submit Button */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.1rem;
    margin-top: 0.5rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(201, 165, 108, 0.3);
}

.submit-btn:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.submit-btn svg {
    transition: var(--transition-smooth);
}

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

/* Animations */
@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Banner */
.cta-banner {
    background-color: #244c36; /* Brand green */
    width: 100%;
    padding: 1.8rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-text {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-size: 2rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.02em;
}

.cta-price {
    color: var(--secondary-color);
    font-weight: 700;
    font-style: italic;
    font-size: 1.1em;
}

.cta-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(201, 165, 108, 0.3);
}

.cta-btn:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Video Section */
.video-section {
    padding: 7rem 2rem;
    background-color: #ffffff;
}

.video-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

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

.video-preview-title {
    font-family: var(--font-heading);
    color: #244c36;
    background-color: #e8f5ec;
    border-left: 4px solid #244c36;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 1.5rem;
    text-align: left;
}

.video-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.video-thumb {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(26, 44, 66, 0.2);
    transition: background-color 0.4s ease;
}

.video-box:hover .video-thumb {
    transform: scale(1.05);
}

.video-box:hover .video-overlay {
    background-color: rgba(26, 44, 66, 0.4);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.play-btn svg {
    width: 32px;
    height: 32px;
    margin-left: 6px;
}

.video-box:hover .play-btn {
    background: var(--secondary-color);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-text {
    flex: 1;
}

.section-title {
    font-family: var(--font-heading);
    color: #244c36; /* Brand green */
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.6;
    font-weight: 400;
    max-width: 90%;
}

/* Sedes Section */
.sedes-section {
    padding: 7rem 2rem;
    background-color: #ffffff;
}

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

.sede-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
}

.sede-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.sede-img-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.sede-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sede-card:hover .sede-img {
    transform: scale(1.05);
}

.sede-info {
    padding: 2rem;
    text-align: center;
}

.sede-title {
    font-family: var(--font-heading);
    color: #244c36;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.sede-details {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.phone-line {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.25rem;
}

.phone-icon {
    color: var(--secondary-color);
}

.sede-price {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.sede-price strong {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.sede-btn {
    width: 100%;
    padding: 0.8rem;
    font-size: 0.95rem;
}

/* Services Section */
.services-section {
    padding: 7rem 2rem;
    background-color: var(--bg-light);
}

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

.services-main-title {
    font-family: var(--font-heading);
    color: #244c36;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-divider {
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 0 auto 1.5rem;
}

.services-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.card-title {
    font-family: var(--font-heading);
    color: #244c36;
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 2rem;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: #5e6b7e;
    font-size: 0.95rem;
    line-height: 1.4;
}

.service-list li svg {
    color: #4a7c59;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 7rem 2rem;
    background-color: var(--bg-light);
}

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

.testimonial-card {
    background: transparent;
    transition: transform 0.3s ease;
}

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

.testimonial-info {
    padding: 1.5rem 1rem;
    text-align: center;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ Section */
.faq-section {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #fffcf5 0%, #e8f5ec 100%);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #4a7c59;
}

.faq-icon {
    color: #4a7c59;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    font-family: var(--font-body);
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Modal (Privacy Policy) */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background-color: #fefefe;
    padding: 2.5rem;
    border-radius: 12px;
    width: 90%;
    max-width: 900px;
    height: 85vh;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    color: #999;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.iframe-container {
    flex-grow: 1;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #f9f9f9;
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
}

.form-checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

/* Footer Section */
.footer {
    background-color: #1a3626;
    padding: 3.5rem 2rem;
    text-align: center;
}

.footer-locations {
    color: var(--secondary-color);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-legal {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-family: var(--font-body);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* Floating Action Button (FAB) */
.fab-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fab-container.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.fab-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(201, 165, 108, 0.3);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition-smooth);
    letter-spacing: 0.05em;
}

.fab-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    background-color: #a48f5a;
}

/* Thank You Page */
.thank-you-main {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
    min-height: calc(100vh - 200px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.thank-you-container {
    max-width: 1000px;
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: stretch;
}

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

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

.thank-you-text {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.thank-you-text h1 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.thank-you-text p {
    color: var(--text-muted);
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 2rem;
        padding: 2rem;
    }
    
    .hero-form-area {
        flex: 0 0 450px;
    }
}

@media (max-width: 768px) {
    .hero {
        display: block;
        min-height: auto;
    }
    
    .hero-slideshow {
        position: relative;
        height: 350px;
        width: 100%;
    }

    .header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 2rem 1.5rem;
        background: transparent;
        z-index: 10;
        display: flex;
        justify-content: center;
    }
    
    .logo {
        height: 60px;
    }

    .hero-overlay {
        height: 350px;
        background: rgba(26, 44, 66, 0.3);
    }

    .hero-content {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 1.5rem;
        gap: 2rem;
        background-color: var(--bg-light);
    }
    
    .hero-text-area {
        display: block;
        text-align: center;
        width: 100%;
        max-width: 500px;
        margin-bottom: 0;
    }

    .hero-form-area {
        flex: 1;
        width: 100%;
        max-width: 500px;
    }
    
    .form-card {
        padding: 2rem 1.5rem;
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .hero-title {
        font-size: 1.6rem;
        padding: 0;
        margin-top: 1rem;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        box-shadow: none;
        color: var(--primary-color);
        text-align: center;
    }
    
    .luxury-highlight {
        font-size: 2.5rem;
        text-shadow: none;
        margin: 0.2rem 0;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cta-text {
        font-size: 1.6rem;
    }
    
    .fab-container {
        bottom: 20px;
        right: 20px;
    }
    
    .fab-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .thank-you-container {
        flex-direction: column;
    }

    .thank-you-image {
        min-height: 250px;
    }

    .thank-you-text {
        padding: 3rem 2rem;
        text-align: center;
    }

    .thank-you-text h1 {
        font-size: 2.2rem;
    }
    
    .sedes-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .video-container-wrapper {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-main-title {
        font-size: 1.8rem;
    }
    
    .footer-locations {
        font-size: 0.8rem;
        letter-spacing: 1px;
        white-space: nowrap;
    }
}
