/* ==========================================================================
   Premium Dental Clinic - Design System & Stylesheet
   Created for Conceptual Portfolio (DigAiDent by strateg.clinic)
   Inspired by premium-dental.pl
   ========================================================================== */

/* 1. Imports & Variables */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --accent: #6D2031;         /* Premium Burgundy */
    --accent-hover: #541623;   /* Darker Burgundy */
    --gold: #C5A880;           /* Luxurious Gold */
    --gold-hover: #B29165;
    --dark: #2A1F1B;           /* Rich Charcoal Brown */
    --dark-muted: #3C2B24;     /* Medium Dark Brown */
    --light-bg: #FAF8F5;       /* Warm Off-White */
    --light-beige: #EBE5DB;    /* Warm Beige */
    --light-beige-soft: #F3ECE2;
    --white: #FFFFFF;
    --gray-muted: #8E8279;
    --border-color: rgba(60, 43, 36, 0.1);
    
    /* Typography */
    --font-heading: 'Marcellus', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Layout */
    --max-width: 1200px;
    --header-height: 90px;
    
    /* Transitions & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 10px 30px rgba(42, 31, 27, 0.05);
    --shadow-hover: 0 20px 40px rgba(42, 31, 27, 0.12);
}

/* 2. Resets & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--light-bg);
    color: var(--dark);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    background: none;
    outline: none;
}

ul {
    list-style: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--light-beige);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* 3. Utility Classes */
.container {
    width: 95%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.section-dark {
    background-color: var(--dark);
    color: var(--light-bg);
}

.section-beige {
    background-color: var(--light-beige-soft);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

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

.text-muted {
    color: var(--gray-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(109, 32, 49, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark);
    border: 1px solid var(--dark);
}

.btn-secondary:hover {
    background-color: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary-light {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-secondary-light:hover {
    background-color: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 168, 128, 0.2);
}

/* 4. Top Announcement Bar */
.top-bar {
    background-color: var(--light-beige);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 8px 0;
    text-align: center;
    border-bottom: 1px solid rgba(60, 43, 36, 0.05);
}

/* 5. Header & Navigation */
.header {
    background-color: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.01);
    transition: var(--transition-smooth);
}

.header.scrolled {
    height: 75px;
    background-color: var(--white);
    box-shadow: var(--shadow-soft);
}

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

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    border: 1.5px solid var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    transition: var(--transition-smooth);
}

.logo-link:hover .logo-icon {
    border-color: var(--accent);
    color: var(--accent);
    background-color: rgba(109, 32, 49, 0.03);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-muted);
    margin-top: 3px;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark-muted);
    padding: 10px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--accent);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    width: 100%;
}

/* Navigation Right Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-actions .btn {
    padding: 12px 24px;
    font-size: 0.75rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark);
    letter-spacing: 1px;
    white-space: nowrap;
}

.phone-link svg {
    color: var(--accent);
    transition: var(--transition-smooth);
}

.phone-link:hover {
    color: var(--accent);
}

.phone-link:hover svg {
    transform: scale(1.1);
}

.social-nav-btn {
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-nav-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    transition: var(--transition-smooth);
}

/* 6. Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: var(--light-beige-soft);
    padding: 60px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title span {
    color: var(--accent);
    display: block;
}

.hero-text {
    font-size: 1.05rem;
    color: var(--dark-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-hover);
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--dark);
    color: var(--white);
    padding: 30px;
    max-width: 200px;
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-hover);
}

.hero-badge-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 5px;
}

.hero-badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-beige);
}

/* 7. Key Features / Values */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background-color: var(--white);
    padding: 50px 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(197, 168, 128, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background-color: var(--accent);
    color: var(--white);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--gray-muted);
}

/* 8. Services Grid (Obszary) */
.services-intro {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 480px;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.service-image-container {
    position: relative;
    height: 240px;
    overflow: hidden;
    background-color: var(--dark);
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition-smooth);
    opacity: 0.85;
}

.service-card:hover .service-image-container img {
    filter: grayscale(0%);
    transform: scale(1.05);
    opacity: 1;
}

.service-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--white);
    color: var(--accent);
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(42, 31, 27, 0.15);
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: var(--dark-muted);
    color: var(--white);
    transition: var(--transition-smooth);
}

.service-card:hover .service-content {
    background-color: var(--dark);
}

.service-title-link {
    display: block;
    margin-bottom: 12px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1.3;
}

.service-card:hover .service-title {
    color: var(--gold);
}

.service-description {
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--light-beige);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
}

.service-link svg {
    transition: var(--transition-smooth);
}

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

/* 9. Technology Spotlight Section */
.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.spotlight-image-container {
    position: relative;
}

.spotlight-image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--gold);
    z-index: 0;
}

.spotlight-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-hover);
}

.spotlight-content {
    max-width: 600px;
}

.spotlight-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.spotlight-feature-item {
    display: flex;
    gap: 15px;
}

.spotlight-feature-icon {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.spotlight-feature-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.spotlight-feature-text {
    font-size: 0.8rem;
    color: var(--gray-muted);
}

/* 10. Call to Action Banner */
.cta-banner {
    position: relative;
    background-color: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(109, 32, 49, 0.15) 0%, rgba(0,0,0,0) 80%);
    pointer-events: none;
}

.cta-content {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-text {
    color: var(--light-beige);
    font-size: 1.05rem;
    margin-bottom: 35px;
}

/* 11. Price List Section (Cennik) */
.price-intro {
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.price-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.price-item {
    border-bottom: 1px solid var(--border-color);
}

.price-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: left;
}

.price-trigger:hover {
    color: var(--accent);
}

.price-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition-smooth);
}

.price-item.active .price-icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.price-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.price-table tr {
    border-bottom: 1px dashed rgba(60, 43, 36, 0.08);
}

.price-table tr:last-child {
    border-bottom: none;
}

.price-table td {
    padding: 16px 0;
    font-size: 0.9rem;
}

.price-service-name {
    font-weight: 500;
}

.price-service-cost {
    text-align: right;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}

/* 12. Testimonials Section (Opinie) */
.reviews-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
}

.reviews-slider {
    overflow: hidden;
    position: relative;
    min-height: 280px;
}

.reviews-track {
    display: flex;
    transition: var(--transition-smooth);
}

.review-slide {
    min-width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
    text-align: center;
}

.review-stars {
    color: var(--gold);
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.review-quote {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.5;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 25px;
    position: relative;
}

.review-quote::before, .review-quote::after {
    font-size: 3rem;
    color: rgba(197, 168, 128, 0.2);
    position: absolute;
    font-family: serif;
    line-height: 1;
}

.review-quote::before {
    content: '“';
    left: -20px;
    top: -15px;
}

.review-quote::after {
    content: '”';
    right: -20px;
    bottom: -35px;
}

.review-author {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.review-treatment {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Slider Controls */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--light-beige);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--accent);
    transform: scale(1.3);
}

/* 13. Contact & Booking Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Booking Form */
.booking-container {
    background-color: var(--white);
    padding: 50px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.booking-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.booking-text {
    font-size: 0.85rem;
    color: var(--gray-muted);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dark-muted);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--light-beige);
    background-color: var(--light-bg);
    color: var(--dark);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--accent);
    background-color: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Contact Info Column */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.info-card {
    background-color: var(--light-beige-soft);
    padding: 30px;
    border-left: 3px solid var(--gold);
}

.info-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card-text {
    font-size: 0.85rem;
    color: var(--dark-muted);
}

/* Interactive Map Placeholder */
.map-placeholder-container {
    height: 300px;
    position: relative;
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-top: auto;
}

.map-placeholder-bg {
    width: 100%;
    height: 100%;
    background-color: var(--light-beige);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.map-overlay-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(109, 32, 49, 0.05) 0%, rgba(235, 229, 219, 0.8) 100%);
    z-index: 0;
}

.map-placeholder-content {
    position: relative;
    z-index: 2;
}

.map-pin-icon {
    color: var(--accent);
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.map-btn {
    margin-top: 15px;
    padding: 10px 24px;
    font-size: 0.75rem;
}

/* 14. Footer */
.footer-top-strip {
    background-color: var(--accent);
    color: var(--white);
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-top-actions {
    display: flex;
    gap: 15px;
}

.footer-btn {
    padding: 12px 24px;
    font-size: 0.75rem;
}

/* Main Footer */
.footer-main {
    background-color: var(--light-beige);
    padding: 80px 0 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--dark);
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1.5px;
    background-color: var(--accent);
}

.footer-col p {
    font-size: 0.85rem;
    color: var(--dark-muted);
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.footer-links-list a {
    font-size: 0.85rem;
    color: var(--dark-muted);
}

.footer-links-list a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-footer-btn {
    width: 36px;
    height: 36px;
    background-color: rgba(60, 43, 36, 0.08);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.social-footer-btn:hover {
    background-color: var(--accent);
    color: var(--white);
}

/* 15. Copyright & Mandatory Disclaimer */
.footer-bottom {
    border-top: 1px solid rgba(60, 43, 36, 0.08);
    padding-top: 40px;
}

.disclaimer-box {
    background-color: rgba(109, 32, 49, 0.04);
    border-left: 3px solid var(--accent);
    padding: 24px 30px;
    margin-bottom: 30px;
}

.disclaimer-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-weight: bold;
}

.disclaimer-text {
    font-size: 0.85rem;
    color: var(--dark-muted);
    line-height: 1.6;
}

.disclaimer-link {
    color: var(--accent);
    font-weight: 700;
    text-decoration: underline;
}

.disclaimer-link:hover {
    color: var(--accent-hover);
}

.copyright-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--gray-muted);
}

/* 16. Modal Popups (Reservation Confirmation & Details) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(42, 31, 27, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background-color: var(--white);
    padding: 50px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    border: 1px solid var(--gold);
    box-shadow: var(--shadow-hover);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-muted);
    transition: var(--transition-smooth);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.modal-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(197, 168, 128, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.modal-text {
    font-size: 0.9rem;
    color: var(--gray-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* 17. Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* 18. Responsive Media Queries */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .section {
        padding: 80px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Navigation drawer for mobile */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transform: translateX(100%);
        transition: var(--transition-smooth);
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-actions {
        display: none; /* Hide desktop specific actions, put CTA in hamburger menu or simplify */
    }
    
    .nav-menu .mobile-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .copyright-row {
        flex-direction: column;
        text-align: center;
    }
}

@media (min-width: 769px) {
    .nav-menu .mobile-actions {
        display: none;
    }
}
