/* ======== GLOBAL STYLES ======== */
:root {
    --primary-color: #526C83;
    --secondary-color: #E7A154;
    --light-color: #FEF6DF;
    --white-color: #ffffff;
    --text-color: #000000;
    --button-text-color: #ffffff;
    --hero-gradient-start: rgba(44, 62, 80, 0.7);
    --hero-gradient-end: rgba(44, 62, 80, 0.7);
}

body, h1, h2, h3, h4, p, a, .trust-item, .review-card, .contact-details, header, footer, section {
    transition: background-color 0.8s ease-out, color 0.8s ease-out;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white-color); 
    position: relative;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    color: var(--primary-color);
}

h2 {
    font-size: 2.2em;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.5em;
    color: var(--secondary-color);
}

section {
    padding: 60px 20px;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ======== TORCH LAYER ======== */
#torch-layer {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 90; 
    pointer-events: none; 
    
    /* Default (Mobile): Smaller torch so they still see the darkness */
    background: radial-gradient(
        circle 250px at var(--cursor-x, 50%) var(--cursor-y, 50%),
        transparent 0%,
        rgba(0, 0, 0, 0.1) 40%, 
        rgba(0, 0, 0, 0.92) 100% 
    );
    
    opacity: 0; 
    transition: opacity 0.5s ease;
    mix-blend-mode: multiply; 
}

/* Desktop: Huge torch */
@media (min-width: 768px) {
    #torch-layer {
        background: radial-gradient(
            circle 500px at var(--cursor-x, 50%) var(--cursor-y, 50%),
            transparent 0%,
            rgba(0, 0, 0, 0.1) 40%, 
            rgba(0, 0, 0, 0.92) 100% 
        );
    }
}

/* ======== STARRY NIGHT CANVAS ======== */
#starsCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* ======== FLOATING BOOK NOW BUTTON ======== */
.floating-book-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-color);
    color: var(--button-text-color);
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-book-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-book-btn:hover {
    background: #c88a44;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.floating-book-btn .btn-icon {
    font-size: 1.3em;
}

/* ======== WHATSAPP FLOATING BUTTON ======== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

/* ======== HEADER & NAVIGATION ======== */
header {
    background: var(--white-color);
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

nav .logo-container {
    display: flex;
    align-items: center;
    background: transparent;
}

nav .logo-img {
    height: 50px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.9em;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

/* ======== HERO SECTION ======== */
.hero {
    background-image: linear-gradient(var(--hero-gradient-start), var(--hero-gradient-end)), url('images/collie-on-beach.webp');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    transition: background-image 0.8s ease-out;
    color: var(--white-color);
    padding: 100px 20px;
    text-align: center;
    max-width: 100%;
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--white-color);
    font-size: 2.8em;
    margin-bottom: 10px;
    transition: color 0.8s ease-out;
}

.hero .subtitle {
    font-size: 1.3em;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-button {
    background: var(--secondary-color);
    color: var(--button-text-color);
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    font-size: 1.1em;
    display: inline-block;
}

.cta-button:hover {
    background: #c88a44;
}

/* ======== SERVICE TIMELINE ======== */
.service-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 150px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.1);
}

.timeline-content h4 {
    font-size: 1em;
    margin: 0 0 5px 0;
    color: var(--primary-color);
}

.timeline-content p {
    font-size: 0.9em;
    margin: 0;
    color: var(--text-color);
}

.timeline-connector {
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    margin: 0 10px;
    position: relative;
    top: -35px;
}

/* ======== SERVICES SECTION ======== */
.service-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
    margin-top: 50px;
}

.service-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#services ul {
    list-style: none;
    padding-left: 0;
}

#services ul li {
    padding: 5px 0 5px 30px;
    position: relative;
    font-size: 1.1em;
}

#services ul li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 5px;
    transition: color 0.8s ease-out;
}

/* ======== ABOUT SECTION ======== */
#about p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1em;
    line-height: 1.7;
}

/* ======== TRUST SECTION ======== */
#trust {
    background: var(--light-color);
    position: relative;
    z-index: 2;
}

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

.trust-item {
    background: var(--white-color);
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.trust-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.badge-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    color: var(--secondary-color);
    transition: transform 0.3s ease, color 0.8s ease-out;
}

.trust-item:hover .badge-icon {
    transform: rotateY(360deg);
}

.trust-item h4 {
    margin-top: 0;
    font-size: 1.2em;
    color: var(--secondary-color);
}

.trust-item .checkmark {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease;
}

.trust-item.animate-in .checkmark {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.3s;
}

/* Photo Gallery */
.gallery-title {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 30px;
    font-size: 2em;
}

#toggleGalleryButton {
    margin-top: 40px;
}

.gallery-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s ease-in-out;
    box-sizing: border-box; 
    border-top: 1px solid transparent;
}

.gallery-wrapper.open {
    max-height: 5000px;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--white-color);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

/* ======== INTERACTIVE MAP ======== */
#walks {
    background: var(--white-color); 
    position: relative;
    z-index: 2; 
}

.map-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 100%; 
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

@media (min-width: 768px) {
    .map-container {
        padding-bottom: 60%; 
    }
}

#map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

/* Custom Leaflet Styles - UPDATED ICONS */
.leaflet-div-icon {
    background: transparent;
    border: none;
}

.pulsing-hotspot {
    width: 30px; /* Larger size */
    height: 30px; /* Larger size */
    background-color: var(--secondary-color);
    border-radius: 50%;
    border: 3px solid white; /* Thicker border */
    /* Add a strong, glowing shadow using the orange color */
    box-shadow: 0 0 20px var(--secondary-color), 0 0 30px var(--secondary-color);
    animation: pulse 2s infinite ease-in-out;
    cursor: pointer;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        /* Stronger glow at rest */
        box-shadow: 0 0 20px var(--secondary-color), 0 0 30px var(--secondary-color);
    }
    50% {
        transform: scale(1.8); /* Larger pulse */
        opacity: 0.8;
        /* Even stronger, more diffused glow at peak pulse */
        box-shadow: 0 0 30px var(--secondary-color), 0 0 50px var(--secondary-color);
    }
}

/* Popup Styles */
.leaflet-popup-content-wrapper {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-family: inherit;
}

.leaflet-popup-content {
    margin: 12px;
    width: 220px !important;
}

.leaflet-popup-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    margin-top: 0;
}

.leaflet-popup-content img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 8px;
}

.leaflet-popup-content p {
    font-size: 0.9rem;
    color: #333; 
    margin: 0;
    line-height: 1.4;
}

/* ======== REVIEW STATS DASHBOARD ======== */
#review-stats {
    background: linear-gradient(135deg, var(--primary-color), #3d5569);
    padding: 60px 20px;
    position: relative;
    z-index: 2;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 4em;
    font-weight: bold;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2em;
    opacity: 0.95;
}

/* ======== CLEAN REVIEWS SECTION ======== */
#reviews {
    background: var(--light-color);
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}

#reviews > h2 {
    color: #FEF6DF !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-size: 2.5em;
    margin-bottom: 15px;
}

#reviews > p {
    font-size: 1.1em;
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    opacity: 0.95;
    margin-bottom: 10px;
}

.review-showcase {
    max-width: 900px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.review-controls-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.random-review-btn {
    background: #E7A154 !important;
    color: #ffffff !important;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.random-review-btn:hover {
    background: #c88a44 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.review-counter {
    font-size: 1.2em;
    font-weight: 600;
    background: rgba(82, 108, 131, 0.95) !important;
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.review-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.review-nav-btn {
    background: #E7A154 !important;
    color: #ffffff !important;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.5em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.review-nav-btn:hover {
    background: #c88a44 !important;
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.review-card-wrapper {
    flex: 1;
    max-width: 650px;
    min-height: 400px;
    position: relative;
}

.review-card {
    background: #ffffff !important;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    padding: 40px;
    text-align: left;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.review-card .stars {
    color: #E7A154 !important;
    font-size: 1.8em;
    margin-bottom: 25px;
}

.review-card .review-text {
    font-size: 1.15em;
    line-height: 1.8;
    flex-grow: 1;
    margin-bottom: 30px;
    color: #2c3e50 !important;
}

.review-card .review-footer {
    border-top: 2px solid #e8e8e8;
    padding-top: 20px;
}

.review-card .review-author {
    font-weight: bold;
    color: #526C83 !important;
    font-size: 1.3em;
    margin-bottom: 8px;
}

.review-card .review-source {
    font-style: italic;
    font-size: 1em;
    color: #6c757d !important;
}

/* Review Dots */
.review-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.review-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.review-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: #E7A154;
    transform: scale(1.2);
}

.review-dot.active {
    background: #E7A154 !important;
    border-color: #E7A154 !important;
    transform: scale(1.4);
}

.review-dot-ellipsis {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.2em;
    padding: 0 8px;
}

/* Animations */
@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutLeft {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(-100%); opacity: 0; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.slide-in-right { animation: slideInRight 0.4s ease-out forwards; }
.slide-in-left { animation: slideInLeft 0.4s ease-out forwards; }
.slide-out-left { animation: slideOutLeft 0.4s ease-out forwards; position: absolute; }
.slide-out-right { animation: slideOutRight 0.4s ease-out forwards; position: absolute; }
.fade-in { animation: fadeIn 0.5s ease-out forwards; }

/* ======== PRICING SECTION ======== */
#pricing {
    background: var(--white-color);
    padding: 80px 20px;
    position: relative;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 50px auto 40px;
}

.pricing-card {
    background: var(--light-color);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
}

.pricing-card h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.price {
    font-size: 3em;
    font-weight: bold;
    color: var(--primary-color);
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
}

.price .currency {
    font-size: 0.5em;
    margin-top: 10px;
    margin-right: 5px;
}

.price .amount {
    font-size: 1em;
}

.price-description {
    font-size: 1.1em;
    color: var(--text-color);
    margin-bottom: 30px;
    font-style: italic;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 1.05em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-cta {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--button-text-color);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    background: #c88a44;
    transform: scale(1.05);
}

.discount-banner {
    background: linear-gradient(135deg, var(--secondary-color), #d89844);
    border-radius: 15px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.discount-icon {
    font-size: 3em;
    flex-shrink: 0;
}

.discount-content {
    text-align: left;
    color: white;
}

.discount-content h4 {
    margin: 0 0 10px 0;
    font-size: 1.5em;
    color: white;
}

.discount-content p {
    margin: 0;
    font-size: 1.1em;
    opacity: 0.95;
}

/* ======== FAQ SECTION ======== */
#faq {
    background: var(--light-color);
    padding: 80px 20px;
    position: relative;
    z-index: 2;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--white-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    font-size: 1.15em;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(82, 108, 131, 0.05);
}

.faq-icon {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

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

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

.faq-answer p {
    padding: 0 30px 25px;
    margin: 0;
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--text-color);
}

/* ======== CONTACT SECTION ======== */
.contact-details {
    background: var(--light-color);
    border: none;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    margin: 30px auto 0;
    font-weight: 500;
    font-size: 1.2em;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-details p {
    margin: 15px 0;
}

.contact-details a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* ======== FOOTER ======== */
footer {
    background: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    padding: 20px;
    max-width: 100%;
    position: relative;
    z-index: 2;
}

/* ======== MOBILE RESPONSIVENESS ======== */
@media (max-width: 768px) {
    nav ul { display: none; }
    nav { height: auto; padding: 10px 20px; }
    nav .logo-img { height: 40px; }
    
    .hero {
        padding: 60px 20px;
        background-attachment: scroll;
    }
    .hero h1 { font-size: 2.2em; }
    .hero .subtitle { font-size: 1.1em; }
    
    /* Service Timeline Mobile */
    .service-timeline {
        flex-direction: column;
        gap: 20px;
    }
    
    .timeline-connector {
        width: 3px;
        height: 40px;
        top: 0;
        margin: 10px 0;
    }
    
    .trust-grid { grid-template-columns: 1fr; }
    .service-container { grid-template-columns: 1fr; }
    .photo-gallery { grid-template-columns: 1fr; }
    .gallery-item img { height: 300px; }
    
    /* Stats Dashboard Mobile */
    .stats-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 3em;
    }
    
    /* Mobile Reviews */
    .review-controls-top {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .random-review-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .review-display {
        gap: 10px;
    }
    
    .review-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 2em;
    }
    
    .review-card-wrapper {
        max-width: 100%;
    }
    
    .review-card {
        padding: 30px;
        min-height: 380px;
    }
    
    .review-card .review-text {
        font-size: 1.05em;
        line-height: 1.7;
    }
    
    /* Pricing Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .discount-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .discount-content {
        text-align: center;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 20px;
        font-size: 1.05em;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 1em;
    }
    
    .contact-details {
        font-size: 1em;
        padding: 20px;
    }
    
    /* Floating Buttons Mobile */
    .floating-book-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 1em;
    }
    
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8em; }
    .hero .subtitle { font-size: 1em; }
    .cta-button { padding: 10px 20px; font-size: 1em; }
    h2 { font-size: 1.8em; }
    section { padding: 40px 15px; }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8em;
    }
    
    .stat-number {
        font-size: 2.5em;
    }
    
    .stat-label {
        font-size: 1em;
    }
    
    .review-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.8em;
    }
    
    .review-card {
        padding: 25px;
        min-height: 350px;
    }
    
    .review-card .stars {
        font-size: 1.5em;
    }
    
    .review-card .review-text {
        font-size: 1em;
    }
    
    .review-card .review-author {
        font-size: 1.15em;
    }
    
    .price {
        font-size: 2.5em;
    }
    
    .pricing-card h3 {
        font-size: 1.5em;
    }
}

/* ======== READABILITY FIXES ======== */
h1, h2, h3, h4, p {
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); 
}

section h2 {
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

/* Readability Fix: Lift text ABOVE the torch layer */
#walks h2, 
#walks p {
    position: relative;
    z-index: 95;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 
                 0 2px 4px rgba(0, 0, 0, 0.8);
}

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