/*
Theme Name: Dhaka Hairstyle Saloon
Theme URI: https://www.google.com/maps/place/Dhaka+hairstyle+saloon+and+Gents+parlour
Author: Dhaka Hairstyle Saloon & Gents Parlour
Author URI: https://www.google.com/maps/place/Dhaka+hairstyle+saloon+and+Gents+parlour
Description: A professional WordPress theme for Dhaka Hairstyle Saloon & Gents Parlour — a premium barber shop located in Tangail, Bangladesh. Features real business data, Google Maps integration, service pricing in BDT, testimonials, gallery, and real-time business hours.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dhaka-hairstyle-saloon
Tags: business, local-business, barber-shop, salon, responsive, customizer
*/

/* ===========================
   CSS CUSTOM PROPERTIES
   =========================== */
:root {
    --color-primary:     #1a1a2e;
    --color-secondary:   #16213e;
    --color-accent:      #c9a84c;
    --color-accent-dark: #a07830;
    --color-gold:        #f0c040;
    --color-white:       #ffffff;
    --color-light:       #f8f6f0;
    --color-gray:        #6c6c6c;
    --color-dark-gray:   #333333;
    --color-border:      #e0d8c8;
    --color-text:        #2d2d2d;

    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body:    'Lato', 'Helvetica Neue', sans-serif;

    --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg:  0 8px 40px rgba(0,0,0,0.18);
    --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);

    --radius-sm:  4px;
    --radius-md:  8px;
    --radius-lg:  16px;
    --radius-xl:  24px;

    --transition: all 0.3s ease;
    --max-width: 1200px;
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

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

a { color: var(--color-accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-accent-dark); }

ul { list-style: none; }

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

/* ===========================
   UTILITY CLASSES
   =========================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-primary);
    margin-bottom: 12px;
}

.section-title span { color: var(--color-accent); }

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    max-width: 560px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .divider {
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    margin: 16px auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
}

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

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}
.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-2px);
}

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

.badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-gold { background: var(--color-accent); color: var(--color-white); }
.badge-light { background: var(--color-light); color: var(--color-accent); border: 1px solid var(--color-border); }

/* ===========================
   TOP BAR
   =========================== */
.top-bar {
    background: var(--color-primary);
    color: rgba(255,255,255,0.8);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.top-bar-info {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-info a {
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}
.top-bar-info a:hover { color: var(--color-gold); }

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}
.status-open  { background: rgba(34,197,94,0.2);  color: #4ade80; }
.status-closed{ background: rgba(239,68,68,0.2);  color: #f87171; }

.top-bar-social { display: flex; gap: 12px; align-items: center; }
.top-bar-social a {
    color: rgba(255,255,255,0.7);
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: var(--transition);
}
.top-bar-social a:hover { background: var(--color-accent); color: var(--color-white); }

/* ===========================
   HEADER / NAV
   =========================== */
.site-header {
    background: var(--color-primary);   /* dark navy — matches theme */
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.site-logo {
    display:         flex;
    align-items:     center;
    text-decoration: none;
    flex-shrink:     0;
}

.dhs-logo {
    display:     flex;
    align-items: center;
    gap:         12px;
}

.dhs-logo-icon {
    width:         44px;
    height:        44px;
    border-radius: 10px;
    object-fit:    cover;
    flex-shrink:   0;
    box-shadow:    0 2px 8px rgba(0,0,0,0.4);
}

.dhs-logo-text {
    display:        flex;
    flex-direction: column;
    line-height:    1.25;
}

.dhs-logo-name {
    font-family:    var(--font-heading);
    font-size:      1.05rem;
    font-weight:    700;
    color:          #ffffff;
    letter-spacing: 0.3px;
    white-space:    nowrap;
}

.dhs-logo-sub {
    font-size:      0.68rem;
    color:          var(--color-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight:    600;
    white-space:    nowrap;
}

/* Custom logo from WP Customizer */
.site-logo .custom-logo {
    height:    50px;
    width:     auto;
    max-width: 220px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .dhs-logo-icon  { width: 36px; height: 36px; }
    .dhs-logo-name  { font-size: 0.9rem; }
    .dhs-logo-sub   { display: none; }
}



.site-nav ul {
    display: flex;
    gap: 4px;
    align-items: center;
}

.site-nav a {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: rgba(255,255,255,0.85);   /* white on dark header */
    font-size: 0.95rem;
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.site-nav a:hover,
.site-nav a.active {
    background: rgba(201,168,76,0.15);
    color: var(--color-accent);      /* gold on hover */
}

.header-cta { display: flex; gap: 12px; align-items: center; }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.9);    /* white on dark header */
    font-size: 1.5rem;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.1) 0%, transparent 50%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--color-gold);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-title .highlight { color: var(--color-gold); display: block; }

.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
    flex-wrap: wrap;
}

.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    display: block;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1px; }

.hero-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-xl);
    padding: 36px;
}

.hero-card-title {
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 20px;
}
.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    font-family: var(--font-heading);
    line-height: 1;
}
.rating-stars { color: var(--color-gold); font-size: 1.3rem; letter-spacing: 2px; }
.rating-count { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

.hours-grid {
    display: grid;
    gap: 10px;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}
.hours-day { color: rgba(255,255,255,0.7); }
.hours-time { color: var(--color-gold); font-weight: 600; }
.hours-row.today { background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); }
.hours-row.today .hours-day { color: var(--color-white); font-weight: 600; }

/* ===========================
   SERVICES SECTION
   =========================== */
.services-section { padding: 100px 0; background: var(--color-white); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-name {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.service-desc {
    font-size: 0.92rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.service-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-accent);
}

.service-price span { font-size: 0.75rem; color: var(--color-gray); font-family: var(--font-body); font-weight: 400; }

.service-duration {
    font-size: 0.82rem;
    color: var(--color-gray);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section { padding: 100px 0; background: var(--color-light); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.about-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-white);
    height: 420px;
}

.about-map iframe { width: 100%; height: 100%; border: none; }

.about-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-gold);
    min-width: 120px;
}
.about-badge-float .big-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}
.about-badge-float .big-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-content .section-header { text-align: left; }
.about-content .section-header .divider { margin-left: 0; }
.about-content .section-subtitle { max-width: 100%; margin-bottom: 24px; }

.about-text { color: var(--color-gray); line-height: 1.9; margin-bottom: 20px; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark-gray);
}

.about-feature-icon {
    width: 36px; height: 36px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ===========================
   GALLERY SECTION
   =========================== */
.gallery-section { padding: 100px 0; background: var(--color-primary); }

.gallery-section .section-title { color: var(--color-white); }
.gallery-section .section-subtitle { color: rgba(255,255,255,0.65); margin: 0 auto; }
.gallery-section .divider { background: var(--color-accent); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 12px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    background: var(--color-secondary);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 2;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-overlay-content { color: var(--color-white); }
.gallery-overlay-title { font-size: 1rem; font-weight: 600; }
.gallery-overlay-tag { font-size: 0.78rem; color: var(--color-gold); }

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Placeholder gallery images using CSS gradients */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-direction: column;
    gap: 8px;
}
.gallery-placeholder span { font-size: 0.8rem; color: rgba(255,255,255,0.5); font-family: var(--font-body); }

.gp-1 { background: linear-gradient(135deg, #1a3a5c 0%, #2d5a8b 100%); }
.gp-2 { background: linear-gradient(135deg, #3d2b1f 0%, #6b4423 100%); }
.gp-3 { background: linear-gradient(135deg, #1f3d2b 0%, #2d6b44 100%); }
.gp-4 { background: linear-gradient(135deg, #3d1f3d 0%, #6b2d6b 100%); }
.gp-5 { background: linear-gradient(135deg, #3d3d1f 0%, #6b6b2d 100%); }
.gp-6 { background: linear-gradient(135deg, #1f2d3d 0%, #2d446b 100%); }
.gp-7 { background: linear-gradient(135deg, #2b1f3d 0%, #442d6b 100%); }
.gp-8 { background: linear-gradient(135deg, #3d1f2b 0%, #6b2d44 100%); }

/* Featured (first) gallery tile spans 2×2 when ≥4 photos */
.gallery-featured {
    grid-column: span 2;
    grid-row: span 2;
}

/* When a real image fails to load, show the placeholder beneath it */
.gallery-img-error .gallery-placeholder {
    display: flex !important;
}

.gallery-gmaps-link {
    text-align: center;
    margin-top: 40px;
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */
.testimonials-section { padding: 100px 0; background: var(--color-light); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--color-accent);
    line-height: 1;
    font-family: Georgia, serif;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.author-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--color-white);
    font-weight: 700;
    flex-shrink: 0;
}

.author-name { font-weight: 700; color: var(--color-primary); font-size: 0.95rem; }
.author-service { font-size: 0.8rem; color: var(--color-gray); }

.testimonial-stars {
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-bottom: 6px;
    letter-spacing: 2px;
}

.gmaps-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
    font-size: 0.72rem;
    color: var(--color-gray);
    display: flex; align-items: center; gap: 4px;
}

/* ===========================
   PRICING SECTION
   =========================== */
.pricing-section { padding: 100px 0; background: var(--color-white); }

.pricing-note {
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--color-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pricing-table {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-table-header {
    background: var(--color-primary);
    padding: 24px 32px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    padding: 20px 32px;
    border-bottom: 1px solid var(--color-border);
    align-items: center;
    transition: var(--transition);
}

.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover { background: var(--color-light); }

.pricing-service-name {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1rem;
}
.pricing-service-desc {
    font-size: 0.82rem;
    color: var(--color-gray);
    margin-top: 2px;
}

.pricing-duration {
    font-size: 0.85rem;
    color: var(--color-gray);
    text-align: center;
}

.pricing-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-accent);
    text-align: right;
}

.pricing-currency-note {
    text-align: center;
    margin-top: 24px;
    font-size: 0.82rem;
    color: var(--color-gray);
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    max-width: 500px;
    margin: 24px auto 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===========================
   CONTACT / INFO SECTION
   =========================== */
.contact-section { padding: 100px 0; background: var(--color-primary); }

.contact-section .section-title { color: var(--color-white); }
.contact-section .section-subtitle { color: rgba(255,255,255,0.65); margin: 0 auto; }
.contact-section .divider { background: var(--color-accent); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-block { display: grid; gap: 24px; }

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(201,168,76,0.1);
    border-color: rgba(201,168,76,0.3);
}

.contact-item-icon {
    width: 46px; height: 46px;
    background: var(--color-accent);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-item-value {
    color: var(--color-white);
    font-weight: 600;
    font-size: 1rem;
}

.contact-item-value a { color: var(--color-gold); }
.contact-item-value a:hover { color: var(--color-white); }

.contact-map-embed {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-lg);
    height: 400px;
}

.contact-map-embed iframe { width: 100%; height: 100%; border: none; }

/* ===========================
   BOOKING CTA
   =========================== */
.booking-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    text-align: center;
}

.booking-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--color-white);
    margin-bottom: 16px;
}

.booking-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.booking-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   FOOTER
   =========================== */
.site-footer {
    background: #0d0d1a;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-name { color: var(--color-white); }

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 16px 0;
    color: rgba(255,255,255,0.6);
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--color-accent); color: var(--color-white); }

.footer-col h4 {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 700;
}

.footer-links { display: grid; gap: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--color-gold); padding-left: 6px; }

.footer-hours { display: grid; gap: 8px; }
.footer-hour-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
}
.footer-hour-row span:first-child { color: rgba(255,255,255,0.5); }
.footer-hour-row span:last-child { color: var(--color-gold); }

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--color-gold); }

/* ===========================
   FLOATING WHATSAPP
   =========================== */
.float-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 58px; height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    color: var(--color-white);
    font-size: 1.6rem;
    animation: pulse-wa 2s infinite;
    transition: var(--transition);
    text-decoration: none;
}

.float-whatsapp:hover {
    transform: scale(1.1);
    color: var(--color-white);
    box-shadow: 0 6px 30px rgba(37,211,102,0.7);
}

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

/* ===========================
   LIGHTBOX
   =========================== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox-close {
    position: absolute;
    top: 20px; right: 24px;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); object-fit: contain; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-card { max-width: 500px; }
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 768px) {
    .top-bar-info { display: none; }
    .site-nav, .header-cta { display: none; }
    .mobile-toggle { display: flex; }

    .site-nav.open {
        display: block;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--color-primary);
        padding: 80px 24px 40px;
        z-index: 9000;
    }
    .site-nav.open ul { flex-direction: column; gap: 8px; }
    .site-nav.open a { color: rgba(255,255,255,0.8); padding: 14px 20px; font-size: 1.1rem; display: block; }
    .site-nav.open a:hover { background: rgba(255,255,255,0.08); color: var(--color-gold); }

    .pricing-table-header, .pricing-row { grid-template-columns: 1fr auto; }
    .pricing-duration { display: none; }

    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }

    .hero-stats { gap: 20px; }
    .about-features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .booking-cta-actions { flex-direction: column; align-items: center; }
}
