/*
Theme Name: Healthy DAF
Theme URI: https://healthy-daf.com
Author: Antigravity
Description: A premium, authentic Indian clinical nutrition and functional wellness theme.
Version: 1.0.0
Author URI: https://default.com
Text Domain: healthydaf
*/
/* ==========================================================================
   CSS Variables & Global Styles
   ========================================================================== */
:root {
    --color-primary: #2d6a4f; /* Deep forest green */
    --color-secondary: #52b788; /* Mint */
    --color-bg: #fefae0; /* Warm cream */
    --color-accent: #e9c46a; /* Golden accent */
    --color-text: #2b2d42;
    --color-text-light: #6c757d;
    --color-white: #ffffff;
    
    --font-heading: 'Rubik', sans-serif;
    --font-body: 'Rubik', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 60px 0;
}

/* Offset all anchor sections below the sticky navbar */
section[id] {
    scroll-margin-top: 100px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

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

.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.875rem;
    padding: 0.5rem 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 1.5rem;
}

.top-bar-left a:hover {
    color: var(--color-accent);
}

.top-bar-left i {
    color: var(--color-accent);
    margin-right: 0.3rem;
}

.whatsapp-link {
    background-color: #25D366;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.whatsapp-link:hover {
    background-color: #128C7E;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    background-color: var(--color-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: var(--shadow-md);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    font-size: 2rem;
    color: var(--color-primary);
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leaf-icon {
    color: var(--color-secondary);
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 1.2rem;
}

.logo-text h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: 700;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--color-accent);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 5px;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dropdown Menu Styles (Compact) */
.nav-links li.dropdown {
    position: relative;
}
.nav-links li.dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}
.nav-links li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li {
    margin: 0;
}
.dropdown-menu li a {
    padding: 0.8rem 1.5rem;
    display: block;
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.2s;
}
.dropdown-menu li a:hover {
    background: #f8f9fa;
    color: var(--color-primary);
}
.dropdown-menu li a::after {
    display: none; /* Hide the underline animation for dropdown items */
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: calc(100vh - 120px);
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-carousel .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-carousel .slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(45, 106, 79, 0.85) 0%, rgba(45, 106, 79, 0.6) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: -80px;
}

.hero-text-box {
    color: var(--color-white);
    position: relative;
    z-index: 5;
}



.cert-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(233, 196, 106, 0.2);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-headline {
    color: var(--color-white);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subheadline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 90%;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-end;
}

.stat-card {
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    width: 200px;
    text-align: center;
    transform: translateX(100px);
    opacity: 0;
    animation: slideInRight 0.8s forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.3s; }
.stat-card:nth-child(2) { animation-delay: 0.5s; }
.stat-card:nth-child(3) { animation-delay: 0.7s; }

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.2rem;
    color: var(--color-secondary);
}

.stat-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 600;
}

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive basics */
@media (max-width: 992px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 140px;
        padding-bottom: 60px;
    }
    .hero-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        margin-top: 0;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    
    .stat-card {
        transform: translateY(50px);
        animation: slideInUp 0.8s forwards;
    }
    
    .hero-headline {
        font-size: 3rem;
    }
}

@keyframes slideInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .top-bar-left .address {
        display: none;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        text-align: center;
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .stat-card {
        width: 140px;
    }
    
    .stat-card h3 {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 40px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
}

.text-center .section-subtitle {
    padding-left: 0;
}

.text-center .section-subtitle::before,
.text-center .section-subtitle::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
    margin: 0 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
}

.section-header p {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.bg-light {
    background-color: #f8f9fa;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.img-wrapper:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--color-accent);
    color: var(--color-primary);
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 6px solid var(--color-background);
}

.experience-badge span {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
}

.experience-badge p {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 5px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.about-badges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-item i {
    font-size: 1.5rem;
    color: var(--color-secondary);
    background-color: rgba(82, 183, 136, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.badge-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-carousel-wrap {
    position: relative;
    margin-top: 3rem;
    padding: 0 50px;
}

.services-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 2rem;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex: 1 1 0;
    min-width: 220px;
    background-color: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    scroll-snap-align: start;
    transition: var(--transition);
    position: relative;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--color-secondary);
}

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 1.5rem 2rem;
    position: relative;
}

.service-icon {
    position: absolute;
    top: -25px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
    border: 3px solid var(--color-white);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    min-height: 40px;
    line-height: 1.6;
}

.know-more {
    font-weight: 600;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.know-more:hover {
    color: var(--color-primary);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    color: var(--color-primary);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.carousel-nav:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

/* ==========================================================================
   Certifications Section
   ========================================================================== */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cert-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
    border-left: 4px solid var(--color-secondary);
}

.cert-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.cert-icon {
    font-size: 2rem;
    color: var(--color-accent);
}

.cert-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.cert-info span {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-weight: 600;
}

@media (max-width: 768px) {
    .cert-card {
        padding: 1rem;
        gap: 0.8rem;
    }
    .cert-icon {
        font-size: 1.5rem;
    }
    .cert-info h4 {
        font-size: 1rem;
    }
}

/* Responsive updates for new sections */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .carousel-nav {
        display: none;
    }
}
@media (max-width: 768px) {
    .about-badges-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   How It Works Section (Timeline)
   ========================================================================== */
.how-it-works {
    position: relative;
    overflow: hidden;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 4rem;
    text-align: center;
}

/* Connecting line */
.timeline::before {
    content: '';
    position: absolute;
    top: 50px; /* middle of icon */
    left: 12.5%; /* center of first column */
    right: 12.5%; /* center of last column */
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.timeline-step {
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.step-icon {
    width: 100px;
    height: 100px;
    background-color: var(--color-primary);
    border: 3px solid var(--color-accent);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-accent);
    position: relative;
    box-shadow: 0 0 0 10px rgba(45, 106, 79, 1); /* blends with bg */
    transition: var(--transition);
}

.timeline-step:hover .step-icon {
    transform: scale(1.1);
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.step-number {
    position: absolute;
    top: -5px;
    right: 50%;
    margin-right: -50px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid var(--color-primary);
}

.timeline-step h3 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.timeline-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .timeline {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 4rem;
    }
    .timeline::before {
        display: none;
    }
}
@media (max-width: 576px) {
    .timeline {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testi-carousel-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testi-carousel {
    position: relative;
    height: 320px;
}

.testi-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transform: translateX(50px);
}

.testi-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.testi-card {
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
}

.testi-card::before {
    content: '\f10d'; /* quote icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 3rem;
    color: rgba(82, 183, 136, 0.1);
}

.rating {
    color: #ffd166;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testi-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testi-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testi-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-secondary);
}

.testi-author h5 {
    margin-bottom: 0;
    font-size: 1.1rem;
    text-align: left;
}

.testi-author span {
    font-size: 0.85rem;
    color: var(--color-text-light);
    display: block;
    text-align: left;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d1d1d1;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .dot:hover {
    background-color: var(--color-primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testi-carousel {
        height: 400px;
    }
    .testi-card {
        padding: 2rem;
    }
    .testi-quote {
        font-size: 1.05rem;
    }
}

/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-content {
    padding: 2rem;
}

.blog-date {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.blog-date i {
    color: var(--color-secondary);
    margin-right: 5px;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: var(--transition);
}

.blog-card:hover h3 {
    color: var(--color-secondary);
}

.blog-card p {
    color: var(--color-text);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

    .read-more:hover {
        color: var(--color-accent);
        gap: 0.8rem;
    }

/* Blog Single Article Premium Typography */
.blog-single-page {
    padding-top: 150px;
    min-height: 80vh;
}
.blog-single-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}
.blog-single-title {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.blog-single-date {
    color: var(--color-text-light);
    margin-bottom: 3rem;
    font-size: 1.15rem;
}
.blog-single-hero {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
    border-radius: 20px;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-md);
}
.blog-single-content {
    line-height: 1.9;
    font-size: 1.15rem;
    color: var(--color-text);
    font-family: var(--font-body);
}
.blog-single-content h2, .blog-single-content h3 {
    color: var(--color-secondary);
    font-family: var(--font-heading);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}
.blog-single-content p {
    margin-bottom: 1.5rem;
}
.blog-single-content ul, .blog-single-content ol {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}
.blog-single-content li {
    margin-bottom: 0.8rem;
}
.blog-single-content .highlight-box {
    background: #fdfaf6;
    padding: 2.5rem;
    border-left: 5px solid var(--color-accent);
    border-radius: 8px;
    margin: 2.5rem 0;
}
.blog-single-share {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}
@media (max-width: 768px) {
    .blog-single-container {
        padding: 2rem;
    }
    .blog-single-title {
        font-size: 2.5rem;
    }
    .blog-single-content {
        font-size: 1.05rem;
    }
}
    /* ==========================================================================
       Booking & Contact Section
       ========================================================================== */
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin-top: 3rem;
        background-color: var(--color-white);
        border-radius: 20px;
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .booking-widget, .contact-form-wrapper {
        padding: 3rem;
        box-sizing: border-box;
        width: 100%;
        overflow: hidden;
    }

    .contact-form-wrapper {
        background-color: #f8f9fa;
        border-left: 1px solid #eee;
    }

    .widget-header h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .text-primary { color: var(--color-primary); }

    .widget-header p {
        color: var(--color-text-light);
        margin-bottom: 2rem;
        font-size: 0.95rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--color-primary);
        font-size: 0.9rem;
    }

    .form-group input, 
    .form-group select, 
    .form-group textarea {
        width: 100%;
        padding: 0.9rem 1.2rem;
        border: 1px solid #ddd;
        border-radius: 10px;
        font-family: var(--font-body);
        font-size: 1rem;
        transition: var(--transition);
        background-color: var(--color-white);
    }

    .form-group input:focus, 
    .form-group select:focus, 
    .form-group textarea:focus {
        border-color: var(--color-secondary);
        outline: none;
        box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.2);
    }

    .form-group.error input, 
    .form-group.error select, 
    .form-group.error textarea {
        border-color: #e63946;
        background-color: #fff5f5;
    }

    .error-message {
        color: #e63946;
        font-size: 0.8rem;
        margin-top: 0.3rem;
        font-weight: 500;
        display: none;
    }

    .form-group.error .error-message {
        display: block;
    }

    .btn-block {
        width: 100%;
        box-sizing: border-box;
        margin-top: 1rem;
    }

    @media (max-width: 992px) {
        .contact-grid {
            grid-template-columns: 1fr;
        }
        .contact-form-wrapper {
            border-left: none;
            border-top: 1px solid #eee;
        }
    }

    @media (max-width: 768px) {
        .booking-widget, .contact-form-wrapper {
            padding: 1.5rem;
        }
        .contact-grid {
            border-radius: 12px;
            margin-top: 1.5rem;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            box-sizing: border-box;
            font-size: 0.95rem;
            padding: 0.75rem 1rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .widget-header h3 {
            font-size: 1.2rem;
        }
    }

    /* ==========================================================================
       Map Section
       ========================================================================== */
    .pt-0 { padding-top: 0; }
    
    .contact-info-grid {
        display: grid;
        grid-template-columns: 400px 1fr;
        background-color: var(--color-white);
        border-radius: 20px;
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .contact-details {
        padding: 3rem;
        background-color: var(--color-primary);
        color: var(--color-white);
    }

    .contact-details h3 {
        color: var(--color-accent);
        margin-bottom: 1rem;
    }

    .contact-details p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 2rem;
        font-size: 0.95rem;
    }

    .info-list li {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        align-items: flex-start;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: var(--color-accent);
        flex-shrink: 0;
    }

    .info-text h5 {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .info-text p, .info-text a {
        color: var(--color-white);
        font-weight: 500;
        font-size: 1.05rem;
    }

    .info-text a:hover {
        color: var(--color-accent);
    }

    .map-container {
        min-height: 400px;
    }

    @media (max-width: 992px) {
        .contact-info-grid {
            grid-template-columns: 1fr;
        }
    }

    /* ==========================================================================
       Footer
       ========================================================================== */
    .footer {
        background-color: #1a4030;
        color: var(--color-white);
    }

    .footer-top {
        padding: 5rem 0 3rem;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 3rem;
    }

    .footer-brand .logo-text h3 {
        color: var(--color-white);
        margin-bottom: 0;
    }

    .footer-tagline {
        color: rgba(255, 255, 255, 0.7);
        margin: 1.5rem 0;
        font-size: 0.95rem;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

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

    .social-links a:hover {
        background-color: var(--color-accent);
        color: var(--color-primary);
        transform: translateY(-3px);
    }

    .footer-links h4, .footer-newsletter h4 {
        color: var(--color-white);
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
    }

    .footer-links ul li {
        margin-bottom: 0.8rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
    }

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

    .footer-newsletter p {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .newsletter-form {
        display: flex;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 30px;
        overflow: hidden;
        padding: 0.3rem;
    }

    .newsletter-form input {
        background: transparent;
        border: none;
        padding: 0.8rem 1.2rem;
        color: white;
        width: 100%;
        outline: none;
    }

    .newsletter-form input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .newsletter-form button {
        background-color: var(--color-accent);
        color: var(--color-primary);
        border: none;
        width: 45px;
        border-radius: 50%;
        cursor: pointer;
        transition: var(--transition);
    }

    .newsletter-form button:hover {
        background-color: var(--color-white);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1.5rem 0;
    }

    .footer-bottom-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.85rem;
    }

    .footer-legal a {
        color: rgba(255, 255, 255, 0.6);
        margin-left: 1.5rem;
    }

    .footer-legal a:hover {
        color: var(--color-accent);
    }

    @media (max-width: 992px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr;
        }
    }
    @media (max-width: 576px) {
        .footer-grid {
            grid-template-columns: 1fr;
        }
        .footer-bottom-inner {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
    }

    /* ==========================================================================
       Back to Top Button
       ========================================================================== */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background-color: var(--color-primary);
        color: var(--color-white);
        border: none;
        border-radius: 50%;
        font-size: 1.2rem;
        cursor: pointer;
        box-shadow: var(--shadow-md);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background-color: var(--color-accent);
        color: var(--color-primary);
        transform: translateY(-5px);
    }
