* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #16a085;
    --secondary-color: #1abc9c;
    --accent-color: #e67e22;
    --dark-text: #2c3e50;
    --light-gray: #f5f5f5;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 2rem;
    min-height: 82px;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    height: 85px;
    flex-shrink: 0;
}

.logo img {
    width: 450px;
    height: auto;
    margin-top: -181px;
    flex-shrink: 0;
}

nav {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--dark-text);
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 35%, rgba(0,0,0,0.65) 70%, rgba(0,0,0,0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 2rem;
    gap: 0.8rem;
}

.slide-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-overlay p {
    font-size: 1rem;
    max-width: 700px;
    padding: 0 2rem;
}

.slider-nav {
    display: none;
}

.slider-nav:hover {
    background: rgba(255,255,255,0.5);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-reserve-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.slider-reserve-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem;
}

/* Intro Section */
.intro-section {
    background: var(--white);
    padding: 2rem 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.intro-text h3 {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-weight: normal;
}

.intro-text .underline {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 1rem 0 2rem 0;
}

.intro-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.feature-box {
    padding: 1.5rem;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-box h4 {
    font-size: 0.95rem;
    color: var(--dark-text);
}

.feature-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    background: var(--light-gray);
    padding: 2rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.about-features {
    margin-top: 2rem;
}

.about-features h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
}

.feature-item::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
}

.about-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Facilities Section */
.facilities-section {
    background: var(--white);
    padding: 2rem 0;
}

.facilities-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.facilities-section h2 span {
    color: var(--primary-color);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.facility-item {
    background: var(--light-gray);
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.facility-item i {
    font-size: 2.5rem;
    color: #b87333;
    transition: all 0.3s;
}

.facility-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.facility-item:hover i {
    color: white;
}

/* Gallery Section */
.gallery-section {
    padding: 2rem 0;
    background: var(--white);
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.gallery-section h2 span {
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    height: 200px;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-btn {
    text-align: center;
    margin-top: 2rem;
}

.gallery-btn button {
    padding: 1rem 3rem;
    background: white;
    border: 2px solid var(--dark-text);
    color: var(--dark-text);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-btn button:hover {
    background: var(--dark-text);
    color: white;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #ccc;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    cursor: pointer;
    padding: 1rem;
    user-select: none;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Why Choose Us */
.why-section {
    background: var(--light-gray);
    padding: 2rem 0;
}

.why-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.why-section h2 span {
    color: var(--primary-color);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.why-box {
    text-align: center;
}

.why-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.why-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.why-box h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.why-box p {
    color: #555;
    line-height: 1.6;
}

/* Quality Section */
.quality-section {
    padding: 2rem 0;
    background: white;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.quality-image {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.quality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quality-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.quality-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.quality-btn {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.quality-btn:hover {
    background: #138d75;
}

/* Reservation Section */
.reservation-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('../images/page-header.jpg') center/cover;
    padding: 2rem 0;
    color: white;
}

.reservation-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.reservation-section .subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.reservation-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #138d75;
}

/* Alert Messages */
.alert {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 10000;
    text-decoration: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Phone Float Button */
.phone-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #0088cc;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 136, 204, 0.5);
    z-index: 10000;
    text-decoration: none;
    transition: transform 0.2s;
}

.phone-float:hover {
    transform: scale(1.1);
}

/* Instagram Float Button */
.instagram-float {
    position: fixed;
    bottom: 170px;
    right: 30px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(214, 36, 159, 0.5);
    z-index: 10000;
    text-decoration: none;
    transition: transform 0.2s;
}

.instagram-float:hover {
    transform: scale(1.1);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('../images/page-header.jpg') center/cover;
    padding: 6rem 0 4rem;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
}

/* Full Gallery */
.full-gallery-section {
    padding: 4rem 0;
    background: var(--white);
}

.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* About Page */
.about-page-section {
    padding: 4rem 0;
    background: var(--white);
}

.about-page-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-page-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-text);
}

.about-page-text h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-page-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-page-image {
    position: sticky;
    top: 100px;
}

.about-page-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.value-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.value-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.value-box p {
    color: #555;
    line-height: 1.6;
}

/* About Why Section */
.about-why-section {
    padding: 4rem 0;
    background: var(--white);
}

.about-why-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.about-why-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.about-why-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.about-why-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.about-why-item p {
    color: #555;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.contact-info > p {
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.contact-item p {
    color: #555;
    line-height: 1.6;
}

.contact-item a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-social {
    margin-top: 2rem;
}

.contact-social h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-text);
}

.contact-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-button {
    text-align: center;
    margin-top: 2rem;
}

.direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.direction-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.direction-btn i {
    font-size: 1.2rem;
}

@media (max-width: 968px) {

    /* ── Header ── */
    nav {
        position: static;
        transform: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-container {
        min-height: 62px;
        padding: 0.6rem 1rem;
        justify-content: center;
    }

    .logo {
        height: 50px;
    }

    .logo img {
        width: 260px;
        height: auto;
        margin-top: -90px;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        border-bottom: 1px solid #f0f0f0;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav a {
        display: block;
        padding: 1rem 1.5rem;
    }

    /* ── Container ── */
    .container {
        padding: 1.5rem 1rem;
    }

    /* ── Hero Slider ── */
    .hero-slider {
        height: 250px;
    }

    .slide-overlay {
        padding: 1rem;
        gap: 0.4rem;
    }

    .slide-overlay h1 {
        font-size: 1.1rem;
        letter-spacing: 1px;
        margin-bottom: 0.3rem;
    }

    .slide-overlay p {
        display: none;
    }

    .slider-reserve-btn {
        font-size: 0.8rem;
        padding: 0.55rem 1.1rem;
    }

    /* ── Layout Grids ── */
    .intro-content,
    .about-content,
    .quality-content,
    .about-page-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .gallery-grid,
    .full-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-why-grid {
        grid-template-columns: 1fr;
    }

    /* ── Section Headings ── */
    .facilities-section h2,
    .gallery-section h2,
    .why-section h2,
    .reservation-section h2,
    .map-section h2,
    .values-section h2,
    .about-why-section h2 {
        font-size: 1.7rem;
        margin-bottom: 1.5rem;
    }

    .intro-text h2 {
        font-size: 1.4rem;
    }

    .about-text h2,
    .quality-text h2,
    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 1.4rem;
    }

    .about-page-text h2 {
        font-size: 1.7rem;
    }

    /* ── Images & Sections ── */
    .about-slider {
        height: 220px;
    }

    .quality-image {
        height: 200px;
    }

    .about-page-image {
        position: relative;
        top: 0;
    }

    /* ── Page Header (galeri / hakkimizda / iletisim) ── */
    .page-header {
        padding: 4rem 0 2.5rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* ── Why Section ── */
    .why-box h4 {
        font-size: 1.3rem;
    }

    /* ── Footer ── */
    .footer-content {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    .footer-section ul li a {
        word-break: break-word;
        display: inline-block;
    }

    /* ── Float Buttons ── */
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 18px;
        right: 14px;
        font-size: 1.1rem;
    }

    .whatsapp-float svg {
        width: 22px;
        height: 22px;
    }

    .phone-float {
        width: 48px;
        height: 48px;
        bottom: 76px;
        right: 14px;
        font-size: 1.1rem;
    }

    .instagram-float {
        width: 48px;
        height: 48px;
        bottom: 134px;
        right: 14px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {

    /* ── Slider ── */
    .hero-slider {
        height: 210px;
    }

    .slide-overlay h1 {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    /* ── Grids ── */
    .values-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 140px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-item {
        padding: 1.2rem 0.8rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .facility-item i {
        font-size: 1.8rem;
    }

    /* ── Headings ── */
    .facilities-section h2,
    .gallery-section h2,
    .why-section h2,
    .reservation-section h2,
    .map-section h2,
    .values-section h2,
    .about-why-section h2 {
        font-size: 1.4rem;
    }

    /* ── Images ── */
    .quality-image {
        height: 170px;
    }

    .about-slider {
        height: 180px;
    }

    /* ── Why Section ── */
    .why-icon {
        font-size: 2.5rem;
    }

    .why-box h3 {
        font-size: 1.1rem;
    }

    .why-box h4 {
        font-size: 1.1rem;
    }

    /* ── Logo ── */
    .logo img {
        width: 210px;
        margin-top: -84px;
    }

    /* ── Contact ── */
    .contact-item {
        gap: 1rem;
    }

    .contact-item i {
        font-size: 1.5rem;
    }

    /* ── Map ── */
    .map-wrapper iframe {
        height: 280px !important;
    }

    /* ── Footer ── */
    .footer-section p,
    .footer-section li {
        font-size: 0.85rem;
    }
}