/* ==========================================================================
   SEN'Q SACCOS - Modern Bilingual Website Stylesheet
   Color Palette: Vibrant Orange (#FF8200) & Deep Navy (#1E286D)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & Root Variables
   -------------------------------------------------------------------------- */
:root {
    --primary-orange: #FF8200;
    --primary-orange-hover: #E57300;
    --primary-orange-light: rgba(255, 130, 0, 0.12);
    
    --navy-dark: #1E286D;
    --navy-deeper: #121846;
    --navy-light: #2A3892;
    --navy-glow: rgba(30, 40, 109, 0.15);

    --accent-gold: #FFD700;
    --bg-light: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-surface: #F1F5F9;

    --text-main: #0F172A;
    --text-muted: #475569;
    --text-light: #94A3B8;
    --text-white: #FFFFFF;

    --border-color: #E2E8F0;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;

    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 8px 24px rgba(30, 40, 109, 0.08);
    --shadow-lg: 0 16px 36px rgba(30, 40, 109, 0.14);
    --shadow-orange: 0 10px 25px rgba(255, 130, 0, 0.35);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Plus Jakarta Sans', 'Noto Sans Ethiopic', system-ui, -apple-system, sans-serif;
}

/* --------------------------------------------------------------------------
   2. Reset & Base Layout
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

/* --------------------------------------------------------------------------
   3. Typography & Section Headers
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    color: var(--navy-dark);
    font-weight: 700;
    line-height: 1.25;
}

.section-title {
    margin-bottom: 48px;
}

.subtitle-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-orange-light);
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.subtitle-tag.light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent-gold);
}

.section-title h2 {
    font-size: 2.3rem;
    color: var(--navy-dark);
    position: relative;
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 12px auto;
}

.title-line {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--navy-dark));
    margin: 12px auto 0 auto;
    border-radius: 4px;
}

/* --------------------------------------------------------------------------
   4. Buttons & Badges
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--text-white);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    background: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255, 130, 0, 0.45);
}

.btn-secondary {
    background: var(--navy-dark);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--navy-dark);
    color: var(--navy-dark);
}

.btn-outline:hover {
    background: var(--navy-dark);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary-orange);
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    font-size: 0.95rem;
}

.btn-link:hover {
    color: var(--navy-dark);
    gap: 10px;
}

/* --------------------------------------------------------------------------
   5. Top Bar & Header Navigation
   -------------------------------------------------------------------------- */
.top-bar {
    background: var(--navy-deeper);
    color: var(--text-white);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
}

.top-info i {
    color: var(--primary-orange);
}

.top-info a:hover {
    color: var(--primary-orange);
}

.top-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-social a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.top-social a:hover {
    color: var(--primary-orange);
}

.lang-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFF;
    padding: 4px 12px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.lang-toggle-btn:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

/* Navbar */
.navbar-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    padding: 12px 0;
}

.navbar-header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-img {
    height: 52px;
    width: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-orange);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy-dark);
    letter-spacing: -0.5px;
}

.brand-sub {
    font-size: 0.75rem;
    color: var(--primary-orange);
    font-weight: 600;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy-dark);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-orange);
    transition: width var(--transition-fast);
}

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

.nav-link.active {
    color: var(--primary-orange);
}

.nav-btn {
    background: var(--navy-dark);
    color: #FFF !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
}

.nav-btn::after {
    display: none;
}

.nav-btn:hover {
    background: var(--primary-orange);
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy-dark);
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding: 90px 0 80px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #EEF2FF 50%, #FFF7ED 100%);
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,130,0,0.12) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFF;
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--primary-orange);
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-title .highlight {
    color: var(--primary-orange);
    position: relative;
    white-space: nowrap;
}

.hero-slogan {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy-light);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-slogan i {
    color: var(--primary-orange);
    font-size: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(30, 40, 109, 0.1);
}

.stat-card {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy-dark);
    line-height: 1;
}

.stat-unit {
    color: var(--primary-orange);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 4px;
}

/* Hero Image Card & Floating Badges */
.hero-image-wrapper {
    position: relative;
}

.hero-image-card {
    position: relative;
    background: #FFF;
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 130, 0, 0.15);
}

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

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border-color);
    animation: float 4s ease-in-out infinite;
}

.badge-1 {
    top: 20px;
    left: -30px;
}

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

.badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-orange-light);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.badge-info h4 {
    font-size: 0.92rem;
    color: var(--navy-dark);
}

.badge-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --------------------------------------------------------------------------
   7. Selling Point Banner
   -------------------------------------------------------------------------- */
.selling-banner {
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.banner-box {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-deeper) 100%);
    border-radius: var(--radius-lg);
    padding: 32px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-orange);
}

.banner-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-orange);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.banner-text {
    color: #FFF;
}

.banner-text h3 {
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.banner-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* --------------------------------------------------------------------------
   8. About Section
   -------------------------------------------------------------------------- */
.about-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-card {
    background: var(--bg-card);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all var(--transition-smooth);
    text-align: center;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-orange);
}

.about-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px auto;
    background: var(--navy-glow);
    color: var(--navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all var(--transition-fast);
}

.about-card:hover .about-icon {
    background: var(--primary-orange);
    color: #FFF;
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.about-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
}

/* --------------------------------------------------------------------------
   9. Services / Loan Options Section
   -------------------------------------------------------------------------- */
.services-section {
    padding: 100px 0;
    background: var(--bg-surface);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: #FFF;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--navy-dark);
    color: #FFF;
    border-color: var(--navy-dark);
}

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

.service-card {
    background: #FFF;
    border-radius: var(--radius-md);
    padding: 28px 24px;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-orange);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    background: var(--navy-glow);
    color: var(--navy-dark);
}

.card-badge.badge-urgent {
    background: rgba(220, 38, 38, 0.12);
    color: #DC2626;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-orange-light);
    color: var(--primary-orange);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

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

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 0.82rem;
}

.loan-time {
    color: var(--text-muted);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   10. Membership Requirements Section
   -------------------------------------------------------------------------- */
.membership-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.requirements-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.step-card {
    background: #FFF;
    padding: 32px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    text-align: center;
    transition: all var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: var(--navy-dark);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(30, 40, 109, 0.1);
}

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

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

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

.membership-cta p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   11. Interactive Loan Calculator Section
   -------------------------------------------------------------------------- */
.calculator-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-deeper) 100%);
    color: #FFF;
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.calculator-info h2 {
    color: #FFF;
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.calculator-info p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.calc-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.c-hl {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.c-hl i {
    color: var(--accent-gold);
}

.calculator-card {
    background: #FFF;
    color: var(--text-main);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.calc-input-group {
    margin-bottom: 28px;
}

.calc-input-group label {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.calc-value {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

input[type=range] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--bg-surface);
    accent-color: var(--primary-orange);
    cursor: pointer;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 6px;
}

.calc-result-box {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.res-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.res-item:last-child {
    margin-bottom: 0;
}

.res-label {
    font-weight: 600;
    font-size: 0.95rem;
}

.res-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy-dark);
}

.res-item.sm .res-value {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   12. Location Section
   -------------------------------------------------------------------------- */
.location-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.location-card {
    background: #FFF;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.location-img-box {
    position: relative;
    min-height: 340px;
}

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

.img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(30, 40, 109, 0.9);
    color: #FFF;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-details {
    padding: 44px;
}

.location-details h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy-dark);
}

.location-details h3 i {
    color: var(--primary-orange);
}

.loc-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;

}

.contact-quick-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cq-item {
    display: flex;
    gap: 16px;
}

.cq-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-orange-light);
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cq-item h5 {
    font-size: 0.95rem;
    color: var(--navy-dark);
}

.cq-item p, .cq-item a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cq-item a:hover {
    color: var(--primary-orange);
}

.cq-socials {
    display: flex;
    gap: 14px;
    margin-top: 4px;
}

.cq-socials a {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--navy-dark);
}

/* --------------------------------------------------------------------------
   13. Contact Section
   -------------------------------------------------------------------------- */
.contact-section {
    padding: 100px 0;
    background: var(--bg-surface);
}

.contact-wrapper {
    background: #FFF;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.contact-info-col {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-deeper) 100%);
    color: #FFF;
    padding: 48px;
}

.contact-info-col h2 {
    color: #FFF;
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-info-col p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cf-item {
    display: flex;
    gap: 16px;
}

.cf-item i {
    font-size: 1.4rem;
    color: var(--primary-orange);
    margin-top: 2px;
}

.cf-item h4 {
    color: #FFF;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.cf-item p {
    font-size: 0.88rem;
    margin-bottom: 0;
}

.contact-form-col {
    padding: 48px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary-orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-main);
    background: var(--bg-light);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: #FFF;
    box-shadow: 0 0 0 4px var(--primary-orange-light);
}

.form-status {
    margin-top: 16px;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(34, 197, 94, 0.12);
    color: #15803D;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--navy-deeper);
    color: #FFF;
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.footer-logo img {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    border: 2px solid var(--primary-orange);
}

.footer-slogan {
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer-socials a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

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

.footer-col h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--primary-orange);
    margin-top: 6px;
}

.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(--primary-orange);
    padding-left: 4px;
}

.footer-col p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
}

.footer-bottom {
    padding: 24px 0;
    background: #0B0E28;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

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

.scroll-top-btn {
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-orange);
}

.scroll-top-btn:hover {
    background: var(--primary-orange-hover);
    transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   15. Modal Dialog
   -------------------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: #FFF;
    border-radius: var(--radius-lg);
    max-width: 560px;
    width: 100%;
    padding: 36px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: transform var(--transition-smooth);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-surface);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.modal-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-orange-light);
    color: var(--primary-orange);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.modal-category-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    background: var(--navy-glow);
    color: var(--navy-dark);
    border-radius: 50px;
    margin-top: 4px;
}

.modal-description {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.98rem;
}

.modal-body h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-body h4 i {
    color: var(--primary-orange);
}

.modal-list {
    margin-bottom: 24px;
}

.modal-list li {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    position: relative;
    padding-left: 22px;
}

.modal-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

.modal-highlight-box {
    background: var(--bg-surface);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    font-size: 0.9rem;
}

.modal-highlight-box i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

/* --------------------------------------------------------------------------
   16. Animations (Intersection Observer Targets)
   -------------------------------------------------------------------------- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible,
.fade-in-scale.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* --------------------------------------------------------------------------
   17. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .hero-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-info {
        flex-direction: column;
        gap: 6px;
    }

    .hamburger-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #FFF;
        padding: 40px 24px;
        box-shadow: var(--shadow-lg);
        transition: left var(--transition-smooth);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .banner-box {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .location-card {
        grid-template-columns: 1fr;
    }

    .location-img-box {
        min-height: 240px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .badge-1 { left: 0; }
    .badge-2 { right: 0; }
}

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

    .requirements-steps {
        grid-template-columns: 1fr;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
}
