/**
 * Dar Al Feyha Movers - Global Design System & Stylesheet
 * Brand colors: Primary Blue, Accent Yellow, Dark Neutral, Light Gray, Success, Danger
 */

/* ==========================================================================
   1. CORE VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
    /* Color Palette */
    --primary: #2563EB;
    --primary-hover: #1d4ed8;
    --secondary: #FFC107;
    --secondary-hover: #e0a800;
    --dark: #111827;
    --light: #F8FAFC;
    --text: #374151;
    --border: #E5E7EB;
    --success: #22C55E;
    --danger: #EF4444;
    --white: #ffffff;
    --grey-light: #F1F5F9;
    --grey-medium: #9CA3AF;

    /* Layout Tokens */
    --radius: 16px;
    --radius-lg: 18px;
    --radius-sm: 8px;
    --shadow: 0 20px 60px rgba(0, 0, 0, .08);
    --shadow-sm: 0 4px 12px rgba(17, 24, 39, 0.04);
    --shadow-hover: 0 30px 80px rgba(17, 24, 39, 0.12);
    
    /* Animation Constants */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease-in-out;
}

/* ==========================================================================
   2. TYPOGRAPHY SYSTEM (Poppins & Inter)
   ========================================================================== */
body {
    font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

h1 { font-size: 64px; }
h2 { font-size: 48px; }
h3 { font-size: 36px; }
h4 { font-size: 28px; }
p { font-size: 18px; color: var(--text); }
.small-text { font-size: 16px; }

/* Responsive Typography */
@media (max-width: 1199.98px) {
    h1 { font-size: 48px; }
    h2 { font-size: 38px; }
    h3 { font-size: 30px; }
}
@media (max-width: 767.98px) {
    h1 { font-size: 36px; }
    h2 { font-size: 30px; }
    h3 { font-size: 26px; }
    p { font-size: 16px; }
}

/* ==========================================================================
   3. SPACING & GRID SYSTEM
   ========================================================================== */
.container-xl {
    max-width: 1320px !important;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-small {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-large {
    padding-top: 140px;
    padding-bottom: 140px;
}

/* Margin and Padding Helper Utilities */
.mt-custom { margin-top: 40px; }
.mb-custom { margin-bottom: 40px; }
.py-custom { padding-top: 40px; padding-bottom: 40px; }

@media (max-width: 767.98px) {
    .section-padding { padding-top: 60px; padding-bottom: 60px; }
    .section-large { padding-top: 80px; padding-bottom: 80px; }
}

/* ==========================================================================
   4. BUTTON SYSTEM
   ========================================================================== */
.btn-global {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50rem;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

/* Primary Button (Blue) */
.btn-primary-blue {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.25);
}
.btn-primary-blue:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.35);
}

/* Secondary Button (White Outline) */
.btn-secondary-white {
    background-color: var(--white);
    color: var(--dark);
    border-color: var(--border);
}
.btn-secondary-white:hover {
    background-color: var(--grey-light);
    color: var(--dark);
    transform: translateY(-2px);
}

/* CTA Button (Yellow Accent) */
.btn-accent-yellow {
    background-color: var(--secondary);
    color: var(--dark);
    box-shadow: 0 4px 14px 0 rgba(255, 193, 7, 0.25);
}
.btn-accent-yellow:hover {
    background-color: var(--secondary-hover);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(255, 193, 7, 0.35);
}

/* Small Button Variant */
.btn-small-custom {
    height: 44px;
    padding: 0 20px;
    font-size: 15px;
}

/* Icon Button Helper */
.btn-icon-custom i {
    font-size: 1.2rem;
    transition: var(--transition-fast);
}
.btn-icon-custom:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   5. CARD SYSTEM (16px Radius, Hover Lift, Soft Shadows)
   ========================================================================== */
.card-global {
    background-color: var(--white);
    border-radius: var(--radius);
    border: none;
    box-shadow: var(--shadow);
    transition: var(--transition-smooth);
    padding: 30px;
    height: 100%;
}

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

/* Service Card Variant */
.card-service {
    border-bottom: 4px solid transparent;
}
.card-service:hover {
    border-color: var(--primary);
}

/* Testimonial Card Variant */
.card-testimonial {
    position: relative;
    border-left: 4px solid var(--secondary);
}

/* Feature/Why Us Card */
.card-feature {
    background-color: var(--white);
    border: 1px solid var(--grey-light);
}

/* Blog Card Variant */
.card-blog {
    padding: 0;
    overflow: hidden;
}
.card-blog-body {
    padding: 24px;
}

/* Statistic Card */
.card-stat {
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Gallery Card */
.card-gallery {
    padding: 0;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.card-gallery-img {
    transition: var(--transition-smooth);
}
.card-gallery:hover .card-gallery-img {
    transform: scale(1.08);
}

/* ==========================================================================
   6. FORM CONTROL STYLES (Focus, Validation, Errors)
   ========================================================================== */
.form-input-custom {
    height: 52px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    padding: 10px 16px;
    font-size: 16px;
    color: var(--dark);
    background-color: var(--white);
    transition: var(--transition-smooth);
}

.form-input-custom:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-textarea-custom {
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    padding: 12px 16px;
    font-size: 16px;
    color: var(--dark);
    background-color: var(--white);
    transition: var(--transition-smooth);
    min-height: 120px;
}

.form-textarea-custom:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Checkbox & Radio styling */
.form-check-input-custom {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid var(--border);
    margin-top: 0.2rem;
    transition: var(--transition-fast);
}

.form-check-input-custom:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Validation states */
.form-input-custom.is-invalid {
    border-color: var(--danger) !important;
    background-image: none !important;
}
.form-input-custom.is-invalid:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

/* ==========================================================================
   7. ACCESSIBILITY & UTILITIES
   ========================================================================== */
/* Keyboard focus accessibility outline */
a:focus-visible, button:focus-visible {
    outline: 3px solid var(--primary) !important;
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ==========================================================================
   8. IMAGE & MEDIA CONTAINERS
   ========================================================================== */
.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-hero-container {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.img-rounded-custom {
    border-radius: var(--radius);
}

/* ==========================================================================
   9. ANIMATION SYSTEM
   ========================================================================== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.animate-fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.animate-fade-left.active {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.animate-fade-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Floating Animation Utility */
.animate-float {
    animation: floatAnimation 3s ease-in-out infinite;
}
@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Timeline arrow bounce animation */
.animate-bounce-right {
    animation: bounceRight 1.5s infinite;
}
@keyframes bounceRight {
    0%, 100% { transform: translate(0, -50%); }
    50% { transform: translate(6px, -50%); }
}

/* ==========================================================================
   10. HOMEPAGE HERO SECTION SPECIFICATIONS
   ========================================================================== */
.hero-section {
    min-height: 700px;
    margin-top: 70px;
    padding-bottom: 100px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(37, 99, 235, 0.02) 100%);
    position: relative;
}

.hero-container {
    max-width: 1320px !important;
}

/* Left Column (50%) */
.hero-left {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
}

.hero-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 68px;
    font-weight: 800;
    line-height: 1.1;
    color: #111827;
    letter-spacing: -0.03em;
}

.text-primary-blue-custom {
    color: #2563EB;
}

.hero-paragraph {
    font-size: 20px;
    line-height: 1.5;
    color: #6B7280 !important;
    max-width: 600px;
}

/* Hero CTA Buttons */
.btn-hero-primary {
    background-color: #2563EB;
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    height: 56px;
    padding: 0 28px;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.2);
    transition: var(--transition-smooth);
}

.btn-hero-primary:hover {
    background-color: var(--secondary);
    color: var(--dark);
    box-shadow: 0 6px 20px 0 rgba(255, 193, 7, 0.3);
}

.btn-hero-secondary {
    background-color: var(--white);
    color: #4B5563;
    border: 1px solid #D1D5DB;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    height: 56px;
    padding: 0 28px;
    transition: var(--transition-smooth);
}

.btn-hero-secondary:hover {
    background-color: var(--grey-light);
    border-color: var(--grey-medium);
    color: var(--dark);
}

/* Right Column (50%) */
.hero-right {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
}

.hero-right-inner {
    position: relative;
    border-radius: 20px;
    background-color: #e2e8f0;
}

.hero-truck-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(17, 24, 39, 0.2) 100%);
    width: 100%;
    height: 100%;
    transition: transform 8s ease-in-out;
}

.hero-right-inner:hover .hero-truck-image {
    transform: scale(1.05);
}

/* Floating Quote Card */
.floating-quote-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 420px;
    background-color: var(--white);
    border-radius: 18px !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08) !important;
    z-index: 10;
    animation: floatAnimation 4s ease-in-out infinite;
}

.btn-primary-blue-submit {
    background-color: #2563EB;
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition-smooth);
}

.btn-primary-blue-submit:hover {
    background-color: var(--primary-blue-hover);
    color: var(--white);
}

/* Responsive Viewports for Hero */
@media (max-width: 1200px) {
    .hero-heading {
        font-size: 52px;
    }
    .hero-paragraph {
        font-size: 18px;
    }
    .floating-quote-card {
        width: 380px;
        left: 20px;
        bottom: 20px;
    }
}

@media (max-width: 991.98px) {
    /* Tablet & Smaller Layout (Stack with image below text) */
    .hero-section {
        height: auto;
        min-height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .hero-left, .hero-right {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
    .hero-heading {
        font-size: 46px;
        text-align: center;
    }
    .hero-paragraph {
        font-size: 18px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-left .d-flex {
        justify-content: center;
    }
    .hero-left .d-inline-flex {
        display: flex !important;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }
    .hero-right-inner {
        height: 500px !important;
    }
    .floating-quote-card {
        position: relative !important;
        left: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        margin-top: 30px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.05) !important;
        animation: none;
    }
}

@media (max-width: 575.98px) {
    /* Mobile Layout (Text -> Buttons -> Quote Form -> Image) */
    .hero-heading {
        font-size: 34px;
    }
    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
    }
    .hero-left .d-flex.flex-row {
        flex-direction: column !important;
        width: 100%;
    }
    .hero-right-inner {
        order: 4; /* Pushes image to bottom */
        height: 350px !important;
    }
    .floating-quote-card {
        order: 3; /* Quote form above image */
    }
}

/* ==========================================================================
   11. HOMEPAGE SERVICES SECTION SPECIFICATIONS
   ========================================================================== */
.services-section {
    padding: 80px 0;
}

.services-container {
    max-width: 1320px !important;
}

.service-item-card {
    border-radius: 18px !important;
    padding: 35px !important;
    border: 1px solid #E5E7EB !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-icon-circle {
    width: 65px;
    height: 65px;
    transition: transform 300ms ease, background-color 300ms ease;
}

/* Hover lift and shadow expansion */
.service-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08) !important;
    border-color: rgba(37, 99, 235, 0.15) !important;
}

/* Icon rotate micro-interaction */
.service-item-card:hover .service-icon-circle {
    transform: rotate(12deg) scale(1.05);
}

/* Learn more slide arrow animation */
.btn-card-learn-more {
    color: #2563EB;
    font-weight: 600;
    font-size: 16px;
    transition: color 300ms ease;
}

.btn-card-learn-more i {
    transition: transform 300ms ease;
}

.btn-card-learn-more:hover {
    color: var(--primary-hover);
}

.btn-card-learn-more:hover i {
    transform: translateX(6px);
}

/* Bottom CTA button with yellow hover state */
.btn-services-view-all {
    background-color: #2563EB;
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    border-radius: 50rem;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: var(--transition-smooth);
}

.btn-services-view-all:hover {
    background-color: #FFC107;
    color: #111827;
    box-shadow: 0 6px 20px 0 rgba(255, 193, 7, 0.3);
}

/* ==========================================================================
   12. HOMEPAGE WHY CHOOSE US SECTION SPECIFICATIONS
   ========================================================================== */
.why-section {
    padding: 120px 0;
    background-color: #F8FAFC !important;
}

.why-container {
    max-width: 1320px !important;
}

/* Left Column: Image wrapper & floating badge */
.movers-image-wrapper {
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.movers-img-elem {
    transition: transform 6s ease-in-out;
}

.movers-image-wrapper:hover .movers-img-elem {
    transform: scale(1.04);
}

.experience-badge {
    background-color: #2563EB !important;
    z-index: 5;
    border-radius: 16px !important;
    min-width: 200px;
}

/* Right Column: Feature boxes */
.feature-box-card {
    border-radius: 16px !important;
    padding: 20px !important;
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
    transition: all 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-icon-circle-sm {
    background-color: #2563EB !important;
    transition: transform 300ms ease;
}

/* Hover lift on feature cards */
.feature-box-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.08) !important;
}

.feature-box-card:hover .feature-icon-circle-sm {
    transform: scale(1.1);
}

/* Responsive Viewports */
@media (max-width: 991.98px) {
    .why-section {
        padding: 80px 0;
    }
    .movers-image-wrapper {
        height: 450px !important;
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .why-section {
        padding: 60px 0;
    }
    .movers-image-wrapper {
        height: 320px !important;
    }
    .experience-badge {
        padding: 15px !important;
        m-3: 15px !important;
    }
    .experience-badge .display-5 {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   13. HOMEPAGE MOVING PROCESS SECTION SPECIFICATIONS
   ========================================================================== */
.process-section {
    padding: 120px 0;
    background-color: var(--white) !important;
}

.process-container {
    max-width: 1320px !important;
}

/* Step Card Styles */
.process-step-card {
    border-radius: 18px !important;
    padding: 35px 25px !important;
    border: 1px solid #E5E7EB !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    position: relative;
    z-index: 2;
    transition: all 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.step-badge {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    color: rgba(37, 99, 235, 0.15); /* Light Blue */
    user-select: none;
}

.step-badge.text-warning-badge {
    color: rgba(255, 193, 7, 0.25); /* Light Yellow */
}

.step-icon-circle {
    width: 60px;
    height: 60px;
    transition: transform 300ms ease;
}

/* Hover transitions */
.process-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08) !important;
    border-color: rgba(37, 99, 235, 0.15) !important;
}

.process-step-card:hover .step-icon-circle {
    transform: rotate(10deg);
}

/* Horizontal Timeline Line for Desktop (min-width: 1200px) */
@media (min-width: 1200px) {
    .timeline-row {
        position: relative;
    }
    .timeline-row::after {
        content: '';
        position: absolute;
        top: 96px; /* Centered with the icon circles */
        left: 12.5%;
        right: 12.5%;
        height: 3px;
        background: repeating-linear-gradient(90deg, #E5E7EB, #E5E7EB 10px, transparent 10px, transparent 20px);
        z-index: 1;
    }
}

/* Tablet & Mobile Overrides */
@media (max-width: 1199.98px) {
    .timeline-step-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767.98px) {
    .process-section {
        padding: 80px 0;
    }
    .timeline-step-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .process-section {
        padding: 60px 0;
    }
}

/* ==========================================================================
   14. HOMEPAGE STATISTICS SECTION SPECIFICATIONS
   ========================================================================== */
.stats-section {
    padding: 60px 0 100px 0;
    background-color: var(--white) !important;
}

/* Glassmorphic Stat Item Card */
.stat-item-card {
    background: rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 20px !important;
    padding: 35px 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    transition: all 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.stat-icon {
    transition: transform 300ms ease;
}

/* Hover lift and scale effects */
.stat-item-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.stat-item-card:hover .stat-icon {
    transform: scale(1.1);
}

/* Trust Pill Badges */
.trust-pill {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--white) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* ==========================================================================
   15. HOMEPAGE CUSTOMER TESTIMONIALS SECTION SPECIFICATIONS
   ========================================================================== */
.testimonials-section {
    padding: 120px 0;
    background-color: var(--white) !important;
}

.testimonial-item-card {
    border-radius: 20px !important;
    padding: 35px !important;
    border: 1px solid #E5E7EB !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    transition: all 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover lift and rotation effect on quotes */
.testimonial-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.06) !important;
    border-color: rgba(37, 99, 235, 0.1) !important;
}

.testimonial-item-card:hover .bi-quote {
    transform: rotate(-10deg) scale(1.1);
    transition: transform 300ms ease;
}

/* Video Testimonial Placeholder Styling */
.video-testimonial-placeholder {
    background-color: #FAFBFC !important;
    border: 2px dashed #D1D5DB !important;
    border-radius: 16px !important;
    transition: var(--transition-smooth);
}

.video-testimonial-placeholder:hover {
    border-color: #2563EB !important;
    background-color: #F3F4F6 !important;
}

.play-icon-circle {
    transition: transform 300ms ease, background-color 300ms ease;
}

.video-testimonial-placeholder:hover .play-icon-circle {
    transform: scale(1.1);
    background-color: #2563EB !important;
    color: var(--white) !important;
}

/* Mobile Swiper indicator fixes */
.carousel-item {
    transition: transform 0.5s ease-in-out;
}

/* ==========================================================================
   16. HOMEPAGE GALLERY PREVIEW SECTION SPECIFICATIONS
   ========================================================================== */
.gallery-preview-section {
    padding: 120px 0;
    background-color: #F8FAFC !important; /* Very Light Gray */
}

.gallery-preview-container {
    max-width: 1320px !important;
}

.gallery-item-card {
    border-radius: 18px !important;
    border: 1px solid #E5E7EB !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    transition: all 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-img {
    transition: transform 5s ease;
}

/* Hover lift and zoom effects */
.gallery-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
    border-color: rgba(37, 99, 235, 0.1) !important;
}

.gallery-item-card:hover .gallery-img {
    transform: scale(1.06);
}

/* Overlay gradient inside image container */
.gallery-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ==========================================================================
   17. HOMEPAGE BLOG PREVIEW SECTION SPECIFICATIONS
   ========================================================================== */
.blog-preview-section {
    padding: 120px 0;
    background-color: var(--white) !important;
}

.blog-preview-container {
    max-width: 1320px !important;
}

.blog-item-card {
    border-radius: 18px !important;
    border: 1px solid #E5E7EB !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    transition: all 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.blog-img {
    transition: transform 5s ease;
}

/* Hover lift and zoom effects */
.blog-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.06) !important;
    border-color: rgba(37, 99, 235, 0.1) !important;
}

.blog-item-card:hover .blog-img {
    transform: scale(1.06);
}

/* Read more arrow slide transition */
.btn-blog-read-more {
    color: #2563EB;
    font-size: 16px;
    transition: color 300ms ease;
}

.btn-blog-read-more i {
    transition: transform 300ms ease;
}

.btn-blog-read-more:hover {
    color: var(--primary-hover);
}

.btn-blog-read-more:hover i {
    transform: translateX(6px);
}

/* Responsive Viewports */
@media (max-width: 991.98px) {
    .blog-preview-section {
        padding: 80px 0;
    }
}

@media (max-width: 575.98px) {
    .blog-preview-section {
        padding: 60px 0;
    }
}

/* ==========================================================================
   18. HOMEPAGE FAQ PREVIEW SECTION SPECIFICATIONS
   ========================================================================== */
.faq-preview-section {
    padding: 120px 0;
    background-color: #F8FAFC !important; /* Light Gray */
}

.faq-preview-container {
    max-width: 1320px !important;
}

.support-rep-wrapper {
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.support-rep-img {
    transition: transform 5s ease;
}

.support-rep-wrapper:hover .support-rep-img {
    transform: scale(1.04);
}

.support-badge-card {
    border-radius: 20px !important;
}

/* Custom Accordion Styling */
.faq-accordion-item {
    border-color: #E5E7EB !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01) !important;
    background-color: var(--white) !important;
    overflow: hidden;
}

.faq-accordion-item .accordion-button {
    font-size: 16px;
    font-weight: 700 !important;
    color: #1F2937 !important;
    transition: background-color 300ms ease, color 300ms ease;
    border-radius: 0 !important;
}

.faq-accordion-item .accordion-button:not(.collapsed) {
    background-color: rgba(37, 99, 235, 0.04) !important;
    color: #2563EB !important;
    box-shadow: none !important;
}

.faq-accordion-item .accordion-button:focus {
    box-shadow: none !important;
}

/* ==========================================================================
   19. HOMEPAGE FINAL CTA BANNER SECTION SPECIFICATIONS
   ========================================================================== */
.cta-banner-section {
    padding: 60px 0 120px 0;
    background-color: var(--white) !important;
}

.cta-gradient-card {
    border-radius: 28px !important;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15) !important;
}

.cta-image-wrapper {
    border-radius: 20px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cta-family-img {
    transition: transform 6s ease-in-out;
}

.cta-image-wrapper:hover .cta-family-img {
    transform: scale(1.05);
}

.cta-rating-glass-badge {
    border-radius: 16px !important;
    z-index: 5;
}

/* Responsive Viewports */
@media (max-width: 991.98px) {
    .cta-banner-section {
        padding: 60px 0 80px 0;
    }
    .cta-gradient-card {
        padding: 50px 30px !important;
    }
    .cta-image-wrapper {
        height: 300px !important;
        margin-top: 30px;
    }
}

@media (max-width: 575.98px) {
    .cta-banner-section {
        padding: 40px 0 60px 0;
    }
    .cta-gradient-card {
        padding: 40px 20px !important;
        border-radius: 20px !important;
    }
    .cta-image-wrapper {
        height: 250px !important;
    }
    .cta-gradient-card .btn {
        width: 100% !important;
    }
}

/* ==========================================================================
   20. PREMIUM WEBSITE FOOTER SPECIFICATIONS
   ========================================================================== */
.bg-dark-navy {
    background-color: #0F172A !important;
}

.text-light-gray {
    color: #9CA3AF !important;
}

/* Footer Link transitions */
.footer-links-list a.transition-link,
.footer-bottom-links a.transition-link {
    color: #9CA3AF !important;
    position: relative;
    transition: color 300ms ease;
}

.footer-links-list a.transition-link:hover,
.footer-bottom-links a.transition-link:hover {
    color: var(--white) !important;
}

.footer-links-list a.transition-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--white);
    transition: width 300ms ease;
}

.footer-links-list a.transition-link:hover::after {
    width: 100%;
}

/* Social Icon Boxes */
.social-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.05);
    color: #9CA3AF !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 300ms ease;
}

.social-icon-box:hover {
    transform: translateY(-3px);
    color: var(--white) !important;
}

/* Brand Colors hover triggers */
.social-icon-box.fb-hover:hover {
    background-color: #1877F2 !important;
    border-color: #1877F2 !important;
}

.social-icon-box.ig-hover:hover {
    background-color: #E4405F !important;
    border-color: #E4405F !important;
}

.social-icon-box.li-hover:hover {
    background-color: #0A66C2 !important;
    border-color: #0A66C2 !important;
}

.social-icon-box.yt-hover:hover {
    background-color: #FF0000 !important;
    border-color: #FF0000 !important;
}

.social-icon-box.wa-hover:hover {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
}

/* Footer layout padding */
.footer {
    padding-top: 90px !important;
    padding-bottom: 40px !important;
}

/* ==========================================================================
   21. RESPONSIVE MOBILE AND TABLET BUG FIX SPECIFICATIONS
   ========================================================================== */

/* Overlap & Interaction Controls */
.decor-dots, .decor-shape {
    z-index: 1 !important;
    pointer-events: none !important;
}

@media (max-width: 767.98px) {
    .decor-dots, .decor-shape {
        display: none !important;
    }
}

/* Responsive Typography Hooks (clamp) */
.hero-heading {
    font-size: clamp(36px, 6vw, 68px) !important;
}

h2.display-5, h2.display-6, .cta-banner-section h2 {
    font-size: clamp(28px, 4vw, 48px) !important;
}

.hero-paragraph, 
.services-section p, 
.why-section p, 
.process-section p, 
.stats-section p, 
.testimonials-section p, 
.gallery-preview-section p, 
.blog-preview-section p, 
.faq-preview-section p, 
.cta-banner-section p {
    font-size: clamp(15px, 1.5vw, 18px) !important;
}

/* Consistent Section Spacing (clamp) */
.services-section, 
.why-section, 
.process-section, 
.stats-section, 
.testimonials-section, 
.gallery-preview-section, 
.blog-preview-section, 
.faq-preview-section, 
.cta-banner-section {
    padding-top: clamp(60px, 8vw, 120px) !important;
    padding-bottom: clamp(60px, 8vw, 120px) !important;
}

/* Prevent Button Text Wrapping */
.btn-hero-primary, 
.btn-hero-secondary, 
.btn-services-view-all, 
.btn-outline-primary, 
.btn-success {
    white-space: nowrap !important;
}

@media (max-width: 575.98px) {
    .btn-hero-primary, 
    .btn-hero-secondary, 
    .btn-services-view-all, 
    .btn-outline-primary, 
    .btn-success {
        padding-left: 12px !important;
        padding-right: 12px !important;
        font-size: 14px !important;
    }
}

/* Floating Elements Safe Area Adjustments */
@media (max-width: 575.98px) {
    .floating-buttons-container {
        bottom: 12px !important;
        right: 12px !important;
        gap: 8px !important;
    }
    .floating-buttons-container .btn {
        width: 44px !important;
        height: 44px !important;
    }
    .floating-buttons-container .btn i {
        font-size: 1.15rem !important;
    }
}

/* ==========================================================================
   22. ABOUT US PAGE COMPONENTS SPECIFICATIONS
   ========================================================================== */
.team-img-wrapper {
    transition: transform 6s ease-in-out;
    background-size: cover;
    background-position: center;
}

.team-item-card:hover .team-img-wrapper {
    transform: scale(1.05);
}

.team-item-card {
    border-color: #E5E7EB !important;
    transition: var(--transition-smooth);
}

.value-item-card, .area-card {
    border-color: #E5E7EB !important;
    transition: var(--transition-smooth);
}

/* Timeline Custom Connectors styling */
.about-timeline-wrapper .row {
    position: relative;
    z-index: 2;
}

.timeline-vertical-line {
    background: #2563EB !important;
    opacity: 0.15;
}

/* ==========================================================================
   23. ABOUT US REDESIGNED STORY SECTION SPECIFICATIONS
   ========================================================================== */
.story-portrait-wrapper {
    height: 650px;
    border-radius: 24px !important;
}

.story-portrait-img {
    height: 650px !important;
    transition: transform 6s ease-in-out;
}

.story-portrait-wrapper:hover .story-portrait-img {
    transform: scale(1.05);
}

.story-experience-badge {
    z-index: 5;
}

.founder-quote-card {
    border-left: 4px solid #2563EB !important;
}

/* Responsive Viewports */
@media (max-width: 991.98px) {
    .story-portrait-wrapper {
        height: 500px !important;
        margin-bottom: 30px;
    }
    .story-portrait-img {
        height: 500px !important;
    }
}

@media (max-width: 575.98px) {
    .story-portrait-wrapper {
        height: 400px !important;
    }
    .story-portrait-img {
        height: 400px !important;
    }
    .story-experience-badge {
        width: calc(100% - 30px) !important;
        left: 15px !important;
    }
}

/* ==========================================================================
   24. ABOUT US MISSION, VISION & CORE VALUES SPECIFICATIONS
   ========================================================================== */
.mission-vision-values-section {
    padding: 120px 0;
    background-color: #F8FAFC !important;
}

.premium-mv-card {
    border-radius: 24px !important;
    padding: 50px !important;
    transition: all 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.premium-mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
}

.premium-mv-card:hover .mv-icon-wrapper {
    transform: scale(1.08) rotate(5deg);
}

.mv-icon-wrapper {
    transition: transform 300ms ease;
}

.premium-value-card {
    border-radius: 18px !important;
    transition: all 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.premium-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05) !important;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .mission-vision-values-section {
        padding: 80px 0;
    }
    .premium-mv-card {
        padding: 40px 30px !important;
    }
}

@media (max-width: 575.98px) {
    .mission-vision-values-section {
        padding: 60px 0;
    }
    .premium-mv-card {
        padding: 30px 20px !important;
    }
}

/* ==========================================================================
   25. ABOUT US WHY DAR AL FEYHA IS DIFFERENT SPECIFICATIONS
   ========================================================================== */
.why-different-section {
    padding: 120px 0;
    background-color: var(--white) !important;
}

.premium-feature-card {
    border-radius: 18px !important;
    border: 1px solid #E5E7EB !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    transition: all 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.premium-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.06) !important;
    border-color: rgba(37, 99, 235, 0.15) !important;
}

.premium-feature-card:hover .feature-icon-wrapper {
    transform: scale(1.08);
}

.feature-icon-wrapper {
    transition: transform 300ms ease;
}

.trust-pill-light {
    border-radius: 50px !important;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .why-different-section {
        padding: 80px 0;
    }
}

@media (max-width: 575.98px) {
    .why-different-section {
        padding: 60px 0;
    }
}

/* ==========================================================================
   27. SERVICES LISTING & DETAIL VIEWS SPECIFICATIONS
   ========================================================================== */
.services-hero-section {
    position: relative;
    z-index: 2;
}

.premium-service-card {
    border-radius: 22px !important;
    overflow: hidden;
    transition: all 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.premium-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.premium-service-card:hover .service-img {
    transform: scale(1.06);
}

.service-img-wrapper {
    position: relative;
}

.service-floating-icon {
    z-index: 5;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.step-badge {
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
    z-index: 4;
}

.area-card {
    border: 1px solid #E5E7EB !important;
    border-radius: 18px !important;
    transition: all 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(37, 99, 235, 0.15) !important;
}

/* ==========================================================================
   28. NAVBAR PREMIUM MEGA MENU SPECIFICATIONS
   ========================================================================== */
@media (min-width: 1200px) {
    .dropdown:hover .dropdown-menu-mega {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0) !important;
    }
    .dropdown-menu-mega {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, 15px) !important;
        transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
        margin-top: 10px !important;
    }
}

.dropdown-menu-mega .dropdown-item {
    color: #374151;
    font-weight: 500;
    transition: all 200ms ease;
}

.dropdown-menu-mega .dropdown-item:hover {
    color: #2563EB !important;
    background-color: rgba(37, 99, 235, 0.06) !important;
}

.dropdown-menu-mega .dropdown-item .transition-arrow {
    opacity: 0;
    transform: translateX(-5px);
    transition: all 200ms ease;
}

.dropdown-menu-mega .dropdown-item:hover .transition-arrow {
    opacity: 1;
    transform: translateX(0);
    color: #2563EB;
}


/* ==========================================================================
   26. ABOUT US LEADERSHIP TEAM SPECIFICATIONS
   ========================================================================== */
.leadership-section {
    padding: 120px 0;
    background-color: var(--white) !important;
}

.premium-team-card {
    border-radius: 20px !important;
    transition: all 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.premium-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.team-avatar-img {
    transition: transform 300ms ease-in-out;
}

.premium-team-card:hover .team-avatar-img {
    transform: scale(1.08);
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .leadership-section {
        padding: 80px 0;
    }
}

@media (max-width: 575.98px) {
    .leadership-section {
        padding: 60px 0;
    }
}

/* ==========================================================================
   27. SERVICES LISTING & DETAIL VIEWS SPECIFICATIONS
   ========================================================================== */
.services-hero-section {
    position: relative;
    z-index: 2;
}

.premium-service-card {
    border-radius: 22px !important;
    overflow: hidden;
    transition: all 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.premium-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.premium-service-card:hover .service-img {
    transform: scale(1.06);
}

.service-img-wrapper {
    position: relative;
}

.service-floating-icon {
    z-index: 5;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.step-badge {
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
    z-index: 4;
}

.area-card {
    border: 1px solid #E5E7EB !important;
    border-radius: 18px !important;
    transition: all 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(37, 99, 235, 0.15) !important;
}










/* Responsive Viewports */
@media (max-width: 991.98px) {
    .faq-preview-section {
        padding: 80px 0;
    }
}

@media (max-width: 575.98px) {
    .faq-preview-section {
        padding: 60px 0;
    }
}



/* Responsive Viewports */
@media (max-width: 991.98px) {
    .gallery-preview-section {
        padding: 80px 0;
    }
}

@media (max-width: 575.98px) {
    .gallery-preview-section {
        padding: 60px 0;
    }
}




@media (max-width: 575.98px) {
    .process-section {
        padding: 60px 0;
    }
}




