:root {
    --primary-color: #B5906F;        /* Lighter */
    --secondary-color: #CFAC88;      /* Even Lighter */
    --accent-color: #E1DED9;         /* Super light */
    --dark-color: #4A3829;           /* Dark */
    --light-color: #FFFFFF;          /* White */
    --text-color: #000000;           /* Black */
    --text-light: #5D534A;           /* Text medium */
    --text-body: #4A3829;            /* Text body */
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --border-radius: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-body);
    background: var(--light-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--primary-color);
    margin: 1rem auto 0;
}

.contact-section .section-title {
    color: var(--light-color);
}

.btn-primary {
    display: inline-block;
    background: var(--dark-color);
    color: var(--light-color);
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

/* Header Styles */
.site-header {
    background: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    font-size: 1rem;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 15px 0;
    background: var(--accent-color);
    color: var(--text-color);
}

.hero .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.btn-secondary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-color);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--text-color);
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    color: var(--text-body);
}

.hero p a {
    color: var(--secondary-color);
}

.hero-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 10px solid var(--light-color);
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.03);
}

/* About Section */
.about-section {
    padding: 90px 0;
    background: var(--light-color);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 5px solid var(--light-color);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--text-body);
}

.specialties {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.specialty {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    padding: 1rem;
    background: rgba(181, 144, 111, 0.1);
    border-radius: 8px;
    transition: var(--transition);
}

.specialty:hover {
    background: rgba(181, 144, 111, 0.15);
    transform: translateY(-3px);
}

.specialty i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.specialty a {
    color: var(--dark-color);
    text-decoration: none;
}

/* Services Section */
.services-section {
    padding: 90px 0;
    background: var(--accent-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-subtitle {
    display: block;
    font-size: 0.98rem;
    color: #B5906F; /* or your var(--primary-color) */
    font-weight: 500;
    text-align: center;
    margin-top: -2rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.1px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card > *:not(.service-image) {
    padding: 0.8rem 1.5rem 0 1rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
    text-align: center;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-body);
    line-height: 1.7;
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(74, 56, 41, 0.1);
}

.service-note {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 1rem;
    background: rgba(181, 144, 111, 0.1);
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-body);
    font-style: italic;
}

.cta-center {
    text-align: center;
    margin-top: 3.5rem;
}

.cta-center .btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 15px 35px;
    font-size: 1rem;
}

.cta-center .btn-primary:hover {
    background-color: var(--secondary-color);
}

/* Gallery Section */
.gallery-section {
    padding: 90px 0;
    background: var(--light-color);
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-body);
    margin: -2rem auto 3rem;
    max-width: 600px;
    font-weight: 400;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-button {
    text-align: center;
    margin-top: 2rem;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    overflow-y: auto;
    padding: 2rem 0;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    animation: scaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleUp {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: fixed;
    top: 30px;
    right: 40px;
    font-size: 2.5rem;
    color: var(--light-color);
    cursor: pointer;
    transition: var(--transition);
    z-index: 50000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.modal-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.modal-gallery-grid .gallery-item {
    aspect-ratio: 1/1;
}

.single-image-modal {
    display: none;
    opacity: 0;
    transition: opacity 0.35s ease;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.93);
    justify-content: center;
    align-items: center;
    z-index: 3000;
    cursor: zoom-out;
}

.single-image-modal.active {
    display: flex;
    opacity: 1;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.single-image-content img {
    max-width: 95vw;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 4px 36px rgba(0,0,0,0.2);
    cursor: auto;
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.33s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.33s cubic-bezier(0.4,0,0.2,1);
}

.single-image-modal.active .single-image-content img {
  transform: scale(1);
  opacity: 1;
  transition: transform 0.33s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.33s cubic-bezier(0.4,0,0.2,1);
}

.close-single-modal {
    position: fixed;
    top: 30px;
    right: 40px;
    font-size: 2.5rem;
    color: var(--light-color);
    cursor: pointer;
    transition: var(--transition);
    z-index: 50000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-single-modal:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

@media (max-width: 576px) {
  .close-single-modal {
    top: 12px;
    right: 12px;
    font-size: 2rem;
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .modal-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-content {
        padding: 3rem 1rem;
    }
}

@media (max-width: 576px) {
    .modal-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
        margin: -1.5rem auto 2rem;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 90px 0;
    background: var(--accent-color);
}

.reviews-subtitle {
    text-align: center;
    color: var(--text-body);
    font-size: 1.1rem;
    font-weight: 400;
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--light-color);
    padding: 2.2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid rgba(74, 56, 41, 0.1);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.stars {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.grey-star {
    color: #cccccc;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: var(--text-body);
    line-height: 1.8;
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    padding: 90px 0;
    background: var(--light-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    overflow: hidden;
    background: var(--light-color);
    transition: var(--transition);
    border: 1px solid rgba(74, 56, 41, 0.1);
}

.faq-item.active {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--accent-color);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: #d2cdc4;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 0;
    flex: 1;
    font-weight: 500;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 1.1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    background: var(--light-color);
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 300px;
}

.faq-answer p {
    color: var(--text-body);
    line-height: 1.8;
}

.faq-subtitle {
    text-align: center;
    color: var(--text-body);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    margin-top: -2rem;
    font-weight: 400;
}

.faq-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.btn-faq-cta {
    font-size: 1rem;
    padding: 14px 38px;
    margin: 0 auto;
    display: inline-block;
}

/* Contact Section */
.contact-section {
    padding: 90px 0;
    background: var(--dark-color);
    color: var(--light-color);
}

.contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #E6E1D8;
}

.contact-info h3:first-child {
    margin-top: 0;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.contact-info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.map-container {
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 1.5rem;
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.calendar-container {
    flex: 1;
    background: var(--accent-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.calendar-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    text-align: center;
    padding: 8px 0;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-color);
    font-weight: 500;
}

.calendar-day.today {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.calendar-day.selected {
    background: var(--secondary-color);
    color: white;
}

.calendar-day.available:hover {
    background: rgba(181, 144, 111, 0.3);
    transform: scale(1.05);
}

.calendar-day.unavailable {
    background: #d1c9bc;
    color: var(--text-light);
    opacity: 0.6;
    cursor: not-allowed;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-nav {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-color);
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
}

.calendar-nav:hover {
    background: var(--secondary-color);
    color: white;
}

#current-month-year {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.calendar-weekday {
    text-align: center;
    font-weight: 500;
    color: var(--primary-color);
    padding: 10px 0;
    font-size: 0.9rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact-btn {
    display: block;
    padding: 15px;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    background: var(--primary-color);
    color: var(--text-color);
}

.flip-phone {
    transform: scaleX(-1);
    display: inline-block;
}

.contact-btn.whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.booking-form {
    background: var(--light-color);
    padding: 2.2rem;
    border-radius: var(--border-radius);
    color: var(--text-color);
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.booking-form h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-align: center;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-body);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #d1c9bc;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #FCFAF7;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(181, 144, 111, 0.2);
}

.booking-form .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    background: var(--primary-color);
    color: var(--text-color);
}

.booking-form .btn-primary:hover {
    background: var(--secondary-color);
}

/* Footer */
.site-footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(181, 144, 111, 0.2);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-brand {
    flex: 1;
    min-width: 200px;
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    font-size: 1.2rem;
    justify-content: center;
}

.social-links a {
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--light-color);
    transform: translateY(-3px);
}

.copyright {
    flex: 1;
    min-width: 200px;
    text-align: right;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Terms Modal */
.terms-modal {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    overflow: auto;
    padding: 2rem 0;
    animation: fadeIn 0.3s ease;
}

.terms-modal.active {
    display: flex;
}

.terms-modal-content {
    margin: 0;
    position: relative;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.375rem 3rem 3rem 3rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    animation: scaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--text-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.close-terms-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition);
    z-index: 50000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-terms-modal:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.terms-title {
    margin-top: 10px;
    text-align: center;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.terms-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--primary-color);
    margin: 1rem auto 0;
}

.terms-content {
    padding-right: 1rem;
}

.terms-section {
    margin-bottom: 2.5rem;
}

.terms-section h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.terms-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-body);
}

.terms-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
    color: var(--text-body);
    line-height: 1.7;
}

.terms-section strong {
    color: var(--dark-color);
    font-weight: 600;
}

/* Footer Terms Link */
.terms-link {
    display: block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    text-align: left;
    margin-top: -10px;
    color: rgba(255, 255, 255, 0.6);
}

.terms-link:hover {
    color: var(--light-color);
}

@media (max-width: 768px) {
    .terms-modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .terms-title {
        font-size: 1.7rem;
    }
    
    .terms-content {
        max-height: 65vh;
    }
}

@media (max-width: 576px) {
    .terms-modal-content {
        padding: 1.5rem;
    }
    
    .terms-title {
        font-size: 1.5rem;
    }
    
    .terms-section h3 {
        font-size: 1.2rem;
    }
    
    .close-terms-modal {
        top: 10px;
        right: 15px;
        font-size: 2rem;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--light-color);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
        overflow: hidden;
    }
    
    .main-nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .main-nav a {
        display: block;
        padding: 0.75rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .copyright {
        text-align: center;
    }
    
    /* Mobile adjustments for calendar */
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info, .contact-form-container {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 70px 0;
    }
    
    .hero h1 {
        font-size: 1.9rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card, .review-card {
        padding: 1.8rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .calendar-day {
        padding: 10px 0;
        font-size: 0.85rem;
    }
}