/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    color: #34495e;
}

p {
    margin-bottom: 1rem;
    color: #555;
    text-align: center;
}

/* Buttons */
.cta-button,
.btn-secondary,
.book-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover,
.btn-secondary:hover,
.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: #3498db;
    font-size: 0.9rem;
    padding: 10px 20px;
}

/* Header */
.top-section {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.phone-num {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.contacts {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Hero Section */
.hero {
    background-image: url('/bgcov.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-hero {
    background-image: url('/bgcov.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 1.5rem 0;
    color: #ecf0f1;
}

/* Sections */
section {
    padding: 80px 0;
}

/* About Page Specific Styles */
.about {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.farm-story {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.story-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.journey-section,
.hospitality-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
}

.journey-content,
.hospitality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.journey-image img,
.hospitality-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.journey-text h2,
.hospitality-text h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.journey-text p,
.hospitality-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.features-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
}

.features-section h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #667eea;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    margin-bottom: 25px;
}

.feature-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.location-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.location-text h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.location-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

/* Mobile Responsive for About Page */
@media (max-width: 768px) {
    .about-hero {
        height: 60vh;
    }

    .story-content,
    .journey-content,
    .hospitality-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }

    .story-text h2,
    .journey-text h2,
    .hospitality-text h2,
    .location-text h2 {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .story-image img,
    .journey-image img,
    .hospitality-image img,
    .location-image img {
        max-width: 100%;
    }
}

.about {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cottages,
.features,
.attractions {
    background-color: #fff;
}

.trust-badges {
    background-color: #2c3e50;
    color: white;
}

.testimonials {
    background-color: #f8f9fa;
}

.urgency {
    background: #00008B;
    color: #FFD700;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 100px 0;
}

.urgency h2 {
    color: #FFD700 !important;
}

.urgency p {
    color: #ffffff !important;
}

.contact-ctas {
    background-color: #34495e;
    text-align: center;
    padding: 40px 0;
}

.contact-ctas h2 {
    color: #FFD700 !important;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-ctas p {
    color: #ffffff !important;
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

/* Desktop: 2 buttons on first row, 3 on second row */
@media (min-width: 769px) {
    .cta-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        max-width: 700px;
        margin: 0 auto;
        justify-content: center;
    }

    .cta-buttons .btn-secondary {
        flex: 0 1 calc(50% - 15px);
        min-width: 200px;
    }

    .cta-buttons .cta-button {
        flex: 0 1 calc(33.333% - 15px);
        min-width: 150px;
    }
}

/* Mobile: Keep single column */
@media (max-width: 768px) {
    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        max-width: 300px;
        margin: 0 auto;
    }

    .cta-buttons .btn-secondary,
    .cta-buttons .cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0;
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.about-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: #000;
}

.about-video iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 20px;
}

.about-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: 20px;
}



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

.about-content h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cottage Intro Above Grid */
.cottage-intro-above {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.cottage-intro-above h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.cottage-intro-above p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

/* Value Proposition Below Grid */
.value-proposition-below {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 4px solid #f39c12;
}

.value-proposition-below h3 {
    font-size: 1.6rem;
    color: #f39c12;
    margin-bottom: 15px;
    text-align: center;
}

.value-proposition-below p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.cottage-intro h3 {
    font-size: 1.8rem;
    color: #34495e;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.cottage-intro h3::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.amenity-list {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.amenity-list h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.amenity-list h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.amenity-list ul {
    list-style: none;
    padding: 0;
}

.amenity-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.amenity-list li::before {
    content: '🏠';
    position: absolute;
    left: 0;
    top: 12px;
}

.value-proposition {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #f39c12;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.value-proposition h3 {
    color: #f39c12;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.value-proposition p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about {
        background: #f8f9fa;
        /* Solid background on mobile for better performance */
    }

    .about::before {
        display: none;
        /* Hide gradient overlay on mobile */
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }

    .about-video iframe {
        height: 350px;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .amenity-list {
        padding: 20px;
    }

    .about-stats {
        gap: 20px;
    }

    .stat {
        padding: 20px;
    }

    .about-stats li {
        padding-left: 30px;
        font-size: 0.95rem;
    }

    .about-stats li::before {
        font-size: 1.1rem;
        left: 0;
    }

    /* Mobile styles for new layout elements */
    .cottage-intro-above {
        padding: 25px;
        margin-bottom: 30px;
    }

    .cottage-intro-above h3 {
        font-size: 1.5rem;
    }

    .cottage-intro-above p {
        font-size: 1rem;
    }

    .value-proposition-below {
        padding: 25px;
        margin-top: 30px;
    }

    .value-proposition-below h3 {
        font-size: 1.4rem;
    }

    .value-proposition-below p {
        font-size: 0.95rem;
    }
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 3;
}

.about-stats ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.about-stats li {
    padding: 8px 0;
    padding-left: 35px;
    position: relative;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-stats li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 8px;
    color: #667eea;
    font-size: 1.2rem;
    font-weight: bold;
}

.about-stats li:nth-child(1)::before {
    content: '🏠';
}

.about-stats li:nth-child(2)::before {
    content: '⭐';
}

.stat {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 15px 15px 0 0;
}

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

.stat p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: linear-gradient(135deg, #ecf0f1 0%, #e9ecef 100%);
    border-radius: 6px;
    overflow: hidden;
    margin: 15px 0 10px 0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%, rgba(255, 255, 255, 0.3) 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.progress {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 6px;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
}

.progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    animation: progress-glow 2s ease-in-out infinite;
}

@keyframes progress-glow {

    0%,
    100% {
        opacity: 0;
        transform: translateX(-100%);
    }

    50% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Cottages Section */
.cottages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cottage-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cottage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.cottage-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
    text-align: center;
}

/* Trust Badges */
.badge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.badge {
    background: #ffffff;
    padding: 25px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #000000;
    border: 2px solid #2c3e50;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex: 1;
    min-width: 0;
    /* Prevents flex item from overflowing */
}

.badge h3 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
    word-break: keep-all;
}

.badge p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    word-break: keep-all;
}

.badge img {
    margin-bottom: 15px;
    object-fit: contain;
}

.badge h3 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
    font-weight: 600;
}

.badge p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

/* Individual logo size controls */

/* MakeMyTrip logo specific size */
.badge img[src="images/ota/03-makemytrip.png"] {
    width: 130px;
    /* CHANGE THIS VALUE FOR MAKEMYTRIP LOGO SIZE */
    height: 130px;
    /* CHANGE THIS VALUE FOR MAKEMYTRIP LOGO SIZE */
}

/* Agoda logo specific size */
.badge img[src="images/ota/01-agoda.png"] {
    width: 100px;
    /* CHANGE THIS VALUE FOR AGODA LOGO SIZE */
    height: 100px;
    /* CHANGE THIS VALUE FOR AGODA LOGO SIZE */
}

/* Google logo size */
.badge img[src="svg/googlelogo.svg"] {
    width: 80px;
    /* CHANGE THIS VALUE FOR GOOGLE LOGO SIZE */
    height: 80px;
    /* CHANGE THIS VALUE FOR GOOGLE LOGO SIZE */
}

/* Hosting logo size */
.badge img[src="svg/exp.svg"] {
    width: 80px;
    /* CHANGE THIS VALUE FOR HOSTING LOGO SIZE */
    height: 80px;
    /* CHANGE THIS VALUE FOR HOSTING LOGO SIZE */
}

/* Features Section */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.feature-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px;
    object-fit: contain;
}

/* Testimonials */
.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.testimonial {
    display: none;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial.active {
    display: block;
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 50px;
    height: 50px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bdc3c7;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #3498db;
}

/* Attractions */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.attraction-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.attraction-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.attraction-card h3 {
    padding: 20px 20px 0;
}

.attraction-card p {
    padding: 0 20px 20px;
}

/* Footer */
footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

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

.footer-logo img {
    width: 100px;
    margin-bottom: 20px;
}

.footer-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item img {
    width: 40px;
    height: 40px;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1,
    h2,
    h3,
    p {
        text-align: center !important;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        height: 80vh;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cottages-grid,
    .attractions-grid {
        grid-template-columns: 1fr;
    }

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

    .badge-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contacts {
        grid-template-columns: 1fr;
    }

    .contact-item {
        justify-content: center;
    }

    .top-section {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contacts {
        justify-content: center;
    }

    section {
        padding: 60px 0;
    }

    /* Guest Stories Mobile Styles */
    .guest-hero {
        height: 60vh;
    }

    .guest-hero h1 {
        font-size: 2.2rem;
    }

    .guest-hero p {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-item {
        min-width: 80px;
    }

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

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .gallery-item img {
        height: 150px;
    }

    .gallery-stats {
        gap: 20px;
    }

    .stat-box {
        min-width: 80px;
    }

    .lightbox-image {
        max-width: 95%;
        max-height: 70%;
    }

    .lightbox-nav {
        padding: 12px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .badge-grid {
        grid-template-columns: 1fr;
    }

    .testimonial {
        padding: 30px 20px;
    }

    .cta-button,
    .btn-secondary {
        width: 100%;
        margin-bottom: 10px;
    }

    .contact-ctas .container {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
.cta-button:focus,
.btn-secondary:focus,
.book-btn:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Guest Stories Hero Section */
.guest-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.guest-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('gallery/0003.jpeg') center/cover no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.guest-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.guest-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.guest-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.guest-hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.9;
}

/* Guest Gallery Section */
.guest-gallery {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.guest-gallery h2 {
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guest-gallery>.container>p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: #ffffff;
    border: 2px solid #667eea;
    color: #667eea;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Removed gallery overlay - no longer needed */

/* Gallery Loading */
.gallery-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
}

.gallery-loading p {
    font-size: 1.1rem;
    color: #666;
}

/* Gallery Stats */
.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    min-width: 120px;
}

.stat-box .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 5px;
}

.stat-box .stat-text {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Trust Badges Section */
.m-sec-c {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0;
}

.m-sec-c .sec-c-content-grp {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.m-sec-c .sec-c-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 150px;
}

.m-sec-c .icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.m-sec-c h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #FFD700;
}

.m-sec-c .info-a div {
    font-size: 1rem;
    opacity: 0.9;
}

/* Testimonials Section */
.m-sec-e {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.m-sec-e .reviews {
    max-width: 1000px;
    margin: 0 auto;
}

.m-sec-e .review-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border-left: 4px solid #667eea;
}

.m-sec-e .review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.m-sec-e .review-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.m-sec-e .user-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.m-sec-e .review-date {
    font-size: 0.9rem;
    color: #666;
    opacity: 0.8;
}

.m-sec-e .review-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Footer */
footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

.footer-description {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo img {
    width: 100px;
    margin-bottom: 20px;
}

.footer-description p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.footer-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-contacts>div {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-contacts img {
    width: 40px;
    height: 40px;
    margin-top: 5px;
    opacity: 0.8;
}

.footer-contacts h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.footer-contacts p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.footer-contacts a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-contacts a:hover {
    opacity: 1;
}

/* Available On Section - Modern Design */
.available-on {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.available-on::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
}

.available-on .container {
    padding: 50px 30px;
}

.available-on h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.available-on h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

/* Desktop: Single row, all logos */
@media (min-width: 769px) {
    .available-on .logo-container {
        display: flex;
        flex-wrap: nowrap;
        /* Force single row */
        justify-content: center;
        align-items: center;
        gap: 20px;
        /* Reduced gap for better fit */
        padding: 20px 10px;
        /* Added horizontal padding */
        overflow-x: visible;
        /* Changed from auto to visible */
    }

    .logo-item {
        flex: 0 0 auto;
        text-align: center;
        min-width: 90px;
        /* Reduced min-width */
        max-width: 125px;
        /* Adjusted max-width for larger icons */
        transition: transform 0.3s ease;
    }

    .logo-item:hover {
        transform: translateY(-5px);
    }

    .logo-item img {
        width: 100%;
        max-width: 125px;
        /* Increased max-width by 25% */
        height: auto;
        border-radius: 12px;
        transition: all 0.3s ease;
        object-fit: contain;
        filter: grayscale(20%);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .logo-item:hover img {
        filter: grayscale(0%) brightness(1.1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        transform: scale(1.05);
    }

    /* Ensure first and last logos are fully visible */
    .logo-item:first-child,
    .logo-item:last-child {
        margin: 0 5px;
    }
}

/* Mobile: Responsive grid */
@media (max-width: 768px) {
    .available-on .container {
        padding: 30px 20px;
    }

    .available-on h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .available-on .logo-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 20px;
        justify-items: center;
        padding: 20px 0;
    }

    .logo-item {
        width: 100%;
        max-width: 100px;
        transition: transform 0.3s ease;
    }

    .logo-item:hover {
        transform: translateY(-3px);
    }

    .logo-item img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        transition: all 0.3s ease;
        object-fit: contain;
        filter: grayscale(20%);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    }

    .logo-item:hover img {
        filter: grayscale(0%) brightness(1.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        transform: scale(1.03);
    }
}

/* Tablet: Medium screens */
@media (max-width: 1024px) and (min-width: 769px) {
    .available-on .logo-container {
        gap: 20px;
        padding: 15px 0;
    }

    .logo-item {
        min-width: 90px;
        max-width: 125px;
    }

    .logo-item img {
        max-width: 125px;
    }
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333333e1;
    padding: 10px;
}

.navbar a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
    font-size: large;
    font-weight: 500;
    border-radius: 7px;
}

.navbar a:hover {
    color: #b8924d;
    box-shadow: inset #c8a86e 0px 1px 9px 5px;
    box-shadow: #c8a86e 0px 1px 9px 5px;
}

.nav-menus {
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.dropdown {
    position: relative;
    display: block;
    width: fit-content;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #e9dbc7;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
    border-top: 4px solid #7a5d25;
    top: 34px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
}

@media screen and (max-width: 863px) {
    .navbar a {
        display: none;
        width: fit-content;
    }

    .nav-menus {
        display: block;
        margin-top: 20px;
    }

    .navbar.responsive {
        position: relative;
        display: block;
    }

    .navbar.responsive .dropdown-content {
        position: relative;
        width: fit-content;
        top: 1px;
    }

    .navbar.responsive a {
        display: block;
        text-align: left;
    }

    .hamburger {
        display: flex;
        align-items: flex-end;
    }
}

/* Contact Page Specific Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.contact-card {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #667eea;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-width: 0;
    /* Prevents flex item from overflowing */
}

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

.contact-icon {
    margin-bottom: 20px;
}

.contact-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 10px;
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #764ba2;
}

.contact-separator {
    color: #999;
    margin: 0 5px;
}

.address {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Location Section Styles */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}

.location-info h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.location-info p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: left;
}

.location-highlights {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 4px solid #27ae60;
}

.location-highlights h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.location-highlights ul {
    list-style: none;
    padding: 0;
}

.location-highlights li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.location-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #27ae60;
    font-weight: bold;
}

.travel-tips {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #f39c12;
}

.travel-tips h4 {
    color: #e67e22;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.travel-tips p {
    color: #7d6608;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.location-map {
    position: relative;
}

.map-caption {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
    font-style: italic;
}

/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
}

.brand-text h3 {
    color: #FFD700;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.brand-text p {
    color: #bdc3c7;
    margin: 0;
    font-size: 0.9rem;
}

.brand-description {
    color: #bdc3c7;
    line-height: 1.6;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.social-links img {
    width: 20px;
    height: 20px;
}

.footer-links h4,
.footer-contact h4,
.footer-actions h4 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item img {
    width: 20px;
    height: 20px;
    margin-top: 3px;
}

.contact-item strong {
    color: #FFD700;
    display: block;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-item p,
.contact-item .address-text {
    color: #bdc3c7;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-item a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #FFD700;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.call-btn {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.book-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 6px;
}

.trust-item img {
    width: 20px;
    height: 20px;
}

.trust-item span {
    color: #bdc3c7;
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #FFD700;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.seo-keywords {
    font-size: 0.8rem !important;
    opacity: 0.7;
    margin-top: 10px;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .badge-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .badge-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .brand-logo {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
    }

    .action-buttons {
        align-items: center;
    }

    .action-btn {
        min-width: 200px;
    }

    .trust-badges {
        justify-content: center;
    }
}

/* Print styles */
@media print {

    .hero,
    .urgency,
    .contact-ctas {
        display: none;
    }
}

/* FAQ Page Specific Styles */
.faq-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('gallery/0001.jpeg') center/cover no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.faq-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.faq-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.faq-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.faq-hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-section>.container>p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

/* FAQ Category Styles */
.faq-category {
    margin-bottom: 50px;
}

.faq-category h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
    position: relative;
}

.faq-category h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Modern Accordion Styles */
.faq-accordion {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.faq-item {
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.3s ease;
    position: relative;
}

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

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.active::before {
    opacity: 1;
}

.faq-question {
    padding: 25px 30px;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    line-height: 1.4;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
    transform: translateX(5px);
}

.faq-question h4 {
    margin: 0;
    flex: 1;
    padding-right: 20px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #2c3e50;
}

.faq-toggle {
    font-size: 1.4rem;
    font-weight: 300;
    color: #667eea;
    transition: all 0.3s ease;
    min-width: 24px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafbfc;
    position: relative;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    border-left: 3px solid transparent;
    transition: border-left 0.3s ease;
}

.faq-item.active .faq-answer-content {
    border-left: 3px solid #667eea;
}

.faq-answer-content p {
    margin-bottom: 15px;
    text-align: left;
    color: #555;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer-content li {
    margin-bottom: 10px;
    text-align: left;
    color: #555;
    position: relative;
}

.faq-answer-content li::before {
    content: '•';
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

.faq-answer-content strong {
    color: #2c3e50;
    font-weight: 600;
}

/* FAQ Stats Section */
.faq-stats {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 0;
}

.faq-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #667eea;
}

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

.faq-stat-icon {
    margin-bottom: 20px;
}

.faq-stat-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px;
}

.faq-stat-card h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.faq-stat-card p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* FAQ CTA Section */
.faq-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.faq-cta h2 {
    color: white !important;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-cta .cta-button {
    background: #FFD700;
    color: #2c3e50;
    border: none;
    font-weight: 700;
}

.faq-cta .cta-button:hover {
    background: #f1c40f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.faq-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.faq-cta .btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* FAQ Contact Section */
.faq-contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.faq-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #27ae60;
}

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

.faq-contact-icon {
    margin-bottom: 20px;
}

.faq-contact-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    padding: 12px;
}

.faq-contact-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.faq-contact-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.faq-contact-link {
    display: inline-block;
    color: #27ae60;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-contact-link:hover {
    color: #219a52;
}

/* Responsive Design for FAQ Page */
@media (max-width: 768px) {
    .faq-hero {
        height: 50vh;
    }

    .faq-hero h1 {
        font-size: 2.2rem;
    }

    .faq-hero p {
        font-size: 1.1rem;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 0 20px 20px;
    }

    .faq-category h3 {
        font-size: 1.5rem;
    }

    .faq-stats-grid,
    .faq-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-stat-card,
    .faq-contact-card {
        padding: 30px 20px;
    }

    .faq-stat-card h3 {
        font-size: 2rem;
    }

    .faq-cta h2 {
        font-size: 2rem;
    }

    .faq-cta p {
        font-size: 1.1rem;
    }

    .faq-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .faq-cta .cta-button,
    .faq-cta .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .faq-hero {
        height: 40vh;
    }

    .faq-hero h1 {
        font-size: 1.8rem;
    }

    .faq-hero p {
        font-size: 1rem;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-stats,
    .faq-cta,
    .faq-contact {
        padding: 60px 0;
    }
}

/* Modern Privacy Policy Page Styles */
.modern-hero {
    height: 70vh;
    position: relative;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/2912-01.webp') center/cover no-repeat;
    opacity: 0.1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(45, 55, 72, 0.8) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modern-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Trust Indicators */
.trust-indicators {
    background: #f8fafc;
    padding: 80px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #667eea;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.trust-item h4 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
}

.trust-item p {
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Modern Privacy Content */
.modern-privacy-content {
    padding: 100px 0;
    background: white;
}

.content-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.content-header h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-header p {
    font-size: 1.2rem;
    color: #718096;
    line-height: 1.7;
}

.privacy-sections {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-nav {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.privacy-nav h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-link {
    padding: 15px 20px;
    background: #f7fafc;
    border-radius: 10px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.nav-link:hover {
    background: #edf2f7;
    color: #2d3748;
    border-left-color: #667eea;
}

.policy-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.section-icon {
    font-size: 2.5rem;
}

.section-header h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin: 0;
    font-weight: 600;
}

.section-content h4 {
    font-size: 1.4rem;
    color: #4a5568;
    margin: 25px 0 15px;
    font-weight: 600;
}

.section-content h5 {
    font-size: 1.2rem;
    color: #718096;
    margin: 20px 0 10px;
    font-weight: 500;
}

.section-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: left;
}

.definition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.definition-card {
    background: #f7fafc;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease;
}

.definition-card:hover {
    transform: translateX(5px);
}

.definition-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.definition-content strong {
    display: block;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.definition-content p {
    color: #718096;
    margin: 0;
    line-height: 1.6;
}

.data-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.data-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f7fafc;
    border-radius: 10px;
    border-left: 4px solid #48bb78;
}

.data-icon {
    font-size: 1.2rem;
}

.data-item span {
    color: #2d3748;
    font-weight: 500;
}

/* Modern Contact CTA */
.modern-contact-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0;
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.modern-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.modern-cta-btn.primary {
    background: #FFD700;
    color: #2d3748;
}

.modern-cta-btn.primary:hover {
    background: #f1c40f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.modern-cta-btn.secondary {
    background: #25d366;
    color: white;
}

.modern-cta-btn.secondary:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.modern-cta-btn.outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.modern-cta-btn.outline:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.2rem;
}

/* Responsive Design for Modern Privacy Policy */
@media (max-width: 1024px) {
    .privacy-sections {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .privacy-nav {
        position: static;
    }

    .nav-links {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .nav-link {
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        height: 60vh;
    }

    .modern-hero h1 {
        font-size: 2.5rem;
    }

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

    .hero-stats {
        gap: 30px;
    }

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

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

    .content-header h2 {
        font-size: 2rem;
    }

    .policy-section {
        padding: 30px 25px;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

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

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

    .modern-cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .modern-hero {
        height: 50vh;
    }

    .modern-hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 20px;
    }

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

    .policy-section {
        padding: 25px 20px;
    }

    .section-header h3 {
        font-size: 1.5rem;
    }
}

/* Privacy Policy Page Specific Styles */
.privacy-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 50px;
    margin-top: 40px;
    border: 1px solid #e9ecef;
}

/* Modern Privacy Cards */
.privacy-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.privacy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 20px 20px 0 0;
}

.privacy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.privacy-card h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 10px;
}

.privacy-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.privacy-card h3 {
    font-size: 1.5rem;
    color: #34495e;
    margin: 25px 0 15px 0;
    position: relative;
    padding-left: 20px;
}

.privacy-card h3::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-card h4 {
    font-size: 1.3rem;
    color: #4a5568;
    margin: 20px 0 15px 0;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.privacy-card h4::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 1.4rem;
}

.privacy-card h5 {
    font-size: 1.1rem;
    color: #718096;
    margin: 15px 0 10px 0;
    font-weight: 500;
}

.privacy-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: left;
}

.privacy-card strong {
    color: #2c3e50;
    font-weight: 600;
}

.privacy-card a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-card a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Modern Rules Cards */
.rules-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rules-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    border-radius: 20px 20px 0 0;
}

.rules-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.rules-card h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 10px;
}

.rules-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 2px;
}

.rules-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: left;
}

.rules-card strong {
    color: #2c3e50;
    font-weight: 600;
}

.rules-card a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.rules-card a:hover {
    color: #219a52;
    text-decoration: underline;
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f1f3f4;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-section h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
    position: relative;
}

.privacy-section h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.privacy-section h4 {
    font-size: 1.4rem;
    color: #34495e;
    margin: 25px 0 15px;
    position: relative;
    padding-left: 20px;
}

.privacy-section h4::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 1.6rem;
}

.privacy-section h5 {
    font-size: 1.2rem;
    color: #5d6d7e;
    margin: 20px 0 10px;
    font-weight: 600;
}

.privacy-section p {
    text-align: left;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.privacy-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.privacy-section li {
    text-align: left;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
}

.privacy-section li::before {
    content: '▸';
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

.definition-list {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    border-left: 4px solid #667eea;
}

.definition-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.definition-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.definition-item strong {
    color: #2c3e50;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

/* Privacy Policy Hero Section */
.privacy-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('gallery/0001.jpeg') center/cover no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.privacy-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.privacy-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.privacy-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.privacy-hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Privacy Policy Stats Section */
.privacy-stats {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 0;
}

.privacy-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #667eea;
}

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

.privacy-stat-icon {
    margin-bottom: 20px;
}

.privacy-stat-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px;
}

.privacy-stat-card h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.privacy-stat-card p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Privacy Policy Contact Section */
.privacy-contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.privacy-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #27ae60;
}

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

.privacy-contact-icon {
    margin-bottom: 20px;
}

.privacy-contact-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    padding: 12px;
}

.privacy-contact-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.privacy-contact-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.privacy-contact-link {
    display: inline-block;
    color: #27ae60;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-contact-link:hover {
    color: #219a52;
}

/* Responsive Design for Privacy Policy Page */
@media (max-width: 768px) {
    .privacy-content {
        padding: 30px 20px;
        margin-top: 30px;
    }

    .privacy-section {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .privacy-section h3 {
        font-size: 1.5rem;
    }

    .privacy-section h4 {
        font-size: 1.2rem;
    }

    .privacy-section h5 {
        font-size: 1.1rem;
    }

    .definition-list {
        padding: 20px;
    }

    .privacy-hero {
        height: 50vh;
    }

    .privacy-hero h1 {
        font-size: 2.2rem;
    }

    .privacy-hero p {
        font-size: 1.1rem;
    }

    .privacy-stats-grid,
    .privacy-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .privacy-stat-card,
    .privacy-contact-card {
        padding: 30px 20px;
    }

    .privacy-stat-card h3 {
        font-size: 2rem;
    }

    /* Privacy Cards Mobile Styles */
    .privacy-card {
        padding: 25px 20px;
        margin-bottom: 20px;
        border-radius: 15px;
    }

    .privacy-card h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .privacy-card h3 {
        font-size: 1.3rem;
        margin: 20px 0 12px 0;
    }

    .privacy-card h4 {
        font-size: 1.1rem;
        margin: 15px 0 12px 0;
    }

    .privacy-card h5 {
        font-size: 1rem;
        margin: 12px 0 8px 0;
    }

    .privacy-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    /* Rules Cards Mobile Styles */
    .rules-card {
        padding: 25px 20px;
        margin-bottom: 20px;
        border-radius: 15px;
    }

    .rules-card h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .rules-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .privacy-hero {
        height: 40vh;
    }

    .privacy-hero h1 {
        font-size: 1.8rem;
    }

    .privacy-hero p {
        font-size: 1rem;
    }

    .privacy-content {
        padding: 20px 15px;
    }

    .privacy-section h3 {
        font-size: 1.3rem;
    }

    .privacy-section h4 {
        font-size: 1.1rem;
    }
}

/* Guest Reviews Page Styles */
.reviews {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.reviews h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews>.container>p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reviews .reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #667eea;
    display: flex;
    flex-direction: column;
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.platform-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 4px;
    background: white;
    padding: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.review-header h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
    flex: 1;
}

.platform-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    flex-shrink: 0;
}

.review-text {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    flex: 1;
    margin: 0;
    text-align: left;
}

/* Mobile Responsive for Reviews */
@media (max-width: 768px) {
    .reviews {
        padding: 60px 0;
    }

    .reviews h1 {
        font-size: 2rem;
    }

    .reviews>.container>p {
        font-size: 1rem;
        margin-bottom: 30px;
    }


    .review-card {
        padding: 20px;
    }

    .review-header {
        gap: 10px;
        margin-bottom: 12px;
    }

    .platform-icon {
        width: 20px;
        height: 20px;
        padding: 3px;
    }

    .review-header h4 {
        font-size: 1rem;
    }

    .platform-label {
        font-size: 0.8rem;
    }

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

@media (max-width: 480px) {

    .review-card {
        padding: 15px;
    }
}