/* ==========================================================================
   FARID MF UTARA ENTERPRISE - DRIBBBLE-INSPIRED PREMIUM DESIGN SYSTEM
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
    /* Brand Colors (Refining to a premium scarlet and warm amber gold) */
    --primary: #E52E2D;
    --primary-rgb: 229, 46, 45;
    --primary-hover: #C61C1B;
    --secondary: #F59E0B;
    --secondary-rgb: 245, 158, 11;
    
    /* Elegant Dark Canvas (Dribbble style deep charcoal/blue-grey tones) */
    --bg-main: #0B0C10;
    --bg-surface: #12141D;
    --bg-card: #181B28;
    --bg-card-hover: #1F2333;
    
    /* Borders & Accents */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(229, 46, 45, 0.4);
    
    /* Typography Palette (High legibility, well-spaced) */
    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    
    /* Glassmorphism & UI Accents */
    --glass-bg: rgba(18, 20, 29, 0.85);
    --glass-blur: blur(24px);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Shadows & Glows */
    --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(229, 46, 45, 0.15);
    --shadow-glow-hover: 0 0 40px rgba(229, 46, 45, 0.35);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacings (Ensuring text is never crowded) */
    --line-height-body: 1.75;
    --line-height-heading: 1.25;
    
    /* Radius */
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-full: 9999px;
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: var(--line-height-body);
    letter-spacing: -0.01em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- Spacious & Clear Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: var(--line-height-heading);
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

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

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

/* --- Layout Utilities --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, #FFFFFF 30%, #9CA3AF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-primary-gradient {
    background: linear-gradient(135deg, #FF6B6B 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Custom Premium Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    gap: 12px;
    width: 100%;
}

@media (min-width: 768px) {
    .btn {
        width: auto;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #C61C1B 100%);
    color: #FFFFFF;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.btn-primary:hover::after {
    transform: translate(50%, 50%) rotate(45deg);
}

.btn-primary:active {
    transform: scale(0.97);
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow-hover);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.badge-primary {
    background-color: rgba(229, 46, 45, 0.12);
    color: #FF6B6B;
    border: 1px solid rgba(229, 46, 45, 0.25);
}

.badge-success {
    background-color: rgba(16, 185, 129, 0.12);
    color: #34D399;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

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

.section-title-wrapper {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 2.75rem;
    margin-top: 16px;
    margin-bottom: 20px;
}

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

/* ==========================================================================
   HEADER & NAVIGATION BAR
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-normal);
}

header.scrolled {
    padding: 6px 0;
    background: rgba(11, 12, 16, 0.96);
    box-shadow: 0 10px 40px rgba(0,0,0,0.7);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

header .badge {
    margin-bottom: 0;
    font-size: 0.72rem;
    padding: 6px 12px;
    white-space: nowrap;
}


.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 44px;
    width: 44px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.25rem;
    line-height: 1.1;
    margin-bottom: 0;
}

.logo-text span {
    font-size: 0.72rem;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-menu {
    display: none; /* Hidden on mobile */
}
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 12px;
        list-style: none;
    }
    
    .nav-link {
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--text-secondary);
        position: relative;
        padding: 6px 0;
    }
    
    .nav-link:hover, .nav-link.active {
        color: #FFFFFF;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary);
        transition: var(--transition-fast);
    }
    
    .nav-link:hover::after, .nav-link.active::after {
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .nav-menu {
        gap: 40px;
    }
    .nav-link {
        font-size: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .nav-right {
        display: none;
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(circle at 80% 20%, rgba(229, 46, 45, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 10% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

@media (min-width: 1024px) {
    .hero-grid {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 80px;
        align-items: center;
    }
    .hero-image-wrapper {
        max-width: 460px;
    }
    .hero-img {
        height: 480px;
    }
}

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

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.hero-headline {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-top: 16px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 3.75rem;
    }
}

.hero-subheadline {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .hero-subheadline {
        margin-left: 0;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-cta {
        justify-content: flex-start;
    }
}

/* --- Quick Actions Dashboard (Wow Dribbble Layout) --- */
/* --- Quick Actions Dashboard (Wow Dribbble Layout) --- */
.quick-actions-container {
    background: linear-gradient(135deg, rgba(24, 27, 40, 0.65) 0%, rgba(28, 31, 46, 0.65) 100%);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 20px;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.quick-actions-container:hover {
    border-color: rgba(229, 46, 45, 0.35);
    box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.quick-actions-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

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

.quick-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.quick-action-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    transition: var(--transition-normal);
}

.quick-action-item:hover .quick-action-icon {
    transform: translateY(-4px);
    background: rgba(229, 46, 45, 0.1);
    border-color: rgba(229, 46, 45, 0.3);
    box-shadow: var(--shadow-glow);
}

.quick-action-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.3;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.hero-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    filter: brightness(0.9);
}

/* ==========================================================================
   ABOUT & OWNER CARD
   ========================================================================== */
.about-card {
    background: linear-gradient(135deg, rgba(24, 27, 40, 0.65) 0%, rgba(30, 33, 45, 0.65) 100%);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.about-card:hover {
    border-color: rgba(229, 46, 45, 0.35);
    box-shadow: var(--shadow-soft), var(--shadow-glow);
}

@media (min-width: 768px) {
    .about-card {
        flex-direction: row;
        padding: 50px;
        align-items: flex-start;
        gap: 50px;
    }
}

.owner-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.owner-avatar {
    width: 140px;
    height: 140px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 4px solid var(--bg-main);
    box-shadow: var(--shadow-soft);
}

.owner-avatar-ring {
    position: absolute;
    top: -6px;
    left: -6px;
    width: 152px;
    height: 152px;
    border-radius: var(--radius-full);
    border: 3px dashed var(--primary);
    animation: spin 30s linear infinite;
}

.owner-badge-online {
    position: absolute;
    bottom: 4px;
    right: 12px;
    background-color: #34D399;
    width: 22px;
    height: 22px;
    border-radius: var(--radius-full);
    border: 3.5px solid var(--bg-card);
}

.about-card-info {
    text-align: center;
    flex-grow: 1;
}

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

.about-card-name {
    font-size: 1.75rem;
    margin-bottom: 6px;
}

.about-card-title {
    font-size: 0.9rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-card-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-stats-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
}

@media (min-width: 768px) {
    .about-stats-row {
        justify-content: flex-start;
    }
}

.about-stat-item {
    text-align: center;
}

.about-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat-lbl {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   COLLAPSIBLE TAP SERVICES (DRIBBBLE CARD ACCORDION)
   ========================================================================== */
.services-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.service-mobile-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition-normal);
}

.service-mobile-header {
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.service-mobile-title-block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-mobile-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
    transition: var(--transition-normal);
}

.service-mobile-card:hover .service-mobile-icon {
    background-color: rgba(229, 46, 45, 0.08);
    border-color: rgba(229, 46, 45, 0.2);
}

.service-mobile-title {
    font-size: 1.3rem;
}

.service-mobile-header i.fa-chevron-right {
    font-size: 1rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.service-mobile-card.active {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.service-mobile-card.active .service-mobile-header i.fa-chevron-right {
    transform: rotate(90deg);
    color: var(--primary);
}

.service-mobile-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background-color: rgba(255, 255, 255, 0.01);
}

.service-mobile-card.active .service-mobile-body {
    max-height: 800px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.service-mobile-inner {
    padding: 0 28px 28px 28px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.service-mobile-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.service-list-item i.fa-check-circle {
    color: #10B981;
}

@media (min-width: 1024px) {
    .services-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        max-width: 1100px;
        margin: 0 auto;
    }
    .service-mobile-card {
        cursor: default;
    }
    .service-mobile-card .service-mobile-header {
        cursor: default;
        pointer-events: none;
    }
    .service-mobile-card .service-mobile-header i.fa-chevron-right {
        display: none;
    }
    .service-mobile-card .service-mobile-body {
        max-height: none !important;
        background-color: transparent;
    }
    .service-mobile-inner {
        padding-top: 0;
    }
}

/* ==========================================================================
   COVERAGE ZONES
   ========================================================================== */
.coverage-box {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.coverage-title-h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.coverage-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.coverage-pill {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ==========================================================================
   SWIPEABLE PORTFOLIO GALLERY (DRIBBBLE INSPIRED SWIPER)
   ========================================================================== */
.gallery-filter-scroll {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 12px;
    margin-bottom: 40px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.gallery-filter-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-filter-flex {
    display: inline-flex;
    gap: 10px;
    padding: 0 4px;
}

.filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
    box-shadow: var(--shadow-glow);
}

.gallery-swipe-wrapper {
    overflow-x: auto;
    display: flex;
    gap: 24px;
    padding: 10px 4px 30px 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.gallery-swipe-wrapper::-webkit-scrollbar {
    display: none;
}

.gallery-swipe-item {
    flex: 0 0 280px; /* Snug cards on mobile */
    scroll-snap-align: start;
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.gallery-swipe-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(229, 46, 45, 0.15) 0%, transparent 80%);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.gallery-swipe-item:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(229, 46, 45, 0.25);
}

.gallery-swipe-item:hover::before {
    opacity: 1;
}

@media (min-width: 768px) {
    .gallery-filter-scroll {
        overflow: visible;
        white-space: normal;
        display: flex;
        justify-content: center;
    }
    
    .gallery-filter-flex {
        display: flex;
        justify-content: center;
    }

    .gallery-swipe-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        overflow: visible;
        gap: 24px;
    }
    
    .gallery-swipe-item {
        flex: auto;
        aspect-ratio: 1 / 1;
    }
}

.gallery-swipe-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-swipe-item:hover img {
    transform: scale(1.07);
}

.gallery-swipe-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(11, 12, 16, 0.95) 0%, rgba(11, 12, 16, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    z-index: 3;
    transition: background 0.4s ease;
}

.gallery-swipe-item:hover .gallery-swipe-overlay {
    background: linear-gradient(to top, rgba(11, 12, 16, 0.98) 0%, rgba(11, 12, 16, 0.6) 70%, transparent 100%);
}

/* ==========================================================================
   TESTIMONIAL SCROLLER
   ========================================================================== */
.testimonials-scroller {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    padding-bottom: 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonials-scroller::-webkit-scrollbar {
    display: none;
}

.testimonial-mobile-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: linear-gradient(135deg, rgba(24, 27, 40, 0.65) 0%, rgba(28, 31, 46, 0.65) 100%);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-mobile-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.35); /* Elegant amber/gold hover glow */
    box-shadow: var(--shadow-soft), 0 0 30px rgba(245, 158, 11, 0.15);
}

@media (min-width: 768px) {
    .testimonials-scroller {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow: visible;
    }
    
    .testimonial-mobile-card {
        flex: auto;
    }
}

.testimonial-stars {
    color: var(--secondary);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 24px;
    min-height: 80px;
    line-height: 1.7;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(229, 46, 45, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    border: 1px solid rgba(229, 46, 45, 0.15);
}

.testimonial-meta h4 {
    font-size: 0.95rem;
}

.testimonial-meta p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    text-align: left;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-answer-inner {
    padding: 0 24px 24px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    line-height: 1.8;
}

/* ==========================================================================
   CTA BOX & FOOTER
   ========================================================================== */
.cta-box {
    background: radial-gradient(circle at center, rgba(229, 46, 45, 0.12) 0%, transparent 80%), var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.cta-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.cta-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

footer {
    background-color: #06070B;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 100px 0;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .footer-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr 1fr;
        gap: 60px;
    }
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    height: 40px;
    width: 40px;
}

.footer-logo h2 {
    font-size: 1.25rem;
}

.footer-about p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background-color: var(--primary);
}

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

.footer-links-list a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links-list a:hover {
    color: #FFFFFF;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    gap: 12px;
    line-height: 1.6;
}

.footer-contact-list i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.02);
    padding-top: 30px;
}

/* ==========================================================================
   STICKY BOTTOM APP BAR (MOBILE PHONE NATIVE APP STYLE)
   ========================================================================== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 76px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 999;
    padding: 8px 16px 16px 16px; /* Optimized spacing for bottom home bar */
    box-shadow: 0 -12px 35px rgba(0,0,0,0.6);
}

@media (min-width: 768px) {
    .mobile-bottom-nav {
        display: none;
    }
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    gap: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.mobile-nav-item i {
    font-size: 1.35rem;
}

.mobile-nav-item span {
    font-size: 0.7rem;
    font-weight: 700;
}

.mobile-nav-item.active {
    color: #FFFFFF;
}

.mobile-nav-item.active i {
    color: var(--primary);
}

.mobile-nav-item-center {
    position: relative;
    top: -18px;
    width: 62px;
    height: 62px;
    background-color: var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    box-shadow: 0 6px 18px rgba(229, 46, 45, 0.4);
    border: 4px solid var(--bg-main);
    z-index: 1000;
}

.mobile-nav-item-center i {
    font-size: 1.6rem;
}

.mobile-nav-item-center::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    background-color: var(--primary);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 2s infinite;
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 10, 15, 0.98);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 2.25rem;
    cursor: pointer;
}

.lightbox-img-wrapper {
    width: 100%;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.lightbox-img {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
}

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

.lightbox-title {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes spin {
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 46, 45, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(229, 46, 45, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(229, 46, 45, 0);
    }
}
