:root {
    --primary: #00442d;
    --secondary: #daa520;
}

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

body {
    overflow-x: hidden;
}

body {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #2f2f2f;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading {
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 300;
}

.subtitle {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    line-height: 1.4;
    color: var(--secondary);
}

.container {
    width: 90%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 2rem 0;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background: black;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled .bar {
    background: #fff;
}

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

.nav-logo-img {
    height: auto;
    width: 250px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: filter 0.3s ease;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 10px;
    z-index: 110;
    border-radius: 4px;
}

.bar {
    width: 28px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #639466;
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    transition: right 0.4s ease;
    z-index: 105;
}

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

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.li::marker {
    content: "";
}

.nav-link {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-link:hover {
    transform: translateY(-3px);
    color: var(--secondary);
}


.nav-link.nav-cta {
    padding: 0.9rem 2.5rem;
    border: 1px solid var(--secondary);
    background: transparent;
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    pointer-events: auto;
    margin-top: 0.5rem;
    margin: 0 1rem;
}

.nav-link.nav-cta:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    background: #000;
}

.carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    z-index: 5;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.hero-overlay h1 {
    color: white;
    font-weight: 300;
    font-size: 5rem;
    font-family: "Cormorant Garamond", serif;
    text-align: center;
}

.hero-subtitle {
    color: white;
    font-size: 1.5rem;
    letter-spacing: 2px;
    line-height: 1.4;
    font-family: "Playfair Display", serif;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    padding: 15px;
    cursor: pointer;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.hero-btn {
    padding: 0.9rem 2.5rem;
    border: 1px solid var(--secondary);
    background: transparent;
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    pointer-events: auto;
    margin-top: 0.5rem;
}

.hero-btn:hover {
    transform: translateY(-3px);
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

#dotsContainer {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.stats-section {
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 3rem;
    background: linear-gradient(rgba(252, 251, 249, 0.60), rgba(252, 251, 249, 0.60)),
        url('images/4184584152152.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary);
    margin: 0;
}

.stat-label {
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: var(--secondary);
    text-transform: uppercase;
}

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

.welcome-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.welcome-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary);
}

.welcome-image-wrap {
    width: 100%;
    min-height: 550px;
    overflow: hidden;
}

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.welcome-text-wrap,
.welcome-image-wrap {
    opacity: 0;
}

.welcome-text-wrap.visible,
.welcome-image-wrap.visible {
    animation: slideUp 0.8s ease-out forwards;
}


.services-section {
    padding: 5rem 0;
    background-color: #faf9f7;
}

.services-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary);
}

.services-subtitle {
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
    cursor: pointer;
}

.service-card.visible {
    animation: slideUp 0.6s ease-out forwards;
}

.service-card:nth-child(2).visible {
    animation-delay: 0.15s;
}

.service-card:nth-child(3).visible {
    animation-delay: 0.3s;
}

.service-card:nth-child(4).visible {
    animation-delay: 0.45s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.service-card-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--primary), #006644);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

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

.service-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-card-title {
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary);
    border-bottom: 1px solid var(--secondary);
    padding-bottom: 0.75rem;
}

.service-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-list li {
    font-size: 1.2rem;
    color: #555;
    padding-left: 1.2rem;
    position: relative;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: auto;
    transition: color 0.3s ease, gap 0.3s ease;
}

.service-link:hover {
    color: var(--secondary);
    gap: 0.8rem;
}

.service-link .material-symbols-outlined {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.service-link:hover .material-symbols-outlined {
    transform: translateX(4px);
}

.service-card:hover .service-link {
    color: var(--secondary);
    gap: 0.8rem;
}

.service-card:hover .service-link .material-symbols-outlined {
    transform: translateX(4px);
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: contents;
}

.parallax-section {
    position: relative;
    height: 800px;
    object-fit: cover;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/489748545.webp') center top / cover no-repeat fixed;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.parallax-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 0 2rem;
}

.parallax-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #fff;
}


.parallax-btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border: 1px solid var(--secondary);
    background: transparent;
    color: white;
    text-decoration: none;
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
}

.parallax-btn:hover {
    transform: translateY(-3px);
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}


.featured-section {
    padding: 5rem 0;
    background: #fff;
}

.featured-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary);
}

.featured-subtitle {
    text-align: center;
    margin-bottom: 3rem;
}

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

.expand-card {
    position: relative;
    min-height: 475px;
    overflow: hidden;
    background-size: cover;
    background-position: top center;
    transition: min-height 0.5s ease;
}

.expand-card.expanded {
    min-height: 650px;
}

.expand-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    transition: background 0.4s ease;
    z-index: 1;
}

.expand-card.expanded .expand-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.expand-card-header {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.expand-card.expanded .expand-card-header {
    top: 1.5rem;
}

.expand-card-header h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.material-symbols-outlined.expand-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    transition: transform 0.4s ease, border-color 0.3s ease;
    cursor: pointer;
}

.expand-card.expanded .expand-icon {
    transform: rotate(45deg);
    border-color: var(--secondary);
    padding-left: 9px;
    padding-right: 9px;
}

.expand-card-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 1.5rem 1.5rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
    pointer-events: none;
}

.expand-card.expanded .expand-card-details {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.expand-card-details p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.expand-card-details ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}

.expand-card-details ul li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    padding-left: 1rem;
    position: relative;
}

.expand-card-details ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: white;
}

.expand-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--secondary);
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: gap 0.3s ease;
}

.expand-card-link:hover {
    gap: 0.8rem;
}

.expand-card-link .material-symbols-outlined {
    font-size: 1rem;
}


.reviews-section {
    padding: 3rem 0;
    background: #faf9f7;
}

.reviews-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary);
}

.reviews-subtitle {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.review-card {
    width: calc((100% - 4rem) / 3);
    flex-shrink: 0;
    background: #fff;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-stars {
    color: var(--secondary);
    font-size: 1.3rem;
    letter-spacing: 3px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    flex-grow: 1;
}

.review-author {
    border-top: 1px solid #13855e;
    padding-top: 1rem;
}

.review-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.review-service {
    font-size: 0.85rem;
    color: var(--secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.review-btn {
    z-index: 10;
    background: var(--primary);
    border: none;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.review-btn:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.review-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.review-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 68, 45, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.review-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

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

.modal-title {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 1.5rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.modal-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.modal-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.modal-field label {
    font-family: "Cormorant Garamond", serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.modal-field input,
.modal-field select,
.modal-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: "Playfair Display", serif;
    font-size: 0.95rem;
    color: #333;
    background: #faf9f7;
    transition: border-color 0.3s ease;
    outline: none;
}

.modal-field input:focus,
.modal-field select:focus,
.modal-field textarea:focus {
    border-color: var(--primary);
}

.modal-field textarea {
    resize: vertical;
}

.faq-section {
    padding: 3rem 0;
    background: #fff;
}

.faq-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary);
    text-align: center;
}

.faq-subtitle {
    text-align: center;
    padding-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.faq-image-wrap {
    position: relative;
}

.faq-image {
    position: -webkit-sticky;
    position: sticky;
    top: 25%;
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.faq-accordions {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-item:first-child {
    border-top: 1px solid #e5e5e5;
}

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

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    color: #13855e;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

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

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: black;
}

.cta-section {
    padding: 100px 5%;
    background-image: url(images/4184584152152.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: white;
    line-height: 1.8;
    margin-bottom: 35px;
}

.cta-btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border: 1px solid var(--secondary);
    background: transparent;
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;

}

.cta-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.cta-image-wrap {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.cta-image-wrap.animate {
    opacity: 1;
    transform: translateX(0);
}

.cta-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 4px;
}


.site-footer {
    background-color: #639466;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 60px 5% 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: white;
    letter-spacing: 1px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact {
    text-align: right;
}

.footer-contact li {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact .material-symbols-outlined {
    font-size: 1.2rem;
    color: white;
}

.footer-logo-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-logo {
    height: auto;
    width: 300px;
    object-fit: cover;
    margin-bottom: 0;
}

.footer-cta {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border: 1px solid var(--secondary);
    background: transparent;
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: white;
}


.modal-submit {
    padding: 0.9rem 2.5rem;
    border: 1px solid var(--secondary);
    background: transparent;
    color: var(--secondary);
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    pointer-events: auto;
    margin-top: 0.5rem;
    margin: 0 1rem;
}

.modal-submit:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}


/* ===================== RESPONSIVE BREAKPOINTS ===================== */

/* ---- 1024px ---- */
@media (max-width: 1024px) {
    .hero-overlay h1 {
        font-size: 3.5rem;
    }

    .welcome-title,
    .services-title,
    .featured-title,
    .reviews-title,
    .faq-title,
    .parallax-content h2,
    .cta-title {
        font-size: 2.6rem;
    }

    .welcome-section {
        display: flex;
        flex-direction: column-reverse;
    }

    .welcome-image-wrap {
        min-height: 400px;
    }

    .welcome-image {
        height: 400px;
    }

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

    .stat-label {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .faq-grid {
        display: flex;
        flex-direction: column;
    }

    .faq-image {
        position: relative;
        top: auto;
        height: 400px;
    }

    .cta-grid {
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
    }

    .cta-text {
        transform: translateY(40px);
    }

    .cta-text.animate {
        transform: translateY(0);
    }

    .cta-image-wrap {
        transform: translateY(40px);
    }

    .cta-image-wrap.animate {
        transform: translateY(0);
    }

    .cta-image {
        height: 400px;
    }

    .service-card-image {
        height: 300px;
    }

    .review-card {
        width: 100%;
    }
}

/* ---- 768px ---- */
@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 3rem;
    }

    .welcome-title,
    .services-title,
    .featured-title,
    .reviews-title,
    .faq-title,
    .parallax-content h2,
    .cta-title {
        font-size: 2.3rem;
    }

    .subtitle {
        font-size: 1.15rem;
    }

    .nav-logo-img {
        width: 180px;
    }

    .service-card-image {
        height: 450px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card-image img {
        object-position: center;
    }

    .expand-card {
        height: 450px;
    }

    .expand-card {
        background-position: center center;
    }

    .expanding-cards {
        grid-template-columns: 1fr;
    }

    .parallax-section {
        height: 60vh;
        background-attachment: scroll;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-logo-col {
        order: -1;
    }

    .footer-logo {
        width: 220px;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .modal-form-row {
        grid-template-columns: 1fr;
    }

    .modal-title {
        font-size: 1.8rem;
    }

    .cta-section {
        padding: 60px 5%;
    }

    .welcome-image {
        height: 450px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }

    .expand-card {
        min-height: 350px;
    }

    .expand-card.expanded {
        min-height: 500px;
    }
}

/* ---- 425px ---- */
@media (max-width: 425px) {
    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .welcome-title,
    .services-title,
    .featured-title,
    .reviews-title,
    .faq-title,
    .parallax-content h2,
    .cta-title {
        font-size: 2rem;
    }

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

    .subtitle {
        font-size: 1rem;
    }

    .nav-logo-img {
        width: 150px;
    }


    .welcome-image-wrap {
        min-height: 300px;
    }

    .welcome-image {
        height: 300px;
    }

    .service-card-image {
        height: 250px;
    }

    .faq-image {
        height: 300px;
    }

    .faq-question {
        font-size: 1.15rem;
    }

    .cta-image {
        height: 300px;
    }

    .cta-grid {
        text-align: center;
        align-items: center;
    }

    .cta-text {
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .cta-btn {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .parallax-section {
        height: 70vh;
    }

    .parallax-content {
        padding: 0 1rem;
    }

    .expand-card {
        min-height: 300px;
    }

    .expand-card.expanded {
        min-height: 450px;
    }

    .expand-card-details p {
        font-size: 0.95rem;
    }

    .expand-card-details ul {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        width: 180px;
    }

    .footer-cta {
        font-size: 0.75rem;
        padding: 10px 20px;
    }

    .review-card {
        padding: 1.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .welcome-image {
        height: 300px;
    }

    .hero-btn,
    .parallax-btn,
    .cta-btn,
    .nav-link.nav-cta {
        font-size: 0.85rem;
        padding: 0.75rem 1.8rem;
    }

}

/* ---- 375px ---- */
@media (max-width: 375px) {
    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .welcome-title,
    .services-title,
    .featured-title,
    .reviews-title,
    .faq-title,
    .parallax-content h2,
    .cta-title {
        font-size: 2rem;
    }

    body {
        font-size: 1rem;
    }

    .service-card-body {
        padding: 1.2rem;
    }

    .service-card-title {
        font-size: 1.6rem;
    }

    .service-list li {
        font-size: 1rem;
    }

    .expand-card-header h3 {
        font-size: 1.6rem;
    }

    .faq-question {
        font-size: 1.05rem;
    }

    .welcome-image-wrap {
        min-height: 260px;
    }

    .welcome-image {
        height: 260px;
    }

    .cta-image {
        height: 260px;
    }

    .faq-image {
        height: 260px;
    }

    .stat-label {
        letter-spacing: 1px;
        font-size: 0.85rem;
    }

    .footer-col h4 {
        font-size: 1.2rem;
    }

    .footer-links a,
    .footer-contact li {
        font-size: 0.85rem;
    }

    .parallax-section {
        height: 65vh;
    }
}

/* ---- 320px ---- */
@media (max-width: 320px) {
    .hero-overlay h1 {
        font-size: 1.9rem;
    }

    .welcome-title,
    .services-title,
    .featured-title,
    .reviews-title,
    .faq-title,
    .parallax-content h2,
    .cta-title {
        font-size: 2rem;
    }

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

    .nav-logo-img {
        width: 130px;
    }

    .container {
        width: 92%;
    }

    .expand-card {
        min-height: 260px;
    }

    .expand-card.expanded {
        min-height: 420px;
    }

    .expand-card-header h3 {
        font-size: 1.4rem;
    }

    .expand-card-details p {
        font-size: 0.9rem;
    }

    .review-card {
        padding: 1.2rem;
    }

    .review-text {
        font-size: 0.9rem;
    }

    .service-card-image {
        height: 200px;
    }

    .welcome-image-wrap {
        min-height: 220px;
    }

    .welcome-image {
        height: 220px;
    }

    .cta-image {
        height: 220px;
    }

    .faq-image {
        height: 220px;
    }

    .parallax-section {
        height: 65vh;
    }

    .hero-btn,
    .parallax-btn,
    .cta-btn,
    .nav-link.nav-cta {
        font-size: 0.8rem;
        padding: 0.65rem 1.5rem;
        letter-spacing: 1px;
    }

    .footer-logo {
        width: 150px;
    }

    .modal-content {
        padding: 1.2rem;
        width: 95%;
    }
}