/* SHRI STAYS - FINAL DESIGN SYSTEM */
/* Forest-inspired hospitality website */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-cream: #faf8f5;
    --bg-light: #f5f2ed;
    --bg-warm: #f9f6f0;
    --forest-dark: #2d4a2b;
    --forest-medium: #3d5a3d;
    --forest-light: #5a7a5a;
    --wood-tone: #d4c5b0;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --whatsapp: #1ea952;
    --whatsapp-hover: #188a44;
    --white: #ffffff;
    --border: #e5e0d8;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--forest-dark);
}

h1 {
    font-size: 54px;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 38px;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 700;
}

h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.8;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background-color: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.btn-primary:hover,
.btn-primary:active {
    background-color: var(--whatsapp-hover);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--forest-dark);
}

/* NAVIGATION */
.navbar {
    background-color: #ffffff;
    padding: 12px 0;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    -webkit-transition: box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--forest-dark);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 2px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.hamburger.active span:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a.active {
    color: var(--forest-medium);
    font-weight: 600;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--forest-medium);
    border-radius: 2px;
}

.nav-menu a:hover {
    color: var(--forest-medium);
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
}

/* iOS Safari fix for 100vh */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    filter: brightness(1.25) contrast(1.15) saturate(1.25);
    -webkit-filter: brightness(1.25) contrast(1.15) saturate(1.25);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(29, 39, 28, 0.3), rgba(45, 74, 43, 0.45));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 16px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 58px;
    font-weight: 600;
    margin-bottom: 24px;
    text-shadow: 0 4px 16px rgba(0,0,0,0.4);
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.98);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--white);
    width: 30px;
    border-radius: 5px;
}

/* FAQ ACCORDION STYLES */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--forest-dark);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: var(--forest-medium);
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
}

.faq-answer a {
    color: var(--forest-medium);
    font-weight: 600;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 16px 18px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-icon {
        font-size: 24px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 18px 18px 18px;
    }
}

/* BADGE SYSTEM */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(245, 242, 237, 1), rgba(250, 248, 245, 0.95));
    color: var(--forest-dark);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(45, 74, 43, 0.08);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.badge-icon {
    font-size: 14px;
}

/* TRUST STRIP */
.trust-strip {
    background-color: var(--white);
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: scale(1.05);
}

.trust-item-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(45, 74, 43, 0.15);
    transition: all 0.3s ease;
}

.trust-item:nth-child(1) .trust-item-icon {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.trust-item:nth-child(2) .trust-item-icon {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

.trust-item:nth-child(3) .trust-item-icon {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.trust-item:nth-child(4) .trust-item-icon {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

.trust-item-icon .material-icons {
    font-size: 40px;
    color: #ffffff;
}

.trust-item-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.trust-item-sub {
    font-size: 15px;
    color: var(--text-dark);
    margin-top: 4px;
    font-weight: 500;
}

/* LOCATION HIGHLIGHTS SECTION */
.stats-section,
.location-highlights {
    background: linear-gradient(135deg, #2d4a2b 0%, #3d5a3d 100%);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(212, 197, 176, 0.08), transparent 60%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--white);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-icon .material-icons {
    font-size: 40px;
    color: var(--white);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.location-highlights .section-title,
.stats-section .section-title {
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* GOOGLE REVIEWS SECTION */
.reviews-section {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 25%, #fff9f0 50%, #f5f0ff 75%, #ffe8f0 100%);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(66, 133, 244, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(52, 168, 83, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(251, 188, 4, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.reviews-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url('data:image/svg+xml;utf8,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="18" fill="%234285f4" opacity="0.03"/><text x="11" y="27" font-size="16" fill="%23fbbc04" opacity="0.4">★</text></svg>'),
        url('data:image/svg+xml;utf8,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="18" fill="%2334a853" opacity="0.03"/><text x="11" y="27" font-size="16" fill="%23fbbc04" opacity="0.4">★</text></svg>'),
        url('data:image/svg+xml;utf8,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="18" fill="%23ea4335" opacity="0.03"/><text x="11" y="27" font-size="16" fill="%23fbbc04" opacity="0.4">★</text></svg>');
    background-size: 60px 60px, 60px 60px, 60px 60px;
    background-position: 0 0, 30px 30px, 60px 0;
    opacity: 0.15;
    pointer-events: none;
    animation: floatPattern 60s linear infinite;
}

@keyframes floatPattern {
    0% { background-position: 0 0, 30px 30px, 60px 0; }
    100% { background-position: 0 100px, 30px 130px, 60px 100px; }
}

.google-reviews-widget {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 24px;
}

.review-card {
    background: linear-gradient(135deg, var(--bg-light), var(--bg-warm));
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.review-stars {
    display: flex;
    gap: 4px;
}

.review-stars .material-icons {
    font-size: 20px;
    color: #FFA500;
}

.review-rating {
    font-size: 24px;
    font-weight: 700;
    color: var(--forest-dark);
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-style: italic;
}

.review-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--forest-medium);
}

/* SECTIONS */
section {
    padding: 48px 0;
}

.section-alt {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-warm) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
    color: var(--forest-dark);
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* CARD SYSTEM */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.card {
    background-color: var(--white);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid rgba(45, 74, 43, 0.04);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(45, 74, 43, 0.12);
    border-color: rgba(45, 74, 43, 0.08);
}

.card-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.08);
}

.card-content {
    padding: 24px;
}

.card-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--forest-dark);
    margin-bottom: 12px;
}

.card-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.card-features {
    list-style: none;
    margin-bottom: 24px;
}

.card-features li {
    padding: 6px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.card-features li::before {
    content: "";
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, rgba(45, 74, 43, 0.1), rgba(61, 90, 61, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid var(--forest-medium);
}

.card-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(245, 242, 237, 1), rgba(250, 248, 245, 0.95));
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
    border: 1px solid rgba(45, 74, 43, 0.06);
}

/* ABOUT SECTION */
.about-intro {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

/* GROUP SECTION */
.group-section {
    background: linear-gradient(135deg, #2d4a2b 0%, #3d5a3d 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.group-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(212, 197, 176, 0.08), transparent 60%);
    pointer-events: none;
}

.group-section h2 {
    color: var(--white);
}

.group-text {
    max-width: 750px;
    margin: 0 auto 32px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
}

/* REVIEWS */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

/* Google My Business Rating Summary */
.gmb-rating-summary {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px;
    margin: 0 auto 40px;
    max-width: 650px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(66, 133, 244, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    position: relative;
    overflow: hidden;
}

.gmb-rating-summary::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.gmb-rating-summary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4285f4, #34a853, #fbbc04, #ea4335);
    border-radius: 24px 24px 0 0;
}

.gmb-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 32px;
    font-weight: 700;
    color: #5f6368;
}

.gmb-logo svg {
    width: 36px;
    height: 36px;
}

.gmb-rating-box {
    text-align: center;
}

.gmb-score {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, #1a73e8 0%, #34a853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gmb-stars {
    color: #fbbc04;
    font-size: 24px;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    gap: 2px;
}

.gmb-stars .material-icons {
    font-size: 24px;
}

.gmb-count {
    font-size: 14px;
    color: #5f6368;
    font-weight: 500;
}

/* Reviews Carousel Container */
.reviews-carousel-container {
    position: relative;
    margin-bottom: 16px;
}

/* Google Reviews Widget - Multi-card Carousel */
.google-reviews-widget {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
    min-height: auto;
    padding: 0;
}

/* Desktop: 3 cards */
@media (min-width: 1024px) {
    .google-reviews-widget {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Tablet: 2 cards */
@media (min-width: 768px) and (max-width: 1023px) {
    .google-reviews-widget {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile: 1 card */
@media (max-width: 767px) {
    .google-reviews-widget {
        grid-template-columns: 1fr;
    }
}

.google-reviews-widget .review-card {
    display: none;
    grid-column: span 1;
}

.google-reviews-widget .review-card.active {
    display: block;
}

.review-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(66, 133, 244, 0.04);
    line-height: 1;
    pointer-events: none;
}

.review-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4285f4, #34a853, #fbbc04, #ea4335);
    border-radius: 20px 20px 0 0;
}

.review-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 16px 48px rgba(66, 133, 244, 0.2), 0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: rgba(66, 133, 244, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
    border: 2px solid white;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    font-size: 15px;
    color: #202124;
    margin-bottom: 2px;
}

.review-date {
    font-size: 13px;
    color: #5f6368;
}

.google-badge {
    flex-shrink: 0;
}

.review-stars {
    color: #fbbc04;
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    gap: 2px;
}

.review-stars .material-icons {
    filter: drop-shadow(0 1px 2px rgba(251, 188, 4, 0.3));
    transition: transform 0.2s ease;
}

.review-card:hover .review-stars .material-icons {
    transform: scale(1.1);
}

.review-stars .material-icons {
    font-size: 18px;
}

.review-text {
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    color: #3c4043;
    position: relative;
    z-index: 1;
    font-style: italic;
    padding-left: 4px;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.carousel-btn {
    background: #ffffff;
    border: 2px solid rgba(66, 133, 244, 0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #4285f4, #34a853);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(66, 133, 244, 0.3);
    transform: scale(1.1);
}

.carousel-btn:hover .material-icons {
    color: white;
}

.carousel-btn .material-icons {
    font-size: 26px;
    color: #4285f4;
    transition: color 0.3s ease;
}

.carousel-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(66, 133, 244, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dots .dot:hover {
    background: rgba(66, 133, 244, 0.5);
    transform: scale(1.2);
}

.carousel-dots .dot.active {
    background: linear-gradient(135deg, #4285f4, #34a853);
    width: 28px;
    border-radius: 5px;
    border-color: rgba(255, 255, 255, 0.5);
}

.review-author {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

/* FINAL CTA */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-warm) 100%);
}

.final-cta h2 {
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 32px;
}

/* PAGE HERO */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.25) contrast(1.15) saturate(1.25);
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(29, 39, 28, 0.3), rgba(45, 74, 43, 0.45));
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.page-hero-content h1 {
    color: var(--white);
    font-size: 52px;
    margin-bottom: 16px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.page-hero-subtitle {
    font-size: 22px;
    color: rgba(255,255,255,0.98);
    max-width: 680px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.6;
}

/* CONTENT SECTIONS */
.content-section {
    padding: 48px 0;
}

.content-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.content-wrapper h2 {
    margin-top: 32px;
    margin-bottom: 20px;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(45, 74, 43, 0.06);
    border: 1px solid rgba(45, 74, 43, 0.04);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(45, 74, 43, 0.12);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

.contact-info h3 {
    margin-bottom: 28px;
}

.contact-method {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--forest-medium) 0%, var(--forest-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(45, 74, 43, 0.15);
    border-color: var(--forest-medium);
}

.contact-method:hover::before {
    opacity: 1;
}

.contact-method h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--text-dark);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-method h4 .material-icons {
    font-size: 28px;
    color: var(--forest-medium);
}

.contact-method.address p {
    font-size: 15px;
    line-height: 1.7;
}

.contact-method a {
    color: var(--forest-medium);
    text-decoration: none;
    font-size: 19px;
    font-weight: 700;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 8px;
}

.contact-method a:hover {
    color: var(--forest-medium);
}

.contact-method p {
    color: var(--text-medium);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.distance-summary {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    padding: 24px;
    border-radius: 12px;
    margin-top: 20px;
    margin-bottom: 28px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.distance-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--forest-medium) 0%, var(--forest-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.distance-summary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(45, 74, 43, 0.15);
    border-color: var(--forest-medium);
}

.distance-summary:hover::before {
    opacity: 1;
}

.distance-summary h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.distance-summary h4 .material-icons {
    font-size: 28px;
    color: var(--forest-medium);
}

.distance-list {
    list-style: none;
}

.distance-list li {
    padding: 6px 0;
    color: var(--text-dark);
    font-size: 15px;
    display: flex;
    justify-content: space-between;
}

.distance-list li strong {
    color: var(--text-dark);
}

/* FORM */
.contact-form {
    background-color: var(--white);
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(45, 74, 43, 0.06);
    border: 1px solid rgba(45, 74, 43, 0.04);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    border: 1px solid var(--border);
    border-radius: 10px;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

 .form-group .iti {
     width: 100%;
 }

 .form-group .iti__tel-input {
     width: 100%;
     font-size: 16px;
     font-family: 'Inter', sans-serif;
     border: 1px solid var(--border);
     border-radius: 10px;
     background-color: var(--bg-cream);
     color: var(--text-dark);
     transition: all 0.3s ease;
 }

 .form-group .iti__tel-input:focus {
     outline: none;
     border-color: var(--forest-medium);
     background-color: var(--white);
 }

 .form-group .iti__selected-country {
     border-top-left-radius: 10px;
     border-bottom-left-radius: 10px;
 }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--forest-medium);
    background-color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 15px;
    color: var(--text-dark);
}

.form-submit button {
    width: 100%;
}

/* MAP */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 14px;
    overflow: hidden;
    margin-top: 48px;
    box-shadow: 0 2px 12px rgba(45, 74, 43, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FOOTER */
.footer {
    background-image: url('images/new-dense-jungle.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: rgba(255,255,255,0.95);
    padding: 40px 0 16px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 130px;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255,255,255,0.98);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 19px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
}

.footer-col ul li a.active {
    color: var(--white);
    font-weight: 600;
}

.footer-col ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col p a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-col p a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.85);
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.social-icons a[aria-label="Facebook"]:hover {
    background: #1877F2;
    color: var(--white);
}

.social-icons a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-icons a[aria-label="X (Twitter)"]:hover {
    background: #000000;
    color: var(--white);
}

.social-icons a[aria-label="YouTube"]:hover {
    background: #FF0000;
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0;
}

.designer-link {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.14);
    border: 1px solid rgba(37, 211, 102, 0.25);
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.designer-link:hover {
    color: #0B1A10;
    background: rgba(37, 211, 102, 0.9);
    border-color: rgba(37, 211, 102, 0.9);
}

.designer-link:focus-visible {
    outline: 2px solid rgba(37, 211, 102, 0.85);
    outline-offset: 2px;
}

/* FOOTER CONTACT SECTION */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    transition: transform 0.3s ease;
}

.footer-contact-item:hover {
    transform: translateX(4px);
}

.contact-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.footer-contact-link:hover {
    color: #1ea952;
    text-decoration: underline;
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 24px;
    }

    .hamburger {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    
    .logo img {
        height: 50px;
    }

    .nav-menu {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 16px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 17px;
        width: 100%;
        padding: 8px 0;
        font-weight: 600;
    }

    .hero {
        height: 85vh;
        min-height: 550px;
    }
    
    /* iOS Safari specific fix */
    @supports (-webkit-touch-callout: none) {
        .hero {
            height: calc(var(--vh, 1vh) * 85);
        }
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .page-hero-content h1 {
        font-size: 36px;
    }

    .trust-items {
        gap: 32px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gmb-rating-summary {
        flex-direction: column;
        padding: 24px;
        gap: 20px;
    }
    
    .gmb-score {
        font-size: 42px;
    }
    
    .google-reviews-widget {
        grid-template-columns: 1fr;
    }

    section {
        padding: 44px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* iPhone 6/7/8 and smaller devices */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .logo img {
        height: 45px;
    }
    
    .hamburger {
        padding: 6px;
    }
    
    .hamburger span {
        width: 26px;
        height: 2.5px;
    }

    body {
        font-size: 15px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .page-hero-subtitle {
        font-size: 18px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 24px;
        font-size: 15px;
    }

    .card-content {
        padding: 20px;
    }

    .contact-form {
        padding: 20px 16px;
    }

    .trust-items {
        gap: 24px;
    }

    .trust-item-icon {
        width: 60px;
        height: 60px;
    }
    
    .gmb-rating-summary {
        padding: 20px;
    }
    
    .gmb-score {
        font-size: 36px;
    }
    
    .gmb-logo {
        font-size: 16px;
    }
    
    .reviewer-avatar {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .reviewer-name {
        font-size: 14px;
    }

    section {
        padding: 32px 0;
    }
    
    /* Fix for iPhone 6 viewport */
    .hero {
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
}

/* iPhone 6/7/8 specific (375px width) */
@media (max-width: 375px) {
    .container {
        padding: 0 10px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .hero-content h1 {
        font-size: 26px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* STICKY WHATSAPP BUTTON */
.whatsapp-sticky {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-hover) 100%);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-size: 32px;
}

.whatsapp-sticky:hover,
.whatsapp-sticky:active {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .whatsapp-sticky {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}
