/* ==========================================================================
   CSS VARIABLES & RESET
   ========================================================================== */
:root {
    /* Colors */
    --primary-color: #d34b48;
    --primary-hover: #b83c39;
    --secondary-color: #e2c0aa;
    --secondary-hover: #d2ad94;
    --accent-color: #f7e8df;
    --text-dark: #3e2723;
    --text-light: #6d4c41;
    --text-muted: #8d6e63;
    --bg-light: #faf5f2;
    --bg-white: #ffffff;
    --border-color: #eed6c5;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(62, 39, 35, 0.08);
    --shadow-hover: 0 15px 40px rgba(211, 75, 72, 0.15);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Layout */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for fixed header */
}

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

/* Hide scrollbar during loader */
body.loading {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

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: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

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

.highlight {
    color: var(--primary-color);
    font-style: italic;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.d-mobile-only {
    display: none;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(211, 75, 72, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 75, 72, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   LOADER / OPENING ANIMATION
   ========================================================================== */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--accent-color);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.paw-prints {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    height: 60px;
    width: 200px;
}

.paw {
    color: var(--primary-color);
    font-size: 2rem;
    position: absolute;
    opacity: 0;
    transform: scale(0.5) rotate(-20deg);
}

.paw1 { bottom: 0; left: 0; animation: pawWalk 2s ease forwards 0.2s; }
.paw2 { top: 10px; left: 40px; animation: pawWalk 2s ease forwards 0.6s; transform: scale(0.5) rotate(10deg); }
.paw3 { bottom: 0; left: 80px; animation: pawWalk 2s ease forwards 1.0s; transform: scale(0.5) rotate(-15deg); }
.paw4 { top: 10px; left: 120px; animation: pawWalk 2s ease forwards 1.4s; transform: scale(0.5) rotate(15deg); }
.paw5 { bottom: 0; left: 160px; animation: pawWalk 2s ease forwards 1.8s; transform: scale(0.5) rotate(-10deg); }

@keyframes pawWalk {
    0% { opacity: 0; transform: scale(0.5) translateY(10px) rotate(0); }
    30% { opacity: 1; transform: scale(1.1) translateY(0) rotate(var(--rotation, 0)); }
    100% { opacity: 1; transform: scale(1) translateY(0) rotate(var(--rotation, 0)); }
}

.loader-logo {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards 2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: transparent;
    padding: 20px 0;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.brand-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
}

.brand-logo-loader {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
    filter: blur(100px);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.trust-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    padding: 10px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    color: var(--text-dark);
}

.trust-card i {
    color: var(--primary-color);
}

.hero-image-wrapper {
    position: relative;
}

.hero-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.hero-image-bg {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: var(--radius-lg);
    z-index: 1;
}

.floating-badge {
    position: absolute;
    background-color: white;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.badge-1 {
    bottom: 10%;
    left: -10%;
    color: #f39c12;
}

.badge-2 {
    top: 20%;
    right: -10%;
    color: var(--primary-color);
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ==========================================================================
   SECTION TITLES
   ========================================================================== */
.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

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

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.value-card:hover .icon-wrapper {
    background-color: var(--primary-color);
    color: white;
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.value-card p {
    color: var(--text-light);
}

/* ==========================================================================
   SUITES SECTION
   ========================================================================== */
.suites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.suite-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.suite-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.suite-image {
    height: 250px;
    overflow: hidden;
}

.suite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.suite-card:hover .suite-image img {
    transform: scale(1.05);
}

.suite-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.suite-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-light);
}

.features li i {
    color: var(--primary-color);
    margin-top: 5px;
    font-size: 0.875rem;
}

.suite-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-light);
    font-family: var(--font-body);
}

.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.popular:hover {
    transform: scale(1.02) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 40px;
    font-weight: 600;
    font-size: 0.875rem;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 30px;
    border-radius: var(--radius-md);
    background-color: white;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.service-card:hover {
    border-left-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==========================================================================
   WHY US SECTION
   ========================================================================== */
.why-us-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.advantage-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.adv-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: white;
    padding: 15px 25px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.adv-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.adv-text {
    font-weight: 500;
    font-size: 1.1rem;
}

.why-us-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.decor-paw {
    position: absolute;
    bottom: 30px;
    left: -20px;
    font-size: 5rem;
    color: var(--secondary-color);
    opacity: 0.8;
    transform: rotate(-20deg);
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(211, 75, 72, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

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

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item:hover .overlay i {
    transform: scale(1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: var(--radius-md);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   REVIEWS SECTION
   ========================================================================== */
/* ==========================================================================
   GOOGLE REVIEWS WIDGET
   ========================================================================== */
.google-reviews-widget {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: transparent;
}

.google-stats {
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stats-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #202124;
}

.stats-stars {
    color: #fbbc04;
    font-size: 1.4rem;
    margin-bottom: 8px;
    display: flex;
    gap: 2px;
}

.stats-text {
    font-size: 0.85rem;
    color: #70757a;
    margin-bottom: 15px;
}

.stats-text strong {
    color: #202124;
}

.google-logo-wrapper svg {
    display: block;
    margin: 0 auto;
}

.google-carousel-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.google-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    padding: 5px;
}

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

.g-review-card {
    flex: 0 0 calc(50% - 10px);
    background-color: white;
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
    min-width: 250px;
}

.g-review-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.g-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.g-reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.g-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.1rem;
    font-family: Arial, sans-serif;
}

.g-name-date {
    display: flex;
    flex-direction: column;
}

.g-name {
    font-weight: 500;
    font-size: 0.95rem;
    color: #202124;
}

.g-date {
    font-size: 0.8rem;
    color: #70757a;
}

.g-small-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.g-review-stars {
    color: #fbbc04;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.g-verified {
    color: #1a73e8;
    margin-left: 6px;
    font-size: 0.85rem;
}

.g-review-text {
    font-size: 0.9rem;
    color: #3c4043;
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.g-read-more {
    font-size: 0.9rem;
    color: #70757a;
    text-decoration: none;
    margin-top: auto;
}

.g-read-more:hover {
    text-decoration: underline;
}

.g-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #dadce0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: #5f6368;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.g-carousel-btn:hover {
    background-color: #f8f9fa;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.g-prev {
    left: 0;
}

.g-next {
    right: 0;
}

@media (max-width: 768px) {
    .google-reviews-widget {
        flex-direction: column;
        gap: 30px;
    }
    
    .google-stats {
        flex: none;
    }
    
    .g-review-card {
        flex: 0 0 calc(100% - 10px);
        min-width: unset;
    }
    
    .g-carousel-btn {
        display: none;
    }
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-container {
    max-width: 800px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.accordion-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header h3 {
    font-size: 1.1rem;
    margin: 0;
    font-family: var(--font-body);
    font-weight: 500;
}

.accordion-header i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-header.active {
    background-color: var(--accent-color);
}

.accordion-header.active i {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: white;
}

.accordion-content p {
    padding: 0 25px 20px;
    color: var(--text-light);
    margin: 0;
}

/* ==========================================================================
   CONTACT & BOOKING SECTION
   ========================================================================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.info-details h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-details p, .info-details a {
    color: var(--text-light);
}

.info-details a:hover {
    color: var(--primary-color);
}

/* Form Styles */
.booking-form-wrapper {
    background-color: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.booking-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group-row {
    display: flex;
    gap: 20px;
}

.form-group-row .form-group {
    flex: 1;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--bg-light);
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(211, 75, 72, 0.1);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23d34b48%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 15px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background-color: var(--text-dark);
    color: white;
    padding-top: 80px;
}

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

.footer-logo {
    color: white;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--secondary-color);
}

.footer-about p {
    color: #ccc;
    margin-bottom: 25px;
    max-width: 400px;
}

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

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

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

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #ccc;
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-bottom {
    background-color: #2c1b18;
    padding: 20px 0;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
}

/* ==========================================================================
   ANIMATIONS & EFFECTS
   ========================================================================== */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
    visibility: visible;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .suites-grid, .services-grid, .gallery-grid, .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .popular.suite-card {
        transform: scale(1);
    }
    .popular.suite-card:hover {
        transform: translateY(-10px);
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .footer-about {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .btn-book-nav {
        display: none;
    }
    
    .d-mobile-only {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .hero-container, .why-us-container, .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding-top: 120px;
        text-align: center;
    }
    
    .hero-content p {
        margin: 0 auto 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .trust-cards {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        margin-top: 40px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .badge-1 {
        bottom: -15px;
        left: 10%;
    }
    
    .badge-2 {
        top: 10%;
        right: -10px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .form-group-row {
        flex-direction: column;
        gap: 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-about {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .suites-grid, .services-grid, .gallery-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .trust-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .booking-form-wrapper {
        padding: 25px 20px;
    }
    
    .paw-prints {
        width: 150px;
    }
    .paw {
        font-size: 1.5rem;
    }
}
