/* ============================================
   G Maintenance Co. - Main Stylesheet
   قالب جي للصيانة - التصميم الرئيسي
   Light Theme - Gray Elegance
   ============================================ */

/* Local Alexandria Font */
@font-face {
    font-family: 'Alexandria';
    src: url('../fonts/Alexandria.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Colors - Light Gray Elegant Theme */
    --bg: #ffffff;
    --bg-alt: #f5f5f7;
    --bg-card: #ffffff;
    --bg-hover: #fafafa;
    --accent: #636366;
    --accent-light: #8e8e93;
    --accent-dark: #48484a;
    --accent-ghost: rgba(99, 99, 102, 0.08);
    --accent-border: rgba(99, 99, 102, 0.15);
    --text: #1d1d1f;
    --text-secondary: #424245;
    --text-muted: #86868b;
    --text-light: #d2d2d7;
    --border: #e5e5ea;
    --border-light: #f2f2f7;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 100px;
    --font: 'Alexandria', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1200px;
    --header-h: 72px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--accent-dark);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

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

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

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
    background: var(--accent-ghost);
    transform: translateY(-2px);
}

/* ===== Header Top Bar ===== */
.header-top-bar {
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    position: relative;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    min-height: 36px;
}

.header-top-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.92;
}

.header-top-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-weight: 600;
    opacity: 0.95;
    transition: var(--transition);
}

.header-top-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ===== Floating Action Button ===== */
.fab-wrap {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

body.ltr .fab-wrap {
    left: auto;
    right: 24px;
    align-items: flex-end;
}

.fab-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    pointer-events: none;
}

.fab-wrap.open .fab-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.fab-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
    cursor: pointer;
}

.fab-item:hover {
    border-color: var(--accent-border);
    transform: translateX(4px);
    box-shadow: var(--shadow-xl);
}

body.ltr .fab-item:hover {
    transform: translateX(-4px);
}

.fab-item .fab-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 14px;
}

.fab-item.whatsapp .fab-icon {
    background: #25D366;
}

.fab-item.phone .fab-icon {
    background: var(--accent);
}

.fab-item.email .fab-icon {
    background: #ea4335;
}

.fab-item.hours {
    cursor: default;
}

.fab-item.hours .fab-icon {
    background: var(--accent-light);
}

.fab-main {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(99, 99, 102, 0.35);
    transition: var(--transition);
}

.fab-main:hover {
    background: var(--accent-dark);
    transform: scale(1.05);
}

.fab-main i {
    transition: transform 0.3s ease;
}

.fab-wrap.open .fab-main i {
    transform: rotate(135deg);
}

/* ===== Header - Two Row ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
}

/* Top: Centered Logo */
.header-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 0 10px;
}

.header-logo-center {
    display: block;
    transition: var(--transition);
}

.header-logo-center:hover {
    opacity: 0.85;
}

.header-logo-img {
    height: 56px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Bottom: Nav + Actions */
.header-nav-row {
    border-top: 1px solid var(--border-light);
    padding: 8px 0;
}

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

/* Elegant Navigation */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-hover {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: var(--transition);
}

.main-navigation a:hover .nav-hover,
.main-navigation .current-menu-item>a .nav-hover,
.main-navigation .current_page_item>a .nav-hover {
    transform: translateX(-50%) scaleX(1);
}

.main-navigation a:hover,
.main-navigation .current-menu-item>a,
.main-navigation .current_page_item>a {
    color: var(--text);
    background: var(--accent-ghost);
}

/* Sub-menu */
.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.main-navigation li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .sub-menu a {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 0;
}

.main-navigation .sub-menu a:hover {
    background: var(--bg-alt);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-cta svg {
    flex-shrink: 0;
}

/* Language Toggle Button */
.lang-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
    text-decoration: none;
}

.lang-toggle-btn:hover {
    border-color: var(--accent-light);
    background: var(--bg-hover);
    color: var(--accent);
}

.lang-toggle-btn .lang-flag {
    font-size: 18px;
    line-height: 1;
}

.lang-toggle-btn .lang-text {
    letter-spacing: 0.02em;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero-section {
    position: relative;
    padding: 10px 0 80px;
    background: linear-gradient(135deg, #f8f8fa 0%, #ffffff 50%, #f5f5f7 100%);
    overflow: hidden;
}

.hero-bg-decoration {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 99, 102, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

/* ===== Glassmorphism Card ===== */
.hero-glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 28px;
    padding: 48px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

.hero-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
    border-radius: 28px;
}

.hero-glass-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(99, 99, 102, 0.07);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    border: 1px solid rgba(99, 99, 102, 0.1);
    letter-spacing: 0.03em;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--text);
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

.hero-meta-item svg {
    color: var(--accent-light);
    flex-shrink: 0;
}

/* Hero Image Side */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-wrap {
    width: 100%;
    max-width: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image-wrap::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at 50% 50%, rgba(99, 99, 102, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius);
    position: relative;
    z-index: 1;
    filter: grayscale(15%);
}

.hero-image-fallback {
    width: 100%;
    aspect-ratio: 3/4;
    max-width: 400px;
    background: linear-gradient(145deg, var(--bg-alt) 0%, #eaeaec 100%);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    border: 1px solid var(--border);
}

.hero-fallback-text {
    font-size: 120px;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
    opacity: 0.4;
}

.hero-fallback-sub {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Hero entrance animations */
@keyframes heroCardIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroImageIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-glass-card {
    animation: heroCardIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero-visual {
    animation: heroImageIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.hero-image,
.hero-image-fallback {
    animation: heroFloat 6s ease-in-out infinite 1s;
}

/* ===== Hero Form ===== */
.hero-form-header {
    margin-bottom: 20px;
}

.hero-form-header .hero-title {
    font-size: 28px;
    margin-bottom: 6px;
}

.hero-form-header .hero-desc {
    font-size: 14px;
    margin-bottom: 0;
}

.hero-form {
    width: 100%;
}

.hero-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.hero-form-group {
    margin-bottom: 12px;
}

.hero-form-group label {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.hero-form-group input,
.hero-form-group select,
.hero-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 14px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--text);
    transition: var(--transition);
}

.hero-form-group input:focus,
.hero-form-group select:focus,
.hero-form-group textarea:focus {
    border-color: var(--accent-light);
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px var(--accent-ghost);
}

.hero-form-group input::placeholder,
.hero-form-group textarea::placeholder {
    color: var(--text-light);
    font-size: 13px;
}

/* CTA only section */
.booking-cta-only {
    display: block;
}

/* ===== Stats ===== */
.stats-section {
    padding: 40px 0;
    background: var(--bg-alt);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--border);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== Sections Common ===== */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: var(--accent-ghost);
    color: var(--accent-light);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    border: 1px solid var(--accent-border);
    letter-spacing: 0.03em;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--text);
    letter-spacing: -0.01em;
}

.section-desc {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

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

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

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


.service-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-ghost);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
}

.service-icon svg {
    width: 26px;
    height: 26px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

.service-link:hover {
    color: var(--accent-dark);
    gap: 10px;
}

.service-link svg {
    transition: var(--transition);
}

/* ===== Features Bar (Hero under) ===== */
.features-bar {
    padding: 32px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border-light);
}

.features-bar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.features-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.features-bar-item:hover {
    border-color: var(--accent-border);
    box-shadow: var(--shadow-sm);
}

.features-bar-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-ghost);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.features-bar-text {
    display: flex;
    flex-direction: column;
}

.features-bar-text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.features-bar-text span {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ===== Features ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-item {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--accent-border);
    box-shadow: var(--shadow);
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--accent-ghost);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.feature-item p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== About ===== */
.about-section {
    background: var(--bg);
}

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

.about-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg-alt);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.about-logo-mark {
    font-size: 80px;
    font-weight: 800;
    color: var(--text-light);
    opacity: 0.5;
}

.about-content>p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-list {
    list-style: none;
    margin: 28px 0;
}

.about-list li {
    padding: 10px 0;
    padding-right: 28px;
    position: relative;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
}

.about-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: var(--accent-light);
    border-radius: 50%;
    opacity: 0.6;
}

/* ===== FAQ ===== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    text-align: right;
    cursor: pointer;
    gap: 16px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--accent);
    font-size: 14px;
    transition: var(--transition);
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.is-open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    padding-top: 4px;
}

/* ===== Blog Preview ===== */
.blog-preview-section {
    background: var(--bg-alt);
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.blog-preview-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.blog-preview-card:hover {
    border-color: var(--accent-border);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.blog-preview-thumb {
    display: block;
    overflow: hidden;
}

.blog-preview-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-preview-card:hover .blog-preview-thumb img {
    transform: scale(1.05);
}

.blog-preview-body {
    padding: 24px;
}

.blog-preview-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.blog-preview-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-preview-title a {
    color: var(--text);
}

.blog-preview-title a:hover {
    color: var(--accent);
}

.blog-preview-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

.blog-preview-link:hover {
    gap: 10px;
}

.blog-preview-more {
    text-align: center;
    margin-top: 16px;
}

/* ===== Booking / CTA ===== */
.booking-section {
    background: var(--bg-alt);
}

.booking-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.booking-content>p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.booking-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    margin: 32px auto 0;
}

.booking-whatsapp,
.booking-email {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}

.booking-whatsapp:hover,
.booking-email:hover {
    border-color: var(--accent-border);
    box-shadow: var(--shadow-sm);
    color: var(--accent);
}

.booking-cta-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px 36px;
    text-align: center;
    box-shadow: var(--shadow);
    max-width: 340px;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-ghost);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin: 0 auto 24px;
}

.cta-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.booking-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 15px;
    background: var(--bg);
    color: var(--text);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-light);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-ghost);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.form-message.error {
    display: block;
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* ===== Modals ===== */
.gmc-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.gmc-modal[style*="flex"] {
    display: flex !important;
}

.gmc-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
}

.gmc-modal-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px 40px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: modalIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gmc-modal-icon {
    margin-bottom: 20px;
}

.gmc-modal-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.gmc-modal-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.gmc-modal-close {
    min-width: 120px;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== Contact Bar ===== */
.contact-bar {
    padding: 40px 0;
    background: var(--bg);
    border-top: 1px solid var(--border-light);
}

.contact-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-bar-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.contact-bar-item:hover {
    border-color: var(--accent-border);
}

.contact-bar-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    border: 1px solid var(--border);
}

.contact-bar-item span {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-bar-item strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

/* ===== Page Hero Header ===== */
.page-hero {
    position: relative;
    padding: 180px 0 60px;
    background: linear-gradient(135deg, #eaeaec 0%, #f5f5f7 50%, #ededf0 100%);
    overflow: hidden;
    margin-bottom: 40px;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(99, 99, 102, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(99, 99, 102, 0.03) 0%, transparent 40%);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.page-hero-breadcrumb a {
    color: var(--text-muted);
}

.page-hero-breadcrumb a:hover {
    color: var(--accent);
}

.page-hero-breadcrumb span {
    color: var(--text);
    font-weight: 500;
}

.page-hero-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-ghost);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin: 0 auto 16px;
}

.page-hero-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.page-hero-desc {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Footer - Luxury Dark ===== */
.site-footer {
    background: #1c1c1e;
    color: #d2d2d7;
}

.footer-main {
    padding: 64px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
    gap: 48px;
}

/* Brand Column */
.footer-brand-col .footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: #fff;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.footer-brand-col .footer-logo-img {
    width: auto;
    display: block;
}

.footer-brand-col .footer-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.footer-brand-col .footer-desc {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social .social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d2d2d7;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social .social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

/* Links Columns */
.footer-col-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    color: #9ca3af;
    font-size: 14px;
    transition: var(--transition);
    padding: 4px 0;
}

.footer-links a:hover {
    color: #fff;
    padding-right: 4px;
}

/* Contact Column */
.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-contact-list li i {
    color: var(--accent-light);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-list li span {
    color: #9ca3af;
    line-height: 1.5;
}

.footer-contact-list li a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #9ca3af;
    transition: var(--transition);
}

.footer-contact-list li a:hover {
    color: #fff;
}

/* Bottom Bar */
.footer-bottom-bar {
    background: #141416;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-copyright {
    color: #6b7280;
    font-size: 13px;
    margin: 0;
}

.footer-copyright strong {
    color: #9ca3af;
    font-weight: 600;
}

.footer-credits {
    color: #6b7280;
    font-size: 13px;
    margin: 0;
}

.footer-credits a {
    color: #9ca3af;
    font-weight: 500;
}

.footer-credits a:hover {
    color: #fff;
}

/* ===== Blog / Posts ===== */
.page-wrap {
    padding-top: 100px;
    padding-bottom: 80px;
    display: flex;
    gap: 40px;
}

.content-area {
    flex: 1;
    min-width: 0;
}

.widget-area {
    width: 300px;
    flex-shrink: 0;
}

.widget {
    margin-bottom: 24px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}

.widget ul {
    list-style: none;
}

.widget li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: var(--text-muted);
    font-size: 14px;
}

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

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.post-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.post-card:hover {
    border-color: var(--accent-border);
    box-shadow: var(--shadow);
}

.post-thumbnail {
    display: block;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-card-body {
    padding: 24px;
}

.post-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.post-title a {
    color: var(--text);
}

.post-title a:hover {
    color: var(--accent);
}

.post-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.post-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.no-posts {
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
}

/* Pagination */
.pagination {
    text-align: center;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 4px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* Single Post */
.post-thumbnail-full {
    margin-bottom: 32px;
    border-radius: var(--radius);
    overflow: hidden;
}

.post-thumbnail-full img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.post-content {
    line-height: 1.9;
    color: var(--text-secondary);
}

.post-content h2,
.post-content h3 {
    margin: 32px 0 16px;
    font-weight: 700;
    color: var(--text);
}

.post-content p {
    margin-bottom: 16px;
}

.post-content img {
    border-radius: var(--radius-sm);
    margin: 16px 0;
}

.post-tags {
    margin: 24px 0;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.post-tags a {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-ghost);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    margin: 4px;
    color: var(--accent);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.post-navigation a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 14px;
}

.post-navigation a:hover {
    color: var(--accent);
}

/* Page */
.page-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
}

.page-thumbnail {
    margin-bottom: 28px;
    border-radius: var(--radius);
    overflow: hidden;
}

.page-thumbnail img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.page-content {
    line-height: 1.9;
    color: var(--text-secondary);
}

.page-content h2,
.page-content h3 {
    margin: 32px 0 16px;
    font-weight: 700;
    color: var(--text);
}

.page-content p {
    margin-bottom: 16px;
}

.page-links {
    margin-top: 24px;
    font-weight: 500;
}

/* 404 */
.error-404 {
    text-align: center;
    padding: 140px 20px;
}

.error-code {
    font-size: 120px;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
    display: block;
    margin-bottom: 16px;
}

.error-404 h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.error-404 p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Archive */
.archive-description {
    margin-bottom: 32px;
    padding: 20px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
}

/* Comments */
.comments-area {
    margin: 40px 0;
}

.comments-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}

.comment-list {
    list-style: none;
    margin-bottom: 32px;
}

.comment {
    padding: 20px;
    margin-bottom: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.comment-meta {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.comment-author {
    font-weight: 700;
    color: var(--text);
}

.comment-author .avatar {
    border-radius: 50%;
    margin-left: 10px;
    vertical-align: middle;
}

.comment-reply-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

#respond {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

#reply-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.comment-form label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 14px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 15px;
    background: var(--bg);
    color: var(--text);
    transition: var(--transition);
    margin-bottom: 16px;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--accent-light);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-ghost);
}

.comment-form .submit {
    display: inline-block;
    padding: 12px 32px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.comment-form .submit:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Search Form */
.search-form {
    display: flex;
    gap: 8px;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 15px;
    background: var(--bg);
    color: var(--text);
}

.search-form input[type="search"]:focus {
    border-color: var(--accent-light);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-ghost);
}

.search-form button {
    padding: 12px 20px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--accent-dark);
}

/* ===== LTR / English Mode ===== */
body.ltr {
    direction: ltr;
    text-align: left;
}

body.ltr .site-logo {
    flex-direction: row;
}

body.ltr .hero-glass-card {
    text-align: left;
}

body.ltr .hero-buttons {
    justify-content: flex-start;
}

body.ltr .hero-meta {
    justify-content: flex-start;
}

body.ltr .section-header {
    text-align: left;
    margin-left: 0;
}

body.ltr .about-grid {
    grid-template-columns: 1.2fr 1fr;
}

body.ltr .about-list li {
    padding-right: 0;
    padding-left: 28px;
}

body.ltr .about-list li::before {
    right: auto;
    left: 0;
}

body.ltr .post-navigation {
    flex-direction: row;
}

body.ltr .post-meta span::after {
    margin: 0 8px;
}

body.ltr .comment-author .avatar {
    margin-left: 0;
    margin-right: 10px;
}

body.ltr .main-navigation .sub-menu {
    right: auto;
    left: 0;
}

body.ltr .footer-social a {
    margin: 0 8px 0 0;
}

@media (max-width: 1024px) {
    body.ltr .hero-glass-card {
        text-align: center;
    }

    body.ltr .hero-buttons {
        justify-content: center;
    }

    body.ltr .hero-meta {
        justify-content: center;
    }

    body.ltr .section-header {
        text-align: center;
        margin: 0 auto 60px;
    }

    body.ltr .about-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Scroll Reveal Animations ===== */
/* Default: always visible. Animation only runs when .animated class added by JS */
.reveal {}

@keyframes revealFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes revealFadeIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes revealScaleIn {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes revealSlideRight {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes revealSlideLeft {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal.animated {
    animation: revealFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.reveal.fade-in.animated {
    animation: revealFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.reveal.scale-in.animated {
    animation: revealScaleIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.reveal.slide-right.animated {
    animation: revealSlideRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.reveal.slide-left.animated {
    animation: revealSlideLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Stagger delays */
.reveal.delay-1.animated {
    animation-delay: 0.1s;
}

.reveal.delay-2.animated {
    animation-delay: 0.2s;
}

.reveal.delay-3.animated {
    animation-delay: 0.3s;
}

.reveal.delay-4.animated {
    animation-delay: 0.4s;
}

.reveal.delay-5.animated {
    animation-delay: 0.5s;
}

.reveal.delay-6.animated {
    animation-delay: 0.6s;
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
    .reveal.animated {
        animation: none !important;
    }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-glass-card {
        padding: 36px;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-meta {
        justify-content: center;
    }

    .hero-image-wrap {
        max-width: 400px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-bar-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-widgets {
        grid-template-columns: repeat(3, 1fr);
    }

    .page-wrap {
        flex-direction: column;
    }

    .widget-area {
        width: 100%;
    }
}

@media (max-width: 768px) {

    /* Mobile Header */
    .header-logo-row {
        padding: 12px 0 8px;
    }

    .header-logo-img {
        height: 44px;
    }

    .header-nav-row {
        padding: 6px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 16px;
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
    }

    .main-navigation a {
        padding: 12px 16px;
    }

    .header-phone span {
        display: none;
    }

    .btn-sm {
        padding: 8px 18px;
        font-size: 13px;
    }

    .hero-section {
        padding: 51px 0 60px;
    }

    .hero-glass-card {
        padding: 28px;
        border-radius: 22px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-bg-decoration {
        width: 300px;
        height: 300px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-item {
        padding: 16px;
    }

    .stat-number {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-bar-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-bar-grid {
        grid-template-columns: 1fr;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .booking-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .booking-form-wrap {
        padding: 24px;
    }

    .booking-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-contact {
        margin-top: 24px;
    }

    .cta-card {
        padding: 32px 24px;
    }

    .page-hero {
        padding: 140px 0 40px;
    }

    .page-hero-title {
        font-size: 30px;
    }

    .page-hero-desc {
        font-size: 15px;
    }

    .page-title {
        font-size: 28px;
    }

    .post-thumbnail-full img {
        height: 250px;
    }

    .post-navigation {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-main {
        padding: 48px 0 32px;
    }

    .footer-brand-col .footer-logo-img {
        height: 40px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

    .error-code {
        font-size: 80px;
    }
}

@media (max-width: 480px) {
    .hero-glass-card {
        padding: 22px;
        border-radius: 18px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .service-card {
        padding: 28px 20px;
    }

    .page-hero-title {
        font-size: 26px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}