:root {
    /* Black & Gold Luxury Palette */
    --primary-color: #000200;
    /* Rich Charcoal Black */
    --primary-hover: #181d26;
    --accent-color: #d1981b;
    /* Elegant Metallic Warm Gold */
    --accent-hover: #b8860b;
    /* Dark Goldenrod */
    --gold-light: #f4e8c1;
    /* Soft Gold Tint for Badges */
    --whatsapp-color: #25d366;
    --dark-text: #1a1a1a;
    --light-text: #5a626a;
    --bg-light: #f8f8f6;
    /* Warm Soft Alabaster */
    --bg-white: #ffffff;
    --border-color: #e5e2d9;
    --card-shadow: 0 10px 30px rgba(14, 17, 23, 0.07);
    --card-shadow-hover: 0 20px 40px rgba(212, 175, 55, 0.2);

    /* Transitions & Borders */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-white);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* Typography Helpers */
h1,
h2,
h3,
h4 {
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.25;
}

h1 span,
h2 span {
    color: var(--accent-color);
}

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

.bg-light {
    background-color: var(--bg-light);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.text-gold {
    color: var(--accent-color);
}

.text-white {
    color: #ffffff !important;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(212, 175, 55, 0.12);
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.section-header p {
    color: #222528;
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

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

.btn-primary:hover {
    background-color: transparent;
    border: 2px solid #fff;
    transform: translateY(-2px);
}

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

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

.btn-glow {
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.btn-glow:hover {
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.5);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: #1eb957;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--primary-color);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    padding: 7px 0;
}

.navbar.scrolled {
    padding: 4px 0;
    box-shadow: 0 4px 20px rgba(14, 17, 23, 0.08);
    border-bottom: 2px solid var(--accent-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    width: 80px;
    height: auto;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.logo-text span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: #fff;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--accent-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(180deg, #f8f8f6 0%, #ffffff 100%) !important;
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.12);
    top: -100px;
    right: -50px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(14, 17, 23, 0.05);
    bottom: -50px;
    left: -50px;
}

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

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.hero-content h1 {
    font-size: 3.1rem;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust-badges {
    display: flex;
    gap: 25px;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-color);
}

.trust-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Hero Visual & Badges */
.visual-card-wrapper {
    position: relative;
}

.main-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

/* Hero Image Slider */
.hero-slider {
    height: 460px;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.1s ease, visibility 1.1s ease;
}

.hero-slider .slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    animation: heroKenBurns 9s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.12);
    }
}

.slider-dots {
    position: absolute;
    bottom: 22px;
    right: 25px;
    z-index: 3;
    display: flex;
    gap: 8px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dots .dot.active {
    width: 26px;
    border-radius: 4px;
    background: var(--accent-color);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(0deg, rgba(14, 17, 23, 0.92) 0%, rgba(14, 17, 23, 0) 100%);
    color: #fff;
    z-index: 2;
}

.card-overlay .tag {
    background: var(--accent-color);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
}

.card-overlay h3 {
    color: #fff;
    font-size: 1.25rem;
}

.floating-badge {
    position: absolute;
    background: #ffffff;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(14, 17, 23, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

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

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

.badge-top-right {
    top: 20px;
    right: -20px;
}

.badge-bottom-left {
    bottom: 30px;
    left: -20px;
    animation-delay: 2s;
}

.floating-badge i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.floating-badge strong {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.floating-badge small {
    color: var(--light-text);
    font-size: 0.75rem;
}

/* Metrics Strip */
.metrics-strip {
    background-color: var(--primary-color) !important;
    color: #ffffff;
    padding: 40px 0;
}

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

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

.metric-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.metric-label {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* About Section & Tabs */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

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

.img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.frame-1 img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.frame-2 {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 60%;
    border: 6px solid #fff;
}

.frame-2 img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 20px;
    left: -15px;
    background: var(--accent-color);
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.exp-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
}

.exp-sub {
    font-size: 0.75rem;
    opacity: 0.9;
}

.about-text-content h2 {
    font-size: 2.2rem;
    margin-bottom: 18px;
}

.lead-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.about-text-content p {
    color: #212426;
    margin-bottom: 25px;
}

/* Interactive Tabs */
.about-tabs {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.tab-buttons {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--light-text);
    cursor: pointer;
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.tab-panel {
    display: none;
    font-size: 0.95rem;
    color: var(--light-text);
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

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

.checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--dark-text);
}

.checklist i {
    color: var(--accent-color);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--accent-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 22px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    background: var(--accent-color);
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-card-footer {
    border-top: 1px dashed var(--border-color);
    padding-top: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
}

/* Why Choose Us */
.why-grid {
    margin-top: 50px;
}

.why-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition-smooth);
}

.why-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--card-shadow);
    transform: translateY(-5px);
}

.why-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.why-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* How It Works Steps */
.steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    gap: 20px;
}

.step-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    flex: 1;
    border: 1px solid var(--border-color);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(14, 17, 23, 0.08);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(14, 17, 23, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--light-text);
    font-size: 0.9rem;
}

.step-connector {
    font-size: 1.5rem;
    color: var(--accent-color);
    opacity: 0.6;
}

/* Contact Section */
.contact-card-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 50px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

.contact-items-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.contact-item:hover {
    background: #f0eee6;
    transform: translateY(-2px);
}

.c-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.whatsapp-bg {
    background: var(--whatsapp-color);
}

.contact-item small {
    display: block;
    color: var(--light-text);
    font-size: 0.78rem;
}

.contact-item strong {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.contact-direct-panel {
    background: linear-gradient(135deg, var(--primary-color) 0%, #181d26 100%);
    color: #ffffff;
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.panel-big-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.contact-direct-panel h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.contact-direct-panel p {
    opacity: 0.85;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.panel-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 70px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

.footer-col ul a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.footer-col ul a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    font-size: 0.85rem;
}

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

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.float-whatsapp {
    background-color: var(--whatsapp-color);
}

.float-call {
    background-color: var(--primary-color);
}

.float-btn:hover {
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 992px) {

    .hero-grid,
    .grid-2 {
        grid-template-columns: 1fr;
    }

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

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

    .steps-wrapper {
        flex-direction: column;
    }

    .step-connector {
        transform: rotate(90deg);
        margin: -10px 0;
    }

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

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

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 20px 30px;
        gap: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-btn {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .services-grid,
    .grid-4,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-card-box {
        padding: 25px;
    }
}

/* ==========================================================================
   Section Upgrades
   ========================================================================== */

/* --- Hero: diagonal sheen over main image --- */
.main-card {
    position: relative;
}

.diagonal-sheen {
    position: absolute;
    top: 0;
    left: -20%;
    width: 60%;
    height: 100%;
    background: linear-gradient(115deg, transparent 0%, rgba(212, 175, 55, 0.35) 45%, transparent 90%);
    z-index: 4;
    pointer-events: none;
    animation: sheenSweep 5s ease-in-out infinite;
}

@keyframes sheenSweep {
    0% {
        transform: translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translateX(260%);
        opacity: 0.7;
    }

    100% {
        transform: translateX(260%);
        opacity: 0;
    }
}

/* --- Metrics: ticker bar with dividers --- */
.ticker-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.ticker-divider {
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
}

.metric-num.pop {
    animation: metricPop 0.45s ease;
}

@keyframes metricPop {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.18);
        color: var(--gold-light);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .ticker-divider {
        display: none;
    }

    .ticker-row {
        gap: 25px 45px;
    }
}

/* --- About: vertical sliding tabs --- */
.about-tabs-vertical .tab-buttons-vertical {
    flex-direction: column;
    position: relative;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
    padding-left: 16px;
    gap: 6px;
}

.about-tabs-vertical .tab-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 46px;
    background: var(--accent-color);
    border-radius: 3px;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), height 0.35s ease;
}

.about-tabs-vertical .tab-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: flex-start;
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--light-text);
    padding: 10px 14px;
    text-align: left;
    width: 100%;
}

.about-tabs-vertical .tab-btn.active,
.about-tabs-vertical .tab-btn:hover {
    background: rgba(212, 175, 55, 0.08);
    color: var(--primary-color);
}

.about-tabs-vertical .tab-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: rgba(14, 17, 23, 0.08);
    transition: var(--transition-smooth);
    flex-shrink: 0;
    min-width: 32px;
}

.about-tabs-vertical .tab-btn.active .tab-num {
    color: var(--accent-color);
}

.about-tabs-vertical .tab-btn-text {
    font-size: 0.95rem;
}

/* --- Services: creative spotlight showcase grid --- */
.services-grid-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.showcase-card {
    position: relative;
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 350px;
}

.showcase-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--accent-color), transparent 45%, var(--accent-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 3;
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.showcase-card:hover::before {
    opacity: 1;
}

.showcase-media {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.showcase-card:hover .showcase-media img {
    transform: scale(1.14) rotate(1deg);
}

.showcase-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(14, 17, 23, 0.78) 0%, rgba(14, 17, 23, 0.05) 60%);
}

.showcase-index {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 2.1rem;
    font-weight: 800;
    color: rgb(213 208 208 / 62%);
    z-index: 2;
    transition: var(--transition-smooth);
}

.showcase-card:hover .showcase-index {
    color: rgba(212, 175, 55, 0.6);
    transform: scale(1.08);
}

.showcase-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), #232933);
    border: 3px solid #ffffff;
    color: var(--accent-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: -32px 24px 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(14, 17, 23, 0.2);
    transition: var(--transition-smooth);
}

.showcase-card:hover .showcase-icon {
    background: var(--accent-color);
    color: #ffffff;
    transform: rotate(-8deg) scale(1.08);
}

.showcase-body {
    padding: 18px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.showcase-body h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    transition: var(--transition-smooth);
}

.showcase-card:hover .showcase-body h3 {
    color: var(--accent-hover);
}

.showcase-body p {
    color: var(--light-text);
    font-size: 0.92rem;
    margin-bottom: 18px;
    flex: 1;
}

.showcase-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px dashed var(--border-color);
}

.showcase-tag {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-color);
}

.showcase-arrow {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.showcase-card:hover .showcase-arrow {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
    transform: translateX(4px);
}

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

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

    .showcase-icon {
        margin: -30px 20px 0;
    }
}

/* --- Why Choose Us: orbit layout --- */
.orbit-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 1 / 1;
    margin: 60px auto 0;
}

.orbit-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.orbit-line-path {
    fill: none;
    stroke: var(--border-color);
    stroke-width: 1.5;
    stroke-dasharray: 4 7;
}

.orbit-connector {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 2;
    stroke-dasharray: 340;
    stroke-dashoffset: 340;
    transition: stroke-dashoffset 1.1s ease;
}

.orbit-connector.drawn {
    stroke-dashoffset: 0;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: var(--card-shadow-hover);
    z-index: 2;
    animation: orbitPulse 3.5s ease-in-out infinite;
}

@keyframes orbitPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.35), var(--card-shadow-hover);
    }

    50% {
        box-shadow: 0 0 0 16px rgba(212, 175, 55, 0), var(--card-shadow-hover);
    }
}

.orbit-center-icon {
    font-size: 1.7rem;
    margin-bottom: 4px;
}

.orbit-center strong {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.orbit-item.why-card {
    position: absolute;
    width: 230px;
    z-index: 1;
}

.orbit-top {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.orbit-right {
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}

.orbit-bottom {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.orbit-left {
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.orbit-item.why-card:hover {
    transform-origin: center;
}

.orbit-top:hover,
.orbit-bottom:hover {
    transform: translate(-50%, 0) translateY(-5px);
}

.orbit-left:hover,
.orbit-right:hover {
    transform: translate(0, -50%) translateY(-5px);
}

@media (max-width: 992px) {
    .orbit-wrapper {
        max-width: 100%;
        aspect-ratio: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }

    .orbit-lines,
    .orbit-center {
        display: none;
    }

    .orbit-item.why-card {
        position: static;
        width: auto;
        transform: none !important;
    }
}

@media (max-width: 576px) {
    .orbit-wrapper {
        grid-template-columns: 1fr;
    }
}

/* --- How It Works: road journey --- */
.journey-wrapper {
    position: relative;
    margin-top: 55px;
    padding-top: 34px;
}

.journey-road {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 34px;
    overflow: visible;
}

.journey-path-base {
    fill: none;
    stroke: #82807c;
    stroke-width: 3;
    stroke-dasharray: 10 9;
}

.journey-path-progress {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 3;
    stroke-linecap: round;
}

.journey-vehicle {
    position: absolute;
    top: 17px;
    left: 3%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    z-index: 3;
    transition: left 0.08s linear;
}

.journey-wrapper .steps-wrapper {
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

@media (max-width: 992px) {

    .journey-road,
    .journey-vehicle {
        display: none;
    }

    .journey-wrapper {
        padding-top: 0;
    }
}

/* --- Contact: dark map background + glass panel --- */
.contact-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: var(--primary-color);
}

.contact-dark-bg {
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    z-index: 0;
    border-bottom: 2px solid var(--accent-color);
}

.map-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(212, 175, 55, 0.22) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    opacity: 0.35;
}

.map-pin {
    position: absolute;
    top: 30%;
    left: 62%;
    color: var(--accent-color);
    font-size: 2.2rem;
    filter: drop-shadow(0 10px 15px rgba(212, 175, 55, 0.45));
    animation: pinFloat 2.6s ease-in-out infinite;
    display: none;
}

@keyframes pinFloat {

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

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

@media (min-width: 993px) {
    .map-pin {
        display: block;
    }
}

.contact-glass-box {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.contact-glass-box .section-header,
.contact-glass-box p {
    color: rgba(255, 255, 255, 0.75);
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.contact-glass-box .contact-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-glass-box .contact-item:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--accent-color);
}

.contact-glass-box .contact-item small {
    color: rgba(255, 255, 255, 0.55);
}

.contact-glass-box .contact-item strong {
    color: #ffffff;
}

/* --- Footer: watermark + social icons --- */
.footer {
    position: relative;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8.5rem;
    font-weight: 800;
    letter-spacing: 12px;
    color: rgb(255 255 255 / 7%);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-4px) scale(1.06);
}

@media (max-width: 768px) {
    .footer-watermark {
        font-size: 4rem;
    }
}

.footer-bottom a:hover {
    color: var(--accent-color) !important;
}

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

/* ==========================================================================
   Inner Pages — Shared Page Banner
   ========================================================================== */

.page-banner {
    position: relative;
    padding: 150px 0 70px;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Dark overlay فوق الصورة */
.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(14, 17, 23, 0.88) 0%,
            rgba(24, 29, 38, 0.75) 55%,
            rgba(14, 17, 23, 0.9) 100%);
    z-index: 0;
}

.page-banner .map-dots {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    z-index: 2;
    pointer-events: none;
}

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

.page-crumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.75);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 22px;
}

.page-crumb a {
    color: rgba(255, 255, 255, 0.75);
}

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

.page-crumb i {
    font-size: 0.65rem;
    color: var(--accent-color);
}

.page-banner h1 {
    color: #ffffff;
    font-size: 2.85rem;
    margin-bottom: 14px;
}

.page-banner p {
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.page-banner-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.14);
    filter: blur(90px);
    top: -120px;
    right: 8%;
    z-index: 1;
}

@media (max-width: 768px) {
    .page-banner {
        padding: 130px 0 55px;
        background-position: center;
    }

    .page-banner h1 {
        font-size: 2.1rem;
    }
}



/* ==========================================================================
   About Page â€” Mission & Vision Split Cards
   ========================================================================== */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 10px;
}

.mv-card {
    position: relative;
    padding: 44px 38px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.mv-card-dark {
    background: linear-gradient(150deg, var(--primary-color) 0%, #181d26 100%);
    color: #fff;
}

.mv-card-light {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

.mv-card:hover {
    transform: translateY(-6px);
}

.mv-card-glyph {
    position: absolute;
    top: -18px;
    right: 4px;
    font-size: 7.5rem;
    font-weight: 800;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.mv-card-dark .mv-card-glyph {
    color: rgba(255, 255, 255, 0.05);
}

.mv-card-light .mv-card-glyph {
    color: rgba(14, 17, 23, 0.045);
}

.mv-icon {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 22px;
}

.mv-card-dark .mv-icon {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-color);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.mv-card-light .mv-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
}

.mv-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.mv-card-dark h3 {
    color: #fff;
}

.mv-card p {
    position: relative;
    z-index: 1;
    font-size: 0.98rem;
}

.mv-card-dark p {
    color: rgba(255, 255, 255, 0.68);
}

.mv-card-light p {
    color: var(--light-text);
}

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

/* ==========================================================================
   About Page Core Values Grid
   ========================================================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 50px;
}

.value-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px 26px;
    transition: var(--transition-smooth);
    border-left: 3px solid transparent;
}

.value-card:hover {
    border-left-color: var(--accent-color);
    box-shadow: var(--card-shadow);
    transform: translateX(4px);
}

.value-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.value-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    background: var(--accent-color);
    color: #fff;
}

.value-num {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--light-text);
    opacity: 0.6;
}

.value-card h4 {
    font-size: 1.08rem;
    margin-bottom: 8px;
}

.value-card p {
    color: var(--light-text);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   About Page  Trust Snapshots
   ========================================================================== */
.trust-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.trust-text .section-tag {
    margin-bottom: 12px;
}

.trust-text h2 {
    font-size: 2.1rem;
    margin-bottom: 18px;
}

.trust-text p {
    color: var(--light-text);
    margin-bottom: 26px;
}

.trust-stat-row {
    display: flex;
    gap: 34px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.trust-stat b {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary-color);
}

.trust-stat b span {
    color: var(--accent-color);
}

.trust-stat small {
    color: var(--light-text);
    font-size: 0.82rem;
}

.trust-snapshots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.snap-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 190px;
    box-shadow: var(--card-shadow);
}

.snap-card.tall {
    height: 400px;
    grid-row: span 2;
}

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

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

.snap-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    background: linear-gradient(0deg, rgba(14, 17, 23, 0.88) 0%, rgba(14, 17, 23, 0) 100%);
    color: #fff;
}

.snap-caption i {
    color: var(--accent-color);
    margin-right: 6px;
}

.snap-caption span {
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 992px) {
    .trust-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .trust-snapshots {
        grid-template-columns: 1fr;
    }

    .snap-card.tall {
        height: 190px;
        grid-row: auto;
    }

    .trust-stat-row {
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* ==========================================================================
   Services Page Detail Rows
   ========================================================================== */
.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 70px 0;
    border-bottom: 1px solid var(--border-color);
    scroll-margin-top: 100px;
}

.service-detail-row:last-child {
    border-bottom: none;
}

.service-detail-row.reverse .service-detail-media {
    order: 2;
}

.service-detail-media {
    position: relative;
}

.sd-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    height: 360px;
}

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

.sd-index-badge {
    position: absolute;
    bottom: -22px;
    left: 28px;
    background: var(--primary-color);
    color: var(--accent-color);
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    border: 4px solid #fff;
    box-shadow: 0 10px 24px rgba(14, 17, 23, 0.25);
}

.service-detail-body .section-tag {
    margin-bottom: 14px;
}

.service-detail-body h3 {
    font-size: 1.9rem;
    margin-bottom: 16px;
}

.service-detail-body p {
    color: var(--light-text);
    margin-bottom: 22px;
}

.sd-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin-bottom: 28px;
}

.sd-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--dark-text);
    font-weight: 500;
}

.sd-points i {
    color: var(--accent-color);
    margin-top: 3px;
}

@media (max-width: 992px) {

    .service-detail-row,
    .service-detail-row.reverse .service-detail-media {
        grid-template-columns: 1fr;
        order: 0;
    }

    .service-detail-row {
        gap: 45px;
        padding: 50px 0;
    }

    .sd-points {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Services Page Assurance Bar
   ========================================================================== */
.assurance-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 50px;
    box-shadow: var(--card-shadow);
}

.assurance-item {
    background: #ffffff;
    padding: 34px 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.assurance-item:hover {
    background: var(--primary-color);
}

.assurance-item i {
    font-size: 1.7rem;
    color: var(--accent-color);
    margin-bottom: 14px;
    display: block;
}

.assurance-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.assurance-item:hover h4,
.assurance-item:hover p {
    color: #fff;
}

.assurance-item p {
    color: var(--light-text);
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

@media (max-width: 992px) {
    .assurance-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .assurance-bar {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Contact Page â€” Info Cards Row
   ========================================================================== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 10px;
}

.contact-info-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    text-align: center;
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--accent-color);
}

.cic-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.contact-info-card.cic-whatsapp .cic-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--whatsapp-color));
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-info-card p {
    color: var(--light-text);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.contact-info-card a.cic-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-color);
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Contact Page Map + Hours Panel
   ========================================================================== */
.map-panel-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.map-embed-wrap {
    position: relative;
    min-height: 460px;
}

.map-embed-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 460px;
    border: 0;
    display: block;
    filter: grayscale(0.35) contrast(1.05);
}

.hours-panel {
    background: linear-gradient(150deg, var(--primary-color) 0%, #181d26 100%);
    color: #fff;
    padding: 44px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hours-panel .section-tag {
    margin-bottom: 12px;
}

.hours-panel h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.hours-list {
    margin-bottom: 26px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.hours-list li strong {
    color: #fff;
    font-weight: 600;
}

.hours-list li.hours-highlight strong,
.hours-list li.hours-highlight span {
    color: var(--accent-color);
}

.hours-panel .service-area {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.hours-panel .service-area i {
    color: var(--accent-color);
}

@media (max-width: 992px) {
    .map-panel-grid {
        grid-template-columns: 1fr;
    }

    .map-embed-wrap,
    .map-embed-wrap iframe {
        min-height: 320px;
    }
}


/* ==========================================================================
   Single Service Detail Page
   ========================================================================== */
.sdp-layout {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 60px;
    align-items: start;
}

.sdp-hero-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    height: 420px;
    margin-bottom: 40px;
}

.sdp-hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sdp-hero-frame .card-overlay .tag {
    background: var(--primary-color);
}

.sdp-intro {
    margin-bottom: 40px;
}

.sdp-intro .lead-text {
    font-size: 1.15rem;
    color: var(--dark-text);
    font-weight: 500;
    margin-bottom: 16px;
}

.sdp-intro p {
    color: var(--light-text);
}

.sdp-block {
    margin-bottom: 50px;
}

.sdp-block:last-child {
    margin-bottom: 0;
}

.sdp-block-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.sdp-block-title i {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: rgba(212, 175, 55, 0.12);
    color: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.sdp-block-title h2 {
    font-size: 1.55rem;
}

.sdp-block .sd-points {
    margin-bottom: 0;
}

.sdp-block .steps-wrapper {
    margin-top: 0;
}

/* Sticky Sidebar */
.sdp-sidebar {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sdp-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--card-shadow);
}

.sdp-card h4 {
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.sdp-quickfacts li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-color);
    font-size: 0.88rem;
}

.sdp-quickfacts li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sdp-quickfacts li span {
    color: var(--light-text);
}

.sdp-quickfacts li strong {
    color: var(--primary-color);
    text-align: right;
}

.sdp-related-list li {
    border-bottom: 1px solid var(--border-color);
}

.sdp-related-list li:last-child {
    border-bottom: none;
}

.sdp-related-list a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--dark-text);
}

.sdp-related-list a i:first-child {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: var(--bg-light);
    color: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.sdp-related-list a i:last-child {
    margin-left: auto;
    color: var(--light-text);
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.sdp-related-list a:hover {
    color: var(--accent-color);
}

.sdp-related-list a:hover i:first-child {
    background: var(--accent-color);
    color: #fff;
}

.sdp-related-list a:hover i:last-child {
    transform: translateX(4px);
    color: var(--accent-color);
}



@media (max-width: 992px) {
    .sdp-layout {
        grid-template-columns: 1fr;
    }

    .sdp-sidebar {
        position: static;
    }

    .sdp-hero-frame {
        height: 280px;
    }
}

/* ==========================================================================
   Contact Page — Contact Form Panel
   ========================================================================== */
.contact-form-panel {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 38px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.contact-form-panel .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form-panel .form-group {
    margin-bottom: 18px;
}

.contact-form-panel label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-form-panel .required {
    color: var(--accent-color);
}

.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    color: var(--dark-text);
    background: var(--bg-light);
    transition: var(--transition-smooth);
}

.contact-form-panel select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a626a' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 42px;
}

.contact-form-panel textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form-panel input:focus,
.contact-form-panel select:focus,
.contact-form-panel textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.contact-form-panel input.field-error,
.contact-form-panel select.field-error,
.contact-form-panel textarea.field-error {
    border-color: #d64545;
}

.contact-form-panel .form-note {
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--light-text);
    text-align: center;
}

.contact-form-panel .form-note a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-form-panel .form-note.success {
    color: #1a8f4c;
    font-weight: 600;
}

@media (max-width: 576px) {
    .contact-form-panel {
        padding: 28px 22px;
    }

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

body {
    background-color: var(--bg-white);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/logo.png") center center no-repeat;
    background-size: 33%;
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

section {
    background: transparent !important;
}

.orbit-center img {
    width: 80px;
}

@media (max-width: 768px) {
    .nav-links a {
        color: #000;
    }
}