/* ==========================================================================
   Riyadh Curtains & Sofa Luxury Theme CSS
   Bilingual (Arabic RTL / English LTR) | Dark & Light Mode | Google Ads Optimized
   Developed by Khaled Digital Solutions (https://khaleddigital.com)
   ========================================================================== */

/* 1. CSS CUSTOM PROPERTIES / THEME VARIABLES */
:root {
    /* Dark Mode Defaults (Primary Theme) */
    --bg-body: #080e1a;
    --bg-header: rgba(11, 17, 32, 0.85);
    --bg-card: #0f1a2e;
    --bg-card-hover: #16243f;
    --bg-surface: #142036;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(245, 158, 11, 0.35);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --gold-primary: #f59e0b;
    --gold-hover: #d97706;
    --gold-glow: rgba(245, 158, 11, 0.35);
    --gold-soft-bg: rgba(245, 158, 11, 0.12);
    
    --wa-green: #25d366;
    --wa-hover: #1ebe5d;
    --wa-glow: rgba(37, 211, 102, 0.35);
    
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.3);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;
    
    --font-ar: 'Tajawal', 'IBM Plex Sans Arabic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-en: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Theme Variables */
[data-theme="light"] {
    --bg-body: #f8fafc;
    --bg-header: rgba(255, 255, 255, 0.9);
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --bg-surface: #f1f5f9;
    --border-color: #e2e8f0;
    --border-hover: rgba(217, 119, 6, 0.4);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    --gold-primary: #d97706;
    --gold-hover: #b45309;
    --gold-glow: rgba(217, 119, 6, 0.25);
    --gold-soft-bg: rgba(217, 119, 6, 0.08);
    
    --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 20px rgba(217, 119, 6, 0.2);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-body);
    color: var(--text-primary);
    font-family: var(--font-ar);
    line-height: 1.65;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
    padding-bottom: 75px; /* Space for sticky call bar on mobile */
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

/* LTR Switch for English */
html[dir="ltr"] body {
    font-family: var(--font-en);
}

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

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

button, input, select, textarea {
    font-family: inherit;
}

.site-container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

/* Section Headings */
.section-head {
    max-width: 780px;
    margin: 0 auto 3rem;
}

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

.badge-pill {
    display: inline-block;
    padding: 0.35rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    background-color: var(--gold-soft-bg);
    color: var(--gold-primary);
    border: 1px solid rgba(245, 158, 11, 0.25);
    margin-bottom: 0.85rem;
}

.section-title {
    font-size: 2.1rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
    }
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 3. BUTTONS & CTAS */
.btn-primary-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-hover));
    color: #ffffff;
    font-weight: 800;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(245, 158, 11, 0.5);
    filter: brightness(1.08);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    background: #25d366;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
}

.btn-full {
    width: 100%;
}

/* Pulsing call animation */
.pulse-animation {
    animation: pulse-ring 2s infinite cubic-bezier(0.45, 0, 0.55, 1);
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.6);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(245, 158, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

/* 4. SITE HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--bg-header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    gap: 1rem;
}

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

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-hover));
    color: #ffffff;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.35);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-primary);
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--gold-primary);
    font-weight: 700;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.control-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 0.85rem;
    border-radius: var(--radius-sm);
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.control-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.theme-btn .moon-icon {
    display: none;
}

[data-theme="light"] .theme-btn .sun-icon {
    display: none;
}

[data-theme="light"] .theme-btn .moon-icon {
    display: block;
}

.btn-header-call {
    display: none;
    align-items: center;
    gap: 0.5rem;
    height: 42px;
    padding: 0 1.2rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-hover));
    color: #ffffff;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
    transition: var(--transition);
}

@media (min-width: 640px) {
    .btn-header-call {
        display: inline-flex;
    }
}

.btn-header-call:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
    display: none;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
}

.mobile-drawer.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mobile-nav-link {
    font-size: 1.05rem;
    font-weight: 700;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* 5. HERO SECTION */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0 5rem;
    min-height: 650px;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 6.5rem 0 7rem;
    }
}

.hero-bg-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
    filter: saturate(1.2);
}

[data-theme="light"] .hero-bg-img {
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.15), transparent 70%),
                linear-gradient(to bottom, var(--bg-body) 0%, rgba(8, 14, 26, 0.8) 50%, var(--bg-body) 100%);
}

[data-theme="light"] .hero-overlay {
    background: linear-gradient(to bottom, rgba(248, 250, 252, 0.9) 0%, rgba(248, 250, 252, 0.96) 100%);
}

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

.hero-content {
    max-width: 820px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1.1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.status-pulse {
    width: 9px;
    height: 9px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: status-ping 1.5s infinite;
}

@keyframes status-ping {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
    100% { transform: scale(0.9); opacity: 1; }
}

.hero-title {
    font-size: 2.3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3.2rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-gradient-text {
    display: block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 720px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 540px) {
    .hero-actions {
        flex-direction: row;
    }
}

.btn-hero {
    padding: 1.05rem 2.2rem;
    font-size: 1.1rem;
}

.hero-trust-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.75rem;
    list-style: none;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-trust-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-trust-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.hero-trust-list li svg {
    color: var(--gold-primary);
    flex-shrink: 0;
}

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

@media (min-width: 768px) {
    .hero-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.25rem 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-card);
}

.stat-num {
    display: block;
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--gold-primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
    display: block;
}

/* 6. RECENT WORK SECTION */
.recent-work-section {
    padding: 5rem 0;
    background-color: var(--bg-surface);
}

.recent-work-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .recent-work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.work-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.work-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.work-media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.work-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.work-card:hover .work-media img {
    transform: scale(1.05);
}

.work-tag {
    position: absolute;
    top: 1rem;
    inset-inline-start: 1rem;
    background: rgba(11, 17, 32, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--gold-primary);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.work-info {
    padding: 1.5rem;
}

.work-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.work-location {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.work-cta {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--gold-primary);
}

/* 7. SERVICES SECTION */
.services-section {
    padding: 5.5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.4);
}

.service-card.highlight-card {
    border-color: rgba(245, 158, 11, 0.4);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(245, 158, 11, 0.06) 100%);
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-md);
    background: var(--gold-soft-bg);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.service-card-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--gold-primary);
}

.service-link-whatsapp {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--wa-green);
}

/* 8. WHY CHOOSE US */
.why-section {
    padding: 5.5rem 0;
    background-color: var(--bg-surface);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.85rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-hover);
}

.why-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.why-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.why-card-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 9. NORTH RIYADH NEIGHBORHOODS */
.areas-section {
    padding: 5.5rem 0;
}

.neighborhoods-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.75rem;
    box-shadow: var(--shadow-card);
}

.districts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.district-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-full);
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 700;
    transition: var(--transition);
}

.district-badge svg {
    color: var(--gold-primary);
}

.district-badge:hover {
    border-color: var(--gold-primary);
    background: var(--gold-soft-bg);
    transform: translateY(-2px);
}

.road-badge {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.25);
    color: var(--gold-primary);
}

.areas-cta-banner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 2rem;
    border-radius: var(--radius-md);
    align-items: center;
}

@media (min-width: 768px) {
    .areas-cta-banner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.banner-text h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.banner-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.banner-btns {
    flex-shrink: 0;
}

/* 10. INTERACTIVE PORTFOLIO TABS */
.portfolio-section {
    padding: 5.5rem 0;
    background-color: var(--bg-surface);
}

.portfolio-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.portfolio-tab-btn {
    padding: 0.75rem 1.4rem;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.portfolio-tab-btn:hover {
    color: var(--text-primary);
    border-color: var(--gold-primary);
}

.portfolio-tab-btn.active {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-hover));
    color: #ffffff;
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.35);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 14, 26, 0.95) 0%, rgba(8, 14, 26, 0.3) 60%, transparent 100%);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.p-category {
    font-size: 0.8rem;
    color: var(--gold-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.p-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 0.85rem;
}

.p-btn {
    align-self: flex-start;
    padding: 0.45rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition);
}

.p-btn:hover {
    background: var(--gold-primary);
}

/* 11. REVIEWS SECTION */
.reviews-section {
    padding: 5.5rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.review-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author-name {
    display: block;
    font-weight: 800;
    font-size: 1.05rem;
}

.author-area {
    display: block;
    font-size: 0.82rem;
    color: var(--gold-primary);
}

/* 12. FAQ SECTION */
.faq-section {
    padding: 5.5rem 0;
    background-color: var(--bg-surface);
}

.faq-accordion-box {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 800;
    text-align: inherit;
    cursor: pointer;
    gap: 1rem;
}

.faq-chevron {
    color: var(--gold-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

/* 13. CONTACT & MAP SECTION */
.contact-section {
    padding: 5.5rem 0;
}

.contact-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.75rem;
    box-shadow: var(--shadow-card);
}

@media (min-width: 1024px) {
    .contact-card-grid {
        grid-template-columns: 1fr 1fr;
        padding: 3rem;
        gap: 3rem;
    }
}

.contact-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.contact-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-method-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.method-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.call-icon {
    background: var(--gold-soft-bg);
    color: var(--gold-primary);
}

.wa-icon {
    background: rgba(37, 211, 102, 0.12);
    color: var(--wa-green);
}

.loc-icon {
    background: rgba(255, 255, 255, 0.06);
    color: var(--gold-primary);
}

.method-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.method-val {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
}

.contact-map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 380px;
    border: 1px solid var(--border-color);
}

.google-map-iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
}

/* 14. FOOTER & DEVELOPER CARD (MATCHING USER SAMPLE) */
.site-footer {
    background-color: #040810;
    color: #ffffff;
    padding: 4.5rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

[data-theme="light"] .site-footer {
    background-color: #0b1120;
    color: #ffffff;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
    .footer-top-grid {
        grid-template-columns: 2fr 1fr 1.5fr;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand-title {
    font-size: 1.25rem;
    font-weight: 900;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-footer-call {
    display: inline-flex;
    padding: 0.75rem 1.4rem;
    font-size: 0.95rem;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.f-tag {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
}

/* =======================================================
   DEVELOPER SHOWCASE CARD (EXACTLY MATCHING USER SCREENSHOT)
   ======================================================= */
.developer-card-wrapper {
    margin: 3.5rem 0 2.5rem;
}

.developer-card {
    position: relative;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(11, 17, 32, 0.95) 50%, rgba(217, 119, 6, 0.08) 100%);
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: var(--radius-lg);
    padding: 2rem;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(245, 158, 11, 0.15);
}

.dev-card-bg-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.25), transparent 70%);
    top: -50px;
    right: -50px;
    border-radius: 50%;
    pointer-events: none;
}

.dev-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .dev-card-content {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
}

.dev-avatar-box {
    flex-shrink: 0;
}

.dev-avatar {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.85rem;
    font-weight: 900;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.dev-info-box {
    flex-grow: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .dev-info-box {
        text-align: left;
    }
}

.dev-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.8rem;
    border-radius: var(--radius-full);
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.4);
    color: #fb923c;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.dev-name {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
}

.dev-name a {
    color: #ffffff;
    transition: var(--transition);
}

.dev-name a:hover {
    color: #fb923c;
}

.dev-role {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #fb923c;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dev-bio {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    line-height: 1.5;
    max-width: 540px;
}

.dev-actions-box {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

@media (min-width: 540px) {
    .dev-actions-box {
        flex-direction: row;
        width: auto;
    }
}

@media (min-width: 768px) {
    .dev-actions-box {
        flex-direction: column;
    }
}

.btn-dev-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    background: #f97316;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.35);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-dev-phone:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}

.btn-dev-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    background: #22c55e;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.35);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-dev-whatsapp:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .footer-bottom-bar {
        flex-direction: row;
    }
}

/* 15. MOBILE STICKY CALL-ONLY BAR (HIGH-CONVERSION) */
.mobile-sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
    background: rgba(8, 14, 26, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .mobile-sticky-cta-bar {
        display: none; /* Only on mobile where calls happen */
    }
}

.sticky-cta-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 50px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 0.98rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
}

.sticky-call-btn {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-hover));
    color: #ffffff;
    flex: 1.35;
    animation: pulse-ring 2.2s infinite;
}

.sticky-wa-btn {
    background: #25d366;
    color: #ffffff;
}

/* 16. GENERIC CONTENT & ELEMENTOR WRAPPERS */
.page-content-container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.elementor-page-wrapper {
    width: 100%;
}
