/* ===================================
   CSS Variables & Root Styles
   =================================== */
:root {
    /* Color Palette - Improved hierarchy and contrast */
    /* Primary Brand - Deep Forest Green (headers, footer, nav) */
    --color-primary: #1a4d2e;
    --color-primary-light: #2d6a4f;
    --color-primary-dark: #0d2818;
    
    /* Secondary - Soft Sage (background sections for breathing space) */
    --color-secondary: #d8e9d7;
    --color-secondary-light: #e8f3e7;
    
    /* Accent/CTA - Earthy Terracotta (PRIMARY ACTIONS ONLY) */
    --color-accent: #D66844;
    --color-accent-light: #E07B58;
    --color-accent-dark: #B85636;
    
    /* Neutral System */
    --color-bg-white: #ffffff;
    --color-bg-warm: #faf8f5;
    --color-text-dark: #2b2b2b;
    --color-text-body: #4a4a4a;
    --color-text-muted: #6b6b6b;
    --color-text-light: #f5f5f5;
    --color-border: #e0ddd8;
    
    /* Typography - Improved hierarchy */
    --font-heading: 'Crimson Pro', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows - More prominent */
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 48px rgba(0, 0, 0, 0.16);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Layout */
    --navbar-height: 80px;
    --navbar-height-mobile: 70px;
}

/* ===================================
   Global Reset & Base Styles
   =================================== */
* {
    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-body);
    background-color: var(--color-bg-white);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   Typography - Clear Hierarchy
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-dark);
}

h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-sm);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    color: var(--color-text-body);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled .nav-menu {
    background: rgba(245, 245, 245, 0.8);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    text-decoration: none;
}

.brand-icon {
    color: var(--color-accent);
    font-size: 1.75rem;
    animation: pulsePaw 2s ease-in-out infinite;
}

@keyframes pulsePaw {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    background: rgba(248, 248, 248, 0.6);
    padding: 0.5rem;
    border-radius: var(--radius-xl);
}

.nav-link {
    color: var(--color-text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-md);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
    background: rgba(26, 77, 46, 0.08);
}

.nav-cta {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: white !important;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 104, 68, 0.4);
    color: white !important;
    background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
}

/* Outline style when at contact section */
.nav-cta.outline {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent) !important;
    box-shadow: none;
}

.nav-cta.outline:hover {
    background: var(--color-accent);
    color: white !important;
    box-shadow: 0 6px 20px rgba(214, 104, 68, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    padding-top: var(--navbar-height);
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: safe center;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-slider {
    position: absolute;
    top: calc(-1 * var(--navbar-height));
    left: 0;
    width: 100%;
    height: calc(100% + var(--navbar-height));
}

.hero-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-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(13, 40, 24, 0.6) 0%,
        rgba(13, 40, 24, 0.5) 30%,
        rgba(13, 40, 24, 0.65) 60%,
        rgba(10, 30, 18, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-text-light);
    max-width: 900px;
    width: 100%;
    padding: var(--spacing-md);
    flex-shrink: 0;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 8px 24px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.4s both;
    line-height: 1.15;
    color: #ffffff;
}

.hero-title-accent {
    color: var(--color-accent-light);
    display: inline-block;
    position: relative;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.4),
        0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn span,
.btn i {
    position: relative;
    z-index: 1;
}

.btn i {
    transition: transform var(--transition-normal);
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-primary {
    background: linear-gradient(135deg, #D66844 0%, #C4784A 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(214, 104, 68, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(214, 104, 68, 0.5);
    background: linear-gradient(135deg, #C4784A 0%, #D66844 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-package {
    width: 100%;
    justify-content: center;
    background: transparent;
    color: #D66844;
    padding: 0.75rem;
    font-size: 0.9rem;
    border: 2px solid #D66844;
    box-shadow: none;
}

.btn-package:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #D66844 0%, #C4784A 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(214, 104, 68, 0.5);
}

.btn-submit {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 0.875rem 1.75rem;
    justify-content: center;
    margin-top: var(--spacing-xs);
    width: 100%;
    box-shadow: 0 4px 15px rgba(26, 77, 46, 0.3);
    border: none;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 77, 46, 0.4);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

.btn-submit i {
    color: white;
}

.hero-features {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-feature i {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    animation: fadeIn 1s ease-out 1.5s both;
}

.scroll-indicator {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--color-accent));
    margin: 10px auto 0;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(15px); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--color-text-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.slider-control:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-control.prev {
    left: 30px;
}

.slider-control.next {
    right: 30px;
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: 5rem 0;
    scroll-margin-top: var(--navbar-height);
}

section#home {
    scroll-margin-top: var(--navbar-height);
}

/* Major content sections get extra breathing room */
.packages-section,
.locations-section,
.testimonials-section,
.about-section {
    padding: 7rem 0;
}

.section-badge {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-md);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.section-subtitle {
    color: var(--color-text-body);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===================================
   Introduction Section
   =================================== */
.intro-section {
    background: var(--color-secondary-light);
}

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

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 2px solid var(--color-primary);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.intro-text {
    margin: var(--spacing-md) 0;
    text-align: left;
}

.intro-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-body);
    margin-bottom: var(--spacing-md);
}

.intro-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.highlight-item {
    display: flex;
    gap: var(--spacing-sm);
    text-align: left;
    padding: var(--spacing-md);
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.highlight-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.highlight-text h3 {
    font-size: 1.25rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.highlight-text p {
    color: var(--color-text-body);
    font-size: 0.95rem;
    margin: 0;
}

/* ===================================
   Packages Section
   =================================== */
.packages-section {
    background: var(--color-bg-white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
}

.package-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.package-card.featured {
    border: 3px solid var(--color-accent);
    position: relative;
}

.package-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.package-card:hover .package-image img {
    transform: scale(1.08);
}

.package-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    color: var(--color-text-dark);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.package-badge.featured-badge {
    background: var(--color-accent);
    color: white;
    box-shadow: 0 4px 15px rgba(214, 104, 68, 0.4);
}

.package-content {
    padding: 1rem 1.25rem;
}

.package-header {
    margin-bottom: 0.5rem;
}

.package-header h3 {
    font-size: 1.25rem;
    color: var(--color-text-dark);
    margin-bottom: 0.35rem;
    font-weight: 700;
}

.package-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #ffa500;
    font-size: 0.9rem;
}

.package-rating span {
    margin-left: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.package-description {
    color: var(--color-text-body);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.package-features {
    list-style: none;
    margin-bottom: 0.75rem;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0;
    color: var(--color-text-body);
    font-size: 0.85rem;
}

.package-features i {
    color: var(--color-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
    margin-bottom: 0.5rem;
}

.package-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #D66844;
    line-height: 1;
}

.price-per {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.package-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.btn-package {
    width: 100%;
    justify-content: center;
    background: transparent;
    color: #D66844;
    padding: 0.75rem;
    font-size: 0.9rem;
    border: 2px solid #D66844;
    box-shadow: none;
}

.btn-package:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #D66844 0%, #C4784A 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(214, 104, 68, 0.5);
}

/* ===================================
   Locations Section
   =================================== */
.locations-section {
    background: linear-gradient(180deg, var(--color-bg-white) 0%, var(--color-bg-light) 100%);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.location-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.location-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.location-card:hover .location-image img {
    transform: scale(1.1);
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(26, 77, 46, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-md);
}

.location-icon {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.location-content {
    padding: var(--spacing-md);
}

.location-content h3 {
    font-size: 1.5rem;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
    transition: var(--transition-fast);
}

.location-card:hover .location-content h3 {
    color: var(--color-primary);
}

.location-highlight {
    color: var(--color-text-body);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.location-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.tag i {
    font-size: 0.85rem;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    background: var(--color-bg-white);
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    min-height: 400px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all var(--transition-slow);
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-card {
    background: var(--color-bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-border);
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    color: #ff9500;
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-md);
    font-style: italic;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
}

.author-info h4 {
    font-size: 1.125rem;
    color: var(--color-text-dark);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.author-info p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.verified {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.verified i {
    color: #28a745;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-accent);
    border: none;
    color: var(--color-text-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 10;
}

.testimonial-nav:hover {
    background: var(--color-accent-dark);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav.prev {
    left: -70px;
}

.testimonial-nav.next {
    right: -70px;
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 2px solid var(--color-border);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.stat-stars {
    margin-top: 0.5rem;
    color: #ffa500;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    background: var(--color-secondary-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-lg);
    align-items: stretch;
}

.about-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main {
    flex: 1;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.about-image-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    flex-shrink: 0;
}

.about-image-small img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.about-image-small:hover img {
    transform: scale(1.05);
}

.about-badge-image {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--color-accent);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.about-badge-image i {
    font-size: 1.5rem;
}

.about-content .section-title {
    text-align: left;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-body);
    margin-bottom: var(--spacing-md);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.value-item {
    display: flex;
    gap: var(--spacing-sm);
}

.value-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.value-content h3 {
    font-size: 1.125rem;
    color: var(--color-text-dark);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.value-content p {
    color: var(--color-text-body);
    font-size: 0.95rem;
    margin: 0;
}

.about-certifications {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--radius-lg);
}

.about-certifications h3 {
    font-size: 1.25rem;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-sm);
}

.cert-badges {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-bg-white);
    border: 2px solid var(--color-primary);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-dark);
}

.cert-badge i {
    color: var(--color-primary);
    font-size: 1.25rem;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: var(--color-text-light);
    padding: var(--spacing-lg) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-md);
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: var(--spacing-sm);
    color: #ffffff;
    font-weight: 700;
}

.contact-intro {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.contact-method {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.contact-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.15rem;
}

.contact-details h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: #ffffff;
    font-weight: 700;
}

.contact-details p {
    font-size: 1.1rem;
    margin-bottom: 0.15rem;
    color: #ffffff;
    font-weight: 600;
}

.availability {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-top: 0.35rem;
}

.social-links h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-light);
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: 1.15rem;
    transition: var(--transition-normal);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: translateY(-3px);
}

.contact-form {
    background: var(--color-bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.125rem;
    min-height: 48px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--color-bg-white);
    color: var(--color-text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}



/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--color-primary-dark);
    color: var(--color-text-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
    color: var(--color-text-light);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
}

.footer-brand i {
    font-size: 1.75rem;
}

.footer-description {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.footer-certifications-small {
    margin-top: var(--spacing-sm);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--color-text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-accent);
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: var(--spacing-sm);
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
    font-family: var(--font-primary);
}

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

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 0.875rem 1.25rem;
    background: var(--color-accent);
    border: none;
    border-radius: var(--radius-md);
    color: var(--color-text-dark);
    cursor: pointer;
    transition: var(--transition-normal);
}

.newsletter-form button:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

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

.footer-social a:hover {
    background: var(--color-accent);
    color: var(--color-text-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-bottom p {
    opacity: 0.8;
    margin: 0;
}

.footer-payment {
    display: flex;
    gap: var(--spacing-sm);
    font-size: 1.5rem;
    opacity: 0.6;
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--color-text-dark);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 998;
    box-shadow: var(--shadow-md);
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   Floating Contact Buttons
   =================================== */
.floating-contacts {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-normal);
    cursor: pointer;
    overflow: visible;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.phone-btn {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--color-text-dark);
}

.btn-label {
    position: absolute;
    right: 75px;
    background: rgba(26, 26, 26, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    pointer-events: none;
    font-family: var(--font-primary);
}

.btn-label::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid rgba(26, 26, 26, 0.9);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.floating-btn:hover .btn-label {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(214, 104, 68, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(214, 104, 68, 0.6);
    }
}

/* Add subtle pulse to primary CTA buttons */
.btn-primary,
.btn-package {
    animation: ctaPulse 2s ease-in-out infinite;
}

.btn-primary:hover,
.btn-package:hover {
    animation: none;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1200px) {
    .testimonial-nav.prev {
        left: -50px;
    }
    .testimonial-nav.next {
        right: -50px;
    }
}

@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-gallery {
        height: auto;
    }

    .about-image-main {
        flex: none;
    }

    .about-image-main img {
        height: 300px;
        min-height: unset;
    }

    .about-image-small img {
        height: 180px;
    }
    
    .testimonial-nav.prev,
    .testimonial-nav.next {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-nav.prev {
        left: 10px;
    }
    
    .testimonial-nav.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    :root {
        --navbar-height: var(--navbar-height-mobile);
    }

    .hero {
        padding-top: var(--navbar-height-mobile);
    }

    section {
        scroll-margin-top: var(--navbar-height-mobile);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-bg-white);
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 0.5rem;
        transition: var(--transition-normal);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        border-radius: 0;
        align-items: stretch;
    }

    .nav-link {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        border-radius: var(--radius-md);
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 1rem;
        text-align: center;
        padding: 1rem 1.5rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .packages-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form form {
        display: flex;
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .slider-control {
        width: 45px;
        height: 45px;
    }
    
    .slider-control.prev {
        left: 15px;
    }
    
    .slider-control.next {
        right: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Floating buttons mobile adjustments */
    .floating-contacts {
        right: 20px;
        bottom: 90px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 1.35rem;
    }

    .btn-label {
        display: none; /* Hide labels on mobile to save space */
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }

    .hero {
        min-height: 600px;
        padding-top: var(--navbar-height-mobile);
    }

    section {
        padding: 3.5rem 0;
        scroll-margin-top: var(--navbar-height-mobile);
    }

    .packages-section,
    .locations-section,
    .testimonials-section,
    .about-section {
        padding: 4.5rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .intro-highlights,
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .testimonial-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-image-main img {
        height: 250px;
        min-height: unset;
    }

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

    .about-image-small img {
        height: 180px;
    }
}

/* ===================================
   Animations & Utilities
   =================================== */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Loading State */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

/* Focus Visible for Accessibility */
*:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
}
