/* ===== Castle Tiles & Bathrooms - Shared Styles ===== */

:root {
    --primary: #96bfd1;
    --primary-dark: #7aabbe;
    --primary-light: rgba(150,191,209,0.08);
    --primary-glow: rgba(150,191,209,0.15);
    --accent: #c9a96e;
    --accent-light: rgba(201,169,110,0.1);
    --navy: #1c2a3a;
    --dark: #0D0D0D;
    --dark-light: #1A1A1A;
    --dark-mid: #2A2A2A;
    --white: #ffffff;
    --light-bg: #F7F8FA;
    --whatsapp: #25D366;
    --text: #2D2D2D;
    --text-light: #5A5A5A;
    --border: #E2E5EA;
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.12);
    --radius: 6px;
    --radius-lg: 10px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    background: var(--white);
    animation: pageIn 0.6s ease-out;
}
@keyframes pageIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
h1, h2, .section-title, .hero h1, .page-hero h1, .cta-section h2 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}
h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== Utility ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 9rem 0; }
.section-label {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.72rem;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 1rem;
    border: 1px solid rgba(201,169,110,0.2);
    font-family: 'Inter', sans-serif;
}
.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.section-subtitle {
    color: var(--text-light);
    font-size: 1.08rem;
    max-width: 560px;
    line-height: 1.75;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== Scroll Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}
/* Staggered children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.08s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.16s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.24s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.32s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.4s; }

/* ===== Placeholder Images ===== */
.placeholder-img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    background: linear-gradient(135deg, #e4eef3 0%, #c5d9e4 40%, #a8c7d6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.placeholder-img::before {
    content: attr(data-label);
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.placeholder-img span {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.1rem;
    opacity: 0.5;
    letter-spacing: 0.02em;
}
.placeholder-img.banner {
    min-height: auto;
    aspect-ratio: 4/3;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}
.btn:hover::after { width: 300px; height: 300px; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(150,191,209,0.35); }
.btn-white { background: white; color: var(--dark); border: 1px solid var(--border); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.8); transform: translateY(-3px); }
.btn-whatsapp { background: var(--whatsapp); color: white; }
.btn-whatsapp:hover { background: #1fb855; transform: translateY(-3px); box-shadow: 0 12px 28px rgba(37,211,102,0.35); }
/* Hero CTA Buttons - Premium */
.btn-hero-call {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.btn-hero-call:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.btn-hero-wa {
    background: rgba(37,211,102,0.15);
    color: #4ade80;
    border: 1.5px solid rgba(37,211,102,0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.btn-hero-wa:hover {
    background: rgba(37,211,102,0.25);
    border-color: rgba(37,211,102,0.7);
    color: #6ee7a0;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37,211,102,0.15);
}
.btn-phone { background: var(--dark); color: white; }
.btn-phone:hover { background: var(--dark-light); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(13,13,13,0.35); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* ===== Header ===== */
header {
    background: #96bfd1;
    padding: 0.85rem 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition);
}
header.scrolled {
    padding: 0.55rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    background: #96bfd1;
}
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo img { height: 60px; width: auto; transition: height var(--transition); }
header.scrolled .logo img { height: 40px; }
nav { display: flex; align-items: center; gap: 0.2rem; }
nav a {
    color: var(--dark);
    font-weight: 500;
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    transition: all var(--transition);
    font-size: 0.92rem;
    position: relative;
    letter-spacing: 0.01em;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
    transition: width var(--transition), left var(--transition);
}
nav a:hover::after, nav a.active::after { width: 55%; left: 22.5%; }
nav a:hover { color: #ffffff; }
nav a.active { color: #ffffff; font-weight: 600; }
header nav a { color: rgba(255,255,255,0.9); }
header nav a:hover { color: #ffffff; }
header nav a.active { color: #ffffff; }
.nav-cta {
    background: #ffffff !important;
    color: #3a7a94 !important;
    padding: 0.55rem 1.3rem !important;
    margin-left: 0.6rem;
    border-radius: 10px;
    font-weight: 600;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: #f0f6f8 !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(160deg, rgba(15,30,45,0.82) 0%, rgba(25,50,70,0.75) 50%, rgba(15,30,45,0.82) 100%), url('images/cover_desktop.png') center center / cover no-repeat;
    color: white;
    padding: 7.5rem 0 6.5rem;
    position: relative;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.6) saturate(0.8);
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(160deg, rgba(15,30,45,0.55) 0%, rgba(25,50,70,0.4) 50%, rgba(15,30,45,0.55) 100%);
    z-index: 1;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    opacity: 0;
}
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(150,191,209,0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: heroGlow 10s ease-in-out infinite alternate;
}
@keyframes heroGlow {
    0% { opacity: 0.4; transform: translate(0, 0); }
    100% { opacity: 0.8; transform: translate(-40px, 30px); }
}
.hero .container {
    position: relative;
    z-index: 2;
}
/* Desktop: split layout with form */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
@media (min-width: 993px) {
    .hero-split .hero-buttons .btn-hero-cta { display: none; }
}
.hero-form-desktop {
    display: block;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2.5rem;
    max-width: 460px;
    line-height: 1.8;
}
.btn-hero-cta {
    background: var(--accent);
    color: var(--navy);
    font-weight: 700;
}
.btn-hero-cta:hover {
    background: #d4b97a;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(201,169,110,0.3);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(150,191,209,0.15);
    border: 1px solid rgba(150,191,209,0.3);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #96bfd1;
    margin-bottom: 1.5rem;
    animation: badgePulse 3s ease-in-out infinite;
    letter-spacing: 0.02em;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(150,191,209,0.15); }
    50% { box-shadow: 0 0 0 10px rgba(150,191,209,0); }
}
.hero h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}
.hero h1 span { color: #96bfd1; }
.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2.25rem;
    max-width: 460px;
    line-height: 1.75;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    color: var(--text);
    transform: translateY(0);
    transition: transform var(--transition), box-shadow var(--transition);
}
.hero-form-card:hover { transform: translateY(-4px); box-shadow: 0 35px 90px rgba(0,0,0,0.22); }
.hero-form-card h3 { color: var(--dark); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; letter-spacing: -0.01em; }
.hero-form-card .form-sub { color: var(--text-light); font-size: 0.88rem; margin-bottom: 1.5rem; }

/* ===== Forms ===== */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 0.35rem; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all var(--transition);
    background: var(--light-bg);
    color: var(--dark);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    font-weight: 400;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px var(--primary-glow);
}
.form-group textarea { resize: vertical; min-height: 90px; }
/* Label-free form variant */
.form-minimal .form-group label { display: none; }
.form-minimal .form-group input,
.form-minimal .form-group textarea {
    padding: 1rem 1.1rem;
    font-size: 0.95rem;
}
.form-submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}
.form-submit-btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(150,191,209,0.3); }
.form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.85rem;
    font-size: 0.78rem;
    color: var(--text-light);
}

/* ===== Trust Bar ===== */
.trust-bar {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
}
.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 0.75rem;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.trust-item:hover { background: var(--light-bg); transform: translateY(-4px); }
.trust-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border: 1px solid var(--primary-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all var(--transition);
}
.trust-icon svg { width: 24px; height: 24px; fill: var(--primary); transition: fill var(--transition); }
.trust-item:hover .trust-icon { background: var(--primary); border-color: var(--primary); color: white; transform: rotate(5deg) scale(1.08); }
.trust-item:hover .trust-icon svg { fill: white; }
.trust-text { text-align: left; }
.trust-text strong { display: block; font-size: 0.88rem; color: var(--dark); font-weight: 700; letter-spacing: -0.01em; }
.trust-text span { font-size: 0.77rem; color: var(--text-light); }

/* ===== Service Cards ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.services-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.service-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--border);
}
.service-card:hover {
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.service-card-img {
    height: 210px;
    overflow: hidden;
    position: relative;
}
.service-card-img img,
.service-card-img .placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.service-card:hover .service-card-img img,
.service-card:hover .service-card-img .placeholder-img { transform: scale(1.06); }
.service-card-body { padding: 1.75rem; }
.service-card-body h3 { color: var(--dark); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.service-card-body p { font-size: 0.9rem; line-height: 1.7; color: var(--text-light); }
.service-icon-inline {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    transition: all var(--transition);
}
.service-card:hover .service-icon-inline { transform: rotate(-5deg) scale(1.08); }

/* ===== Service Detail Layout ===== */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0 4.5rem;
    align-items: center;
}
.service-detail .service-detail-title {
    grid-column: 2;
    grid-row: 1;
}
.service-detail .service-detail-img {
    grid-column: 1;
    grid-row: 1 / 3;
}
.service-detail .service-detail-content {
    grid-column: 2;
    grid-row: 2;
}
/* RTL variant: image on right */
.service-detail-rtl .service-detail-title {
    grid-column: 1;
}
.service-detail-rtl .service-detail-img {
    grid-column: 2;
}
.service-detail-rtl .service-detail-content {
    grid-column: 1;
}

/* ===== About Section ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}
.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-slow);
}
.about-image-wrapper:hover img { transform: scale(1.03); }
.about-image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.2;
    box-shadow: var(--shadow-lg);
    letter-spacing: -0.02em;
}
.about-image-badge span { display: block; font-size: 0.78rem; font-weight: 500; opacity: 0.9; letter-spacing: 0; }
.about-features {
    margin-top: 1.75rem;
}
.about-features li {
    padding: 0.7rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.98rem;
    transition: all var(--transition);
    color: var(--text);
}
.about-features li:hover { transform: translateX(6px); }
.check {
    width: 26px;
    height: 26px;
    background: var(--primary-light);
    border: 1px solid var(--primary-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all var(--transition);
}
.about-features li:hover .check { background: var(--primary); border-color: var(--primary); color: white; }
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    overflow: hidden;
    padding: 0 0.25rem;
}
.about-stat {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--border);
}
.about-stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.about-stat .number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.4rem;
    letter-spacing: -0.03em;
}
.about-stat .label { font-size: 0.84rem; color: var(--text-light); font-weight: 500; }

/* ===== Areas ===== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}
.area-tag {
    background: white;
    padding: 1.15rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 600;
    color: var(--dark);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1.5px solid var(--border);
    cursor: default;
}
.area-tag:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.area-tag.primary { background: var(--primary); color: white; border-color: var(--primary); }
.area-tag.primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-5px); }

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 70%);
    animation: ctaGlow 8s ease-in-out infinite alternate;
}
@keyframes ctaGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -30px) scale(1.1); }
}
.cta-section h2 { font-size: 2.6rem; font-weight: 800; margin-bottom: 0.75rem; position: relative; z-index: 1; letter-spacing: -0.02em; }
.cta-section p { font-size: 1.1rem; opacity: 0.85; margin-bottom: 2.25rem; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
}
.contact-methods { display: flex; flex-direction: column; gap: 1rem; }
.contact-method {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.35rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    color: var(--text);
    border: 1px solid var(--border);
}
.contact-method:hover { transform: translateX(8px); box-shadow: var(--shadow-lg); border-left: 3px solid var(--primary); border-color: transparent; border-left-color: var(--primary); }
.contact-method .icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: all var(--transition);
}
.contact-method:hover .icon { transform: scale(1.08) rotate(5deg); }
.contact-method .icon.phone-icon { background: rgba(13,13,13,0.06); }
.contact-method .icon.wa-icon { background: rgba(37,211,102,0.08); }
.contact-method .icon.email-icon { background: rgba(150,191,209,0.08); }
.contact-method strong { display: block; color: var(--dark); font-size: 0.95rem; font-weight: 700; }
.contact-method span { font-size: 0.84rem; color: var(--text-light); }
.contact-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.75rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    border: 1px solid var(--border);
}
.contact-form-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.contact-form-card h3 { color: var(--dark); font-size: 1.3rem; font-weight: 700; margin-bottom: 0.25rem; letter-spacing: -0.01em; }
.contact-form-card .form-sub { color: var(--text-light); font-size: 0.88rem; margin-bottom: 1.5rem; }

/* ===== Gallery ===== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    background: white;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
    color: var(--text);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-xs); }
.filter-btn.active { background: var(--primary); color: white; border-color: var(--primary); box-shadow: 0 4px 16px rgba(150,191,209,0.25); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-xs);
}
.gallery-item img,
.gallery-item .placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.gallery-item:hover img,
.gallery-item:hover .placeholder-img { transform: scale(1.08); }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.6) 0%, transparent 55%);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 1;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item-label {
    position: absolute;
    bottom: 1rem;
    left: 1.25rem;
    color: white;
    font-weight: 600;
    font-size: 0.88rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition);
    letter-spacing: 0.01em;
}
.gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.94);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    cursor: pointer;
    animation: lbFadeIn 0.3s;
    backdrop-filter: blur(8px);
}
.lightbox.active { display: flex; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: 0 0 80px rgba(0,0,0,0.5);
    animation: lbZoomIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes lbZoomIn { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.15); transform: rotate(90deg) scale(1.05); }

/* ===== Page Hero (inner pages) ===== */
.page-hero {
    background: linear-gradient(160deg, #0D0D0D 0%, #0f1a22 50%, #0A1520 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/showroom.png') center/cover no-repeat;
    opacity: 0.06;
    filter: saturate(0.3);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 0.6rem; letter-spacing: -0.03em; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 480px; margin: 0 auto; }
.breadcrumb {
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: var(--primary); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== Google Reviews Section ===== */
.google-reviews-section { background: var(--dark); color: white; }
.google-reviews-section .section-label { color: var(--primary); }
.google-reviews-section .section-title { color: white; }
.google-reviews-section .section-subtitle { color: rgba(255,255,255,0.6); }

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.rating-big {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}
.rating-stars-row {
    display: flex;
    gap: 4px;
    margin: 6px 0;
}
.rating-stars-row svg { width: 22px; height: 22px; fill: #FBBC04; color: #FBBC04; }
.rating-meta { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.google-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #3c4043;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    text-decoration: none;
}
.google-reviews-link:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.4); }

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.review-card-v2 {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 22px;
    transition: all var(--transition);
}
.review-card-v2:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-2px); }

.review-card-v2 .rv-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.review-card-v2 .rv-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    color: #000;
}
.review-card-v2 .rv-meta { flex: 1; min-width: 0; }
.review-card-v2 .rv-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
}
.rv-verified {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #4285F4;
    background: rgba(66,133,244,0.1);
    padding: 2px 6px;
    border-radius: 4px;
}
.rv-verified svg { width: 10px; height: 10px; }
.review-card-v2 .rv-date { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.review-card-v2 .rv-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 10px;
}
.review-card-v2 .rv-stars svg { width: 15px; height: 15px; fill: #FBBC04; color: #FBBC04; }
.review-card-v2 .rv-text { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.65; }
.review-card-v2 .rv-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

@media (min-width: 640px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Footer ===== */
footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 4.5rem 0 1.5rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 1.5rem;
}
.footer-brand p { margin-top: 1.25rem; font-size: 0.88rem; line-height: 1.75; }
.footer-brand img { height: 150px; width: auto; object-fit: contain; }
footer h4 { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 1.1rem; letter-spacing: -0.01em; }
footer ul li { margin-bottom: 0.5rem; }
footer ul a { color: rgba(255,255,255,0.5); transition: all var(--transition); font-size: 0.88rem; }
footer ul a:hover { color: var(--primary); padding-left: 4px; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition);
    font-size: 0.95rem;
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-3px); }
.footer-bottom { text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.3); padding-top: 0.5rem; }

/* ===== Floating WhatsApp ===== */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}
.floating-whatsapp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}
.floating-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.floating-whatsapp svg { width: 32px; height: 32px; fill: white; }
@keyframes floatBounce {
    0%, 100% { transform: translateY(0); box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
    15% { transform: translateY(-8px); box-shadow: 0 10px 30px rgba(37,211,102,0.45); }
    30% { transform: translateY(0); box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
    45% { transform: translateY(-4px); box-shadow: 0 7px 25px rgba(37,211,102,0.4); }
    60% { transform: translateY(0); box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
}
.floating-whatsapp { animation: floatBounce 4s ease-in-out infinite; }

/* ===== Mobile Sticky Bar ===== */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.08);
    z-index: 998;
    padding: 0.6rem;
}
.mobile-sticky-bar .bar-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
}
.mobile-sticky-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.84rem;
    color: white;
    transition: all var(--transition);
}
.mobile-sticky-bar a:hover { transform: translateY(-2px); }
.bar-call { background: var(--dark); }
.bar-whatsapp { background: var(--whatsapp); }
.bar-quote { background: var(--primary); }

/* ===== Photo Banner ===== */
.photo-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}
.photo-banner img,
.photo-banner .placeholder-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform var(--transition-slow), filter var(--transition);
    filter: saturate(0.85);
}
.photo-banner img:hover,
.photo-banner .placeholder-img:hover { transform: scale(1.06); filter: saturate(1.1); }
.photo-banner .placeholder-img { min-height: auto; }

/* ===== Video Section ===== */
.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.video-placeholder .play-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all var(--transition);
}
.video-placeholder:hover .play-icon { transform: scale(1.1); box-shadow: 0 0 30px rgba(150,191,209,0.5); }

/* ===== Social Links ===== */
.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}
.social-link-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.75rem 2rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
    text-decoration: none;
    color: var(--text);
}
.social-link-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.social-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}
.social-link-card:hover .social-icon { transform: scale(1.08) rotate(5deg); }
.facebook-icon { background: #1877F2; }
.instagram-icon { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-link-text { flex: 1; min-width: 0; }
.social-link-text strong { display: block; font-size: 1.05rem; color: var(--dark); font-weight: 700; margin-bottom: 0.2rem; }
.social-link-text span { font-size: 0.88rem; color: var(--text-light); }
.social-arrow {
    font-size: 1.25rem;
    color: var(--text-light);
    transition: all var(--transition);
    flex-shrink: 0;
}
.social-link-card:hover .social-arrow { color: var(--primary); transform: translateX(4px); }

/* Social Embeds */
.social-embeds-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
}
.social-embed-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.social-embed-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.social-embed-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}
.social-embed-header .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}
.social-embed-header strong { display: block; font-size: 0.95rem; color: var(--dark); }
.social-embed-header span { font-size: 0.8rem; color: var(--text-light); }
.social-embed-body {
    min-height: 500px;
    display: flex;
    align-items: stretch;
}
.social-embed-body iframe { flex: 1; }
.social-embed-body.instagram-profile {
    flex-direction: column;
    min-height: auto;
}
.social-embed-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark);
    transition: all var(--transition);
    text-decoration: none;
}
.social-embed-footer:hover { background: var(--light-bg); color: var(--primary); }

/* Instagram Profile Preview */
.ig-profile-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.ig-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border);
    flex-shrink: 0;
}
.ig-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ig-stats { flex: 1; }
.ig-stat strong { font-size: 0.95rem; color: var(--dark); }
.ig-stat-row { margin-top: 0.25rem; font-size: 0.85rem; color: var(--text-light); }
.ig-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    padding: 3px;
}
.ig-post {
    aspect-ratio: 1;
    min-height: auto !important;
}
.ig-post span { font-size: 0.75rem; }
.ig-post::before { font-size: 0.55rem; padding: 0.15rem 0.4rem; }

@media (max-width: 768px) {
    .social-embeds-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .social-links-grid { grid-template-columns: 1fr; }
}

/* ===== Pricing Badge ===== */
.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(201,169,110,0.12);
    border: 1px solid rgba(201,169,110,0.3);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 1.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
    animation: badgePulse 3s ease-in-out infinite;
}
.pricing-badge span {
    font-weight: 800;
    font-size: 1.05rem;
}

/* ===== Our Process ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent), transparent);
    opacity: 0.3;
    z-index: 0;
}
.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.process-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), #2a3f55);
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    border: 2px solid rgba(201,169,110,0.2);
    transition: all var(--transition);
    box-shadow: 0 8px 24px rgba(28,42,58,0.2);
}
.process-step:hover .process-number {
    transform: scale(1.1);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(201,169,110,0.2);
}
.process-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    transition: all 0.5s ease;
}
.process-step p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 220px;
    margin: 0 auto;
    transition: all 0.5s ease;
}
/* Active/highlighted state */
.process-step.active .process-number {
    background: linear-gradient(135deg, var(--accent), #d4b97a);
    color: var(--navy);
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(201,169,110,0.4);
    transform: scale(1.12);
}
.process-step.active h3 {
    color: var(--accent);
}
.process-step.active p {
    color: rgba(255,255,255,0.85);
}

/* ===== Enhanced Service Card Animations ===== */
.service-card {
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover .service-card-body h3 {
    color: var(--primary-dark);
}
.service-card-img img {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
    filter: saturate(0.9);
}
.service-card:hover .service-card-img img {
    transform: scale(1.08);
    filter: saturate(1.15);
}

/* Gold accent line under section titles */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), rgba(201,169,110,0.3));
    margin-top: 0.75rem;
    border-radius: 2px;
}
.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

/* Smooth image reveal */
.gallery-item img {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
    filter: saturate(0.85);
}
.gallery-item:hover img {
    filter: saturate(1.1) brightness(1.02);
}

/* ===== Quote Section ===== */
.quote-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: start;
}
@media (max-width: 992px) {
    .quote-section-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ===== Gold Dividers ===== */
.gold-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
    border: none;
    margin: 0;
}

/* ===== Dark Sections ===== */
.section-dark {
    background: var(--navy);
    color: white;
}
.section-dark .section-label {
    background: rgba(201,169,110,0.12);
    color: var(--accent);
    border-color: rgba(201,169,110,0.25);
}
.section-dark .section-title { color: white; }
.section-dark .section-title::after { background: linear-gradient(90deg, var(--accent), rgba(201,169,110,0.2)); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.55); }

/* ===== Stats on Homepage ===== */
.home-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}
.home-stat {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.home-stat.visible {
    opacity: 1;
    transform: translateY(0);
}
.home-stat:nth-child(2) { transition-delay: 0.15s; }
.home-stat:nth-child(3) { transition-delay: 0.3s; }
.home-stat:nth-child(4) { transition-delay: 0.45s; }
.home-stat .number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.home-stat .label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== Testimonial Carousel ===== */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
}
.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}
.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.08);
}
.carousel-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}
.carousel-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 5px;
}

@media (max-width: 992px) {
    .testimonial-slide { grid-template-columns: repeat(2, 1fr); }
    .home-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 640px) {
    .testimonial-slide { grid-template-columns: 1fr; }
    .home-stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 0 1rem; }
    .home-stat .number { font-size: 2.2rem; }
    .photo-banner { display: none; }

    /* Compact area tags on mobile */
    .areas-grid {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem !important;
        max-width: 100% !important;
    }
    .area-tag {
        padding: 0.55rem 1rem !important;
        font-size: 0.8rem !important;
        border-radius: 50px !important;
        box-shadow: none !important;
        border-width: 1px !important;
    }
    .area-tag.primary {
        padding: 0.55rem 1rem !important;
    }

    /* Mobile single-card carousel */
    .testimonial-carousel { overflow: hidden; }
    .testimonial-track {
        display: flex;
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .testimonial-slide {
        display: contents;
    }
    .review-card-v2 {
        min-width: calc(100vw - 4rem);
        max-width: calc(100vw - 4rem);
        flex-shrink: 0;
        margin: 0 0.5rem;
        opacity: 0.3;
        filter: blur(2px);
        transform: scale(0.92);
        transition: all 0.5s ease;
        box-sizing: border-box;
    }
    .review-card-v2.mobile-active {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
    .carousel-controls { margin-top: 1.5rem; }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding-left: 70px;
        position: relative;
    }
    .process-grid::before {
        top: 30px;
        bottom: 30px;
        left: 29px;
        right: auto;
        width: 2px;
        height: auto;
        background: rgba(201,169,110,0.15);
        opacity: 1;
    }
    .process-grid::after {
        content: '';
        position: absolute;
        top: 30px;
        left: 29px;
        width: 2px;
        height: 0%;
        background: var(--accent);
        z-index: 0;
        transition: height 0.8s ease;
    }
    .process-grid.line-25::after { height: 12%; }
    .process-grid.line-50::after { height: 40%; }
    .process-grid.line-75::after { height: 68%; }
    .process-grid.line-100::after { height: calc(100% - 60px); }
    .process-step {
        text-align: left;
        padding: 1.5rem 0 1.5rem 2rem;
        position: relative;
    }
    .process-number {
        position: absolute;
        left: -70px;
        top: 1.5rem;
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        margin: 0;
    }
    .process-step p {
        max-width: none;
        margin: 0;
    }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero-split { grid-template-columns: 1fr; text-align: center; }
    .hero-form-desktop { display: none; }
    .hero-content .hero-buttons { justify-content: center; }
    .hero-content .pricing-badge { margin-left: auto; margin-right: auto; margin-top: 2rem; margin-bottom: 0.5rem; }
    .hero h1 { font-size: 2.5rem; }
    .hero-subtitle { margin-left: auto; margin-right: auto; max-width: 580px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; direction: ltr !important; }
    .about-grid .about-image-wrapper { order: -1; }
    .about-image-wrapper img { height: auto !important; object-fit: contain !important; }
    .service-detail, .service-detail.service-detail-rtl {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .service-detail .service-detail-title { order: 1; }
    .service-detail .service-detail-img { order: 2; }
    .service-detail .service-detail-content { order: 3; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .photo-banner { grid-template-columns: repeat(2, 1fr); height: 220px; }
    .page-hero h1 { font-size: 2.3rem; }
    .section { padding: 6rem 0; }
}
@media (max-width: 768px) {
    nav { display: none; }
    .mobile-toggle { display: block; }
    nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        box-shadow: 0 12px 40px rgba(0,0,0,0.25);
        padding: 1rem;
        z-index: 999;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    nav.active a { padding: 0.85rem 1.2rem; color: rgba(255,255,255,0.85); border-radius: var(--radius); }
    nav.active a:hover { background: rgba(255,255,255,0.08); }
    nav.active .nav-cta { display: flex; background: var(--primary) !important; color: white !important; justify-content: center; margin: 0.5rem 0 0; }
    .hero-buttons { display: none !important; }
    .hero-video { object-fit: cover !important; }
    .hero { padding: 3.5rem 0; background-image: linear-gradient(160deg, rgba(15,30,45,0.82) 0%, rgba(25,50,70,0.75) 50%, rgba(15,30,45,0.82) 100%), url('images/cover.jpg') !important; background-size: cover, cover !important; }
    .hero h1 { font-size: 2.1rem; }
    .section { padding: 5rem 0; }
    .section-title { font-size: 1.85rem; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card-img { height: 280px; }
    .fixtures-img { object-fit: cover !important; object-position: top center !important; }
    .trust-items { grid-template-columns: 1fr 1fr; }
    .floating-cta { display: block; }
    .mobile-sticky-bar { display: none; }
    .about-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .about-stat { padding: 1.25rem 0.5rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand { text-align: center; }
    .footer-brand img { margin: 0 auto; display: block; }
    .about-image-wrapper img { height: auto !important; object-fit: contain !important; }
    .photo-banner { grid-template-columns: 1fr 1fr; height: 160px; }
    .gallery-filters { gap: 0.4rem; }
    .filter-btn { padding: 0.5rem 1rem; font-size: 0.82rem; }
    .container { padding: 0 1.25rem; }
    .cta-section h2 { font-size: 2rem; }
    .page-hero { padding: 3.5rem 0; }
    .page-hero h1 { font-size: 2rem; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-left: -0.5rem; margin-right: -0.5rem; }
    .about-stat { padding: 1rem 0.4rem; }
    .about-stat .number { font-size: 1.6rem; }
    .about-stat .label { font-size: 0.72rem; }
    .photo-banner { grid-template-columns: 1fr; height: 200px; }
    .hero h1 { font-size: 1.85rem; }
}
