/* ========================================
   BIG PICTURE — Parallax Template
   12 CSS Variable System
======================================== */
:root {
    --primary-color: #023e8a;
    --primary-dark: #012b60;
    --primary-light: #023e8ab3;
    --secondary-color: #48cae4;
    --secondary-dark: #2db0cc;
    --secondary-light: #48cae466;
    --text-dark: #023e8a;
    --text-light: #ffffff;
    --shadow-color: #00000033;
    --overlay-dark: #00000080;
    --white-transparent: #ffffff1a;
    --white-semi: #ffffff4d;
}

/* ========================================
   BASE / RESET
======================================== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Rubik', sans-serif;
    margin: 0;
    padding: 0;
    direction: rtl;
    text-align: right;
    color: var(--text-dark);
    line-height: 1.75;
    overflow-x: hidden;
    font-weight: 300;
    letter-spacing: 0.015em;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.skip-link {
    position: absolute;
    top: -44px;
    left: 0;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 8px 16px;
    z-index: 100000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

.section-padding {
    padding: 80px 0;
}

.section-header h2 {
    font-size: 2.75rem;
    color: var(--primary-color);
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

/* ========================================
   NAVBAR — Clean White (Big Picture Style)
======================================== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    min-height: 3.5em;
    transition: background 0.4s ease, box-shadow 0.3s ease;
    z-index: 10000;
    box-shadow: 0 0 0.15em 0 rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.12);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.logo-text span {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text-dark);
}

.navbar .nav-link {
    color: var(--text-dark);
    font-weight: 400;
    padding: 8px 16px;
    transition: color 0.2s ease-in-out;
    font-size: 0.9rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--secondary-color);
}

.navbar .btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-light);
    border-radius: 3.5em;
    padding: 8px 24px;
    font-weight: 500;
}

.navbar .btn-primary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2857, 69, 75, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar .btn-outline-light {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

/* ========================================
   HERO — Fullscreen Parallax
======================================== */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: var(--secondary-color);
    opacity: 0.25;
    z-index: 1;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.hero-section h1 {
    font-size: 4.25rem;
    color: var(--text-light);
    text-shadow: none;
    margin-bottom: 20px;
    line-height: 1em;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    border-radius: 3.5em;
    padding: 14px 48px;
    font-weight: 500;
    font-size: 1.1rem;
}

.hero-section .scroll-down-arrow {
    position: absolute;
    bottom: 2em;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.hero-buttons .btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-light);
}

.hero-buttons .btn-primary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: var(--text-light);
}

.hero-buttons .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* ========================================
   SCROLL-DOWN ARROW
======================================== */
.scroll-down-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5em;
    height: 5em;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    margin-top: -2.5em;
    color: var(--text-light);
    transition: background 0.2s ease-in-out;
    text-decoration: none;
    cursor: pointer;
}

.scroll-down-arrow:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
}

.scroll-down-arrow svg {
    width: 1.5em;
    height: 1.5em;
    fill: currentColor;
}

/* On white-bg sections, arrow has dark colors */
.scroll-down-arrow.dark {
    border-color: rgba(0, 0, 0, 0.15);
    color: var(--text-dark);
    margin-top: -2.5em;
}

.scroll-down-arrow.dark:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* ========================================
   INNER PAGE HERO
======================================== */
.inner-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

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

.inner-hero h1 {
    font-size: 2.8rem;
    color: var(--text-light);
    text-shadow: none;
}

/* ========================================
   ABOUT PARALLAX — Fullscreen with Side Box
======================================== */
.about-parallax {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 3em 0;
    overflow: hidden;
}

.content-box {
    position: relative;
    z-index: 2;
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    padding: 4em 3em;
    box-shadow: none;
    max-width: 42%;
}

.content-box h2 {
    color: var(--primary-color);
    font-size: 2.25em;
    margin-bottom: 16px;
    line-height: 1.25em;
    letter-spacing: -0.05em;
}

.content-box p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.75;
}

/* Position content box flush to the side — override container max-width */
.about-parallax .container {
    max-width: 100%;
    width: 100%;
    padding: 0;
    display: flex;
}

/* Content box on right side in RTL (flex-end = left visually) → flush to left edge */
.about-parallax.right .container {
    justify-content: flex-end;
}

/* Content box on left side in RTL (flex-start = right visually) → flush to right edge */
.about-parallax.left .container {
    justify-content: flex-start;
}

.about-parallax.right .content-box,
.about-parallax.left .content-box {
    transition: transform 1s ease;
}

.about-image {
    border-radius: 12px;
    box-shadow: 0 8px 30px var(--shadow-color);
    transition: transform 0.4s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

/* ========================================
   SERVICE CARDS
======================================== */
#services {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.service-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: 16px;
    background: var(--text-light);
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-color);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: background 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--secondary-color);
    color: var(--text-light);
}

.service-card h5 {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
}

/* ========================================
   GALLERY — Slide-In from Left/Right
======================================== */
.gallery-section {
    background: #ffffff;
    padding: 6em 0;
    text-align: center;
}

.gallery-section .section-header {
    margin-bottom: 2em;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 52em;
    margin: 0 auto;
    gap: 6px;
}

.gallery-item {
    position: relative;
    width: calc(50% - 3px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

/* Odd items slide from right (RTL), even from left */
.gallery-item:nth-child(odd) {
    transform: translateX(14em);
}

.gallery-item:nth-child(even) {
    transform: translateX(-14em);
}

/* Visible state (triggered by IntersectionObserver) */
.gallery-item.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered delays */
.gallery-item:nth-child(1) { transition-delay: 0s; }
.gallery-item:nth-child(2) { transition-delay: 0.05s; }
.gallery-item:nth-child(3) { transition-delay: 0.1s; }
.gallery-item:nth-child(4) { transition-delay: 0.15s; }
.gallery-item:nth-child(5) { transition-delay: 0.2s; }
.gallery-item:nth-child(6) { transition-delay: 0.25s; }
.gallery-item:nth-child(7) { transition-delay: 0.3s; }
.gallery-item:nth-child(8) { transition-delay: 0.35s; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: var(--text-light);
    font-size: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ========================================
   LIGHTBOX
======================================== */
.lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 20000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 0;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    z-index: 20001;
}

/* ========================================
   CONTACT
======================================== */
.contact-section {
    background: #f5f6f7;
}

.contact-section h2 {
    color: var(--primary-color);
    font-size: 2.25rem;
}

.contact-form-card {
    background: var(--text-light);
    border-radius: 0.5em;
    padding: 2em;
    box-shadow: none;
}

.contact-section .form-control {
    border: 2px solid #e5e6e7;
    border-radius: 0.5em;
    padding: 0.65em 0.75em;
    font-size: 1rem;
    transition: border-color 0.2s ease-in-out;
    background: none;
}

.contact-section .form-control:focus {
    border-color: #9ac8e9;
    box-shadow: none;
}

.contact-section .form-control::placeholder {
    opacity: 0.375;
}

.contact-section .btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    border-radius: 3.5em;
    padding: 14px 48px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 8px;
}

.contact-section .btn-primary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

.contact-form-feedback {
    display: none;
    text-align: center;
    padding: 16px 20px;
    border-radius: 0.5em;
    margin-top: 16px;
    font-weight: 500;
    font-size: 1rem;
}

.contact-form-feedback.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-form-feedback.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.business-card {
    padding: 2em;
    border-radius: 0.5em;
    background: var(--text-light);
    box-shadow: none;
    text-align: center;
    border: 2px solid #e5e6e7;
}

.business-card h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.business-card p {
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.business-card p i {
    color: var(--secondary-color);
}

/* ========================================
   FREE TEXT — Dark Section
======================================== */
.free-text-section {
    background: var(--secondary-color);
    color: var(--text-light);
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.free-text-section p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   ARTICLES
======================================== */
.articles-section {
    padding: 60px 0;
    background: var(--text-light);
}

.article-card {
    display: block;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s, box-shadow 0.3s;
    background: var(--text-light);
    margin-bottom: 24px;
    padding: 28px 24px;
    text-decoration: none;
    color: var(--text-dark);
    border: 1px solid #e5e6e7;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--shadow-color);
    color: var(--text-dark);
    text-decoration: none;
}

.article-title {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.article-card:hover .article-title {
    color: var(--secondary-color);
}

.article-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.article-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #888;
}

.article-date i {
    color: var(--secondary-color);
}

.read-more {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary-color);
    transition: gap 0.3s;
}

.article-card:hover .read-more {
    gap: 10px;
}

.read-more i {
    font-size: 0.75rem;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.9;
}

.article-body pre {
    white-space: pre-wrap;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    margin: 0;
    line-height: 1.9;
}

.article-body h1, .article-body h2, .article-body h3 {
    color: var(--primary-color);
    margin-top: 24px;
    margin-bottom: 12px;
}

.article-body p {
    margin-bottom: 16px;
}

/* Article page — featured image at top + meta + readable body column */
.article-page .article-wrapper { max-width: 920px; margin: 0 auto; }
.article-featured-image {
    max-width: 720px;
    margin: 0 auto 1.75rem;
    border-radius: 16px;
    overflow: hidden;
}
.article-featured-image img.article-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    border-radius: 16px;
}
.article-page .article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    color: var(--text-dark, #333);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0 0 1.25rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.article-page .article-meta i.fas {
    color: var(--primary-color);
    font-size: 1rem;
}
.article-page .article-meta .article-meta-label {
    font-weight: 600;
}
.article-page .article-body {
    max-width: 760px;
    margin-inline: auto;
    font-size: 1.05rem;
    line-height: 1.95;
}
@media (max-width: 575px) {
    .article-page .article-body { font-size: 1rem; }
}

/* Backward compat: legacy zebra rules kept (no-op for new templates) */
.article-row { margin-inline: 0; }
.article-image-col { margin: 0; padding: 0 12px; }
.article-image-col img.article-image {
    width: 100%; height: auto;
    aspect-ratio: 4 / 3;
    max-height: 480px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
@media (max-width: 991px) {
    .article-row,
    .article-row.flex-row-reverse { flex-direction: column !important; }
    .article-image-col { margin-bottom: 1.25rem; }
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background-color: var(--secondary-dark);
    color: rgba(255, 255, 255, 0.85);
}

.footer h5 {
    color: var(--text-light);
    font-weight: 900;
    margin-bottom: 16px;
}

.footer p {
    color: rgba(255, 255, 255, 0.85);
}

.footer a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
}

.footer a:hover {
    color: #ffffff;
}

.social-link {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-link li a i {
    margin-left: 8px;
    width: 20px;
    text-align: center;
}

/* ========================================
   FLOAT CONTACT BUTTONS
======================================== */
.float-contact-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px var(--shadow-color);
    color: var(--text-light);
}

.whatsapp-btn {
    background-color: #25D366;
}

.phone-btn {
    background-color: var(--secondary-color);
}

/* ========================================
   BUTTONS GLOBAL
======================================== */
.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--text-light);
}

.btn-primary:active {
    background-color: var(--secondary-dark) !important;
    border-color: var(--secondary-dark) !important;
}

/* ========================================
   YOUTUBE (yt3 carousel)
======================================== */
.yt3 {
    --radius: 16px;
    --nav: 48px;
    --dot: #c8c8c8;
    --dot-active: var(--secondary-color);
}

.yt3 * {
    box-sizing: border-box;
}

.yt3-container {
    padding: 60px 20px;
    max-width: 820px;
    margin: 0 auto;
}

.yt3-title {
    text-align: center;
    margin: 0 0 24px;
    font: 900 2rem/1.2 'Rubik', sans-serif;
    color: var(--primary-color);
}

.yt3-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
}

.yt3-viewport {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: transparent;
    direction: ltr;
}

.yt3-track {
    display: flex;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: transform 0.4s ease;
}

.yt3-slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.yt3-media {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius);
    overflow: hidden;
    background: #111;
}

.yt3-lite {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    cursor: pointer;
    background-color: #000;
    background-size: cover;
    background-position: center;
}

.yt3-lite::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    transition: background .2s;
}

.yt3-lite:hover::before {
    background: transparent;
}

.yt3-lite::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68px;
    height: 48px;
    margin: -24px 0 0 -34px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 68 48'%3E%3Cpath d='M66.5 7.7c-.8-2.9-2.5-5.4-5.4-6.2C55.8.1 34 0 34 0S12.2.1 6.9 1.6c-3 .7-4.6 3.2-5.4 6.1C.1 13 0 24 0 24s0 11 1.5 16.3c.8 2.9 2.5 5.4 5.4 6.2C12.2 47.9 34 48 34 48s21.8-.1 27.1-1.6c3-.7 4.6-3.2 5.4-6.1C68 35 68 24 68 24s0-11-1.5-16.3z' fill='red'/%3E%3Cpath d='M45 24 27 14v20' fill='white'/%3E%3C/svg%3E") center/contain no-repeat;
}

.yt3-nav {
    width: var(--nav);
    height: var(--nav);
    border-radius: 50%;
    border: 2px solid #ddd;
    background: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
    flex-shrink: 0;
    color: var(--primary-color);
}

.yt3-nav:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 700px) {
    .yt3-shell {
        grid-template-columns: auto 1fr auto;
    }
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1280px) {
    .content-box {
        max-width: 48%;
    }
}

@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .inner-hero {
        min-height: 35vh;
    }

    .about-parallax {
        min-height: auto;
        padding: 6em 15px;
    }

    .content-box {
        max-width: 55%;
    }

    /* Mobile navbar dropdown */
    .navbar {
        background: rgba(255, 255, 255, 0.98);
    }

    .navbar .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 12px 0;
        margin: 0 -12px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .navbar .navbar-nav {
        align-items: flex-start !important;
        gap: 4px;
    }

    .navbar .nav-link {
        padding: 10px 16px;
        width: 100%;
        border-radius: 8px;
    }

    .navbar .nav-link:hover {
        background: rgba(0, 0, 0, 0.04);
    }

    .navbar .nav-item .btn {
        margin-top: 4px;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .inner-hero h1 {
        font-size: 2rem;
    }

    .content-box {
        max-width: 100%;
        padding: 1.5em 1.25em;
        background-color: rgba(255, 255, 255, 0.9);
    }

    .about-parallax.right .container,
    .about-parallax.left .container {
        justify-content: center;
    }

    .gallery-grid {
        max-width: 100%;
        gap: 4px;
    }

    .gallery-item {
        width: 100%;
    }

    .gallery-item:nth-child(odd),
    .gallery-item:nth-child(even) {
        transform: translateY(5em);
    }

    .gallery-item.visible {
        transform: translateY(0);
    }

    .business-card {
        padding: 1.5em;
    }

    .contact-form-card {
        padding: 1.5em 1em;
    }

    .section-padding {
        padding: 40px 0;
    }

    .parallax-section {
        background-attachment: scroll;
    }

    .scroll-down-arrow {
        width: 4em;
        height: 4em;
        margin-top: -2em;
    }

    .scroll-down-arrow svg {
        width: 1.2em;
        height: 1.2em;
    }

    .about-parallax .scroll-down-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .gallery-item {
        width: 100%;
    }

    .hero-buttons .btn {
        padding: 10px 24px;
        font-size: 1rem;
    }

    .scroll-down-arrow {
        display: none;
    }
}


/* FAQ Section */
.faq-section { padding: 4.5rem 1rem; background: #ffffff; color: #1a1a1a; }
.faq-section .faq-heading { font-size: 2rem; font-weight: 700; margin-bottom: 2rem; text-align: center; color: var(--primary-color, #222); }
.faq-section .faq-list { max-width: 820px; margin: 0 auto; }
.faq-section .faq-item { margin-bottom: 0.85rem; border: 1px solid #e4e7ec; border-radius: 12px; padding: 1rem 1.4rem; background: #f9fafb; transition: box-shadow .25s ease, border-color .25s ease, background .25s ease; }
.faq-section .faq-item[open] { background: #ffffff; box-shadow: 0 6px 18px rgba(0,0,0,0.08); border-color: var(--primary-color, #888); }
.faq-section .faq-q { cursor: pointer; font-weight: 600; color: #1a1a1a; font-size: 1.08rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-section .faq-q::-webkit-details-marker { display: none; }
.faq-section .faq-q::after { content: "+"; font-size: 1.6rem; font-weight: 400; line-height: 1; transition: transform .2s ease; color: var(--primary-color, #666); flex-shrink: 0; }
.faq-section .faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-section .faq-a { padding-top: 0.85rem; margin-top: 0.85rem; border-top: 1px solid #eef1f4; color: #333; line-height: 1.75; font-size: 1rem; }
@media (max-width: 600px) { .faq-section { padding: 3rem 0.75rem; } .faq-section .faq-heading { font-size: 1.6rem; } .faq-section .faq-q { font-size: 1rem; } }
