/*
Theme Name: Kaski Overseas Theme
Theme URI: https://www.kaskioverseas.com
Author: Kaski Overseas Pvt. Ltd.
Author URI: https://www.kaskioverseas.com
Description: DOFE-licensed foreign employment agency theme - Recruit Legally, Safely, Transparently
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kaski-overseas
Tags: nepal, foreign-employment, job-board, dofe-compliant

OFFICIAL LICENSE:
Department of Foreign Employment, Nepal
License No: 1091/073/074 | Valid Until: July 2026
Established: 2017
*/

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Open Sans', 'Noto Sans Devanagari', sans-serif;
    color: #2d3748;
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

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

/* ============================================
   COLOR VARIABLES
   ============================================ */
:root {
    --primary: #00ADEF;
    --primary-dark: #0086b3;
    --secondary: #1a3a5f;
    --accent: #ff6b35;
    --light-bg: #f8fbff;
    --text-dark: #2d3748;
    --text-light: #6c757d;
    --success: #2ecc71;
    --warning: #ff6b6b;
    --border: #e9ecef;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary);
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ============================================
   ANTI-FRAUD WARNING BAR (MANDATORY)
   ============================================ */
.anti-fraud-bar {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
}

.anti-fraud-bar a {
    color: white;
    text-decoration: underline;
    margin-left: 8px;
    font-weight: 700;
}

.anti-fraud-bar a:hover {
    text-decoration: none;
}

/* ============================================
   HEADER STYLES
   ============================================ */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.logo-img {
    height: 50px;
    max-width: 200px;
    object-fit: contain;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: white;
    font-weight: 700;
    font-size: 24px;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0;
}

.logo-text p {
    font-size: 11px;
    color: #6c757d;
    margin-bottom: 0;
    font-weight: 500;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    font-weight: 500;
    font-size: 16px;
    color: #495057;
    padding: 8px 0;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    padding: 5px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="70" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-repeat: repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: white;
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 10px;
}

.hero p.mt-3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 10px;
}

.hero p.mt-2 {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    background-color: white;
    color: var(--primary);
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

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

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

/* Trust Stats */
.trust-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hidden-section {
    display: none;
}


/* ============================================
   ABOUT SECTION
   ============================================ */
.about-content {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

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

/* Team Carousel - FULLY WORKING VERSION */
.team-carousel {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    height: 400px;
}

.team-slides-container {
    display: flex;
    transition: transform 1s ease-in-out;
    width: 100%;
    height: 100%;
}

.team-slide {
    min-width: 100%;
    background-color: white;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    box-sizing: border-box;
}

.team-member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    font-weight: bold;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member-initials {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    font-weight: bold;
    z-index: 1;
}

.team-member-info {
    text-align: left;
    max-width: 500px;
}

.team-member-info h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.team-member-info p.role {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 20px;
}

.team-member-info p.bio {
    color: var(--text-light);
    line-height: 1.8;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.carousel-dot.active {
    background-color: white;
    width: 30px;
    border-radius: 5px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 15;
    border: none;
    color: var(--primary);
}

.carousel-arrow:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 25px;
}

.carousel-arrow.next {
    right: 25px;
}

/* ============================================
   EMPLOYERS SECTION
   ============================================ */
.employers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

/* Procedure Steps */
.procedure-steps {
    padding-right: 20px;
}

.step-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
    padding-left: 60px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Partner Form */
.partner-form {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.partner-form h3 {
    text-align: center;
    margin-bottom: 10px;
    color: var(--secondary);
}

.partner-form p {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 14px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 173, 239, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 173, 239, 0.3);
}

.form-success {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: center;
    display: none;
}

.form-response {
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: center;
    font-weight: 500;
    display: none;
}

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

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

/* ============================================
   JOBS SECTION
   ============================================ */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.job-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.job-header {
    padding: 25px;
    border-bottom: 1px solid var(--border);
}

.job-header h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.job-location {
    display: flex;
    align-items: center;
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
}

.job-location svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.job-badge {
    background-color: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    float: right;
}

.job-details {
    padding: 25px;
}

.job-detail {
    margin-bottom: 15px;
    padding-left: 20px;
    border-left: 3px solid var(--primary);
}

.job-detail span.label {
    font-weight: 600;
    color: var(--secondary);
    margin-right: 8px;
}

.job-detail span.value {
    color: var(--primary);
}

.job-apply-btn {
    display: block;
    width: 100%;
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 15px;
}

.job-apply-btn:hover {
    background-color: var(--primary-dark);
}

/* ============================================
   RESOURCES SECTION
   ============================================ */
.resources-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 20px;
}

.tab-btn {
    padding: 10px 25px;
    border: none;
    background-color: #f8f9fa;
    color: var(--text-light);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background-color: var(--primary);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Resource Items */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.resource-item {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.resource-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.resource-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    color: var(--primary);
}

.resource-info h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.resource-info p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 10px;
}

.resource-download {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.resource-download svg {
    width: 16px;
    height: 16px;
    margin-left: 5px;
}

/* Blog Items */
.blog-item {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.blog-item:last-child {
    border-bottom: none;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 15px;
}

.blog-date {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.blog-excerpt p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
}

.blog-read-more svg {
    width: 16px;
    height: 16px;
    margin-left: 5px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-video {
    height: 200px;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.testimonial-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    opacity: 0.8;
}

.testimonial-video svg {
    width: 60px;
    height: 60px;
    color: white;
    z-index: 1;
}

.testimonial-info {
    padding: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    margin-right: 15px;
}

.author-name h4 {
    font-size: 1.2rem;
    margin-bottom: 3px;
}

.author-location {
    display: flex;
    align-items: center;
    color: var(--primary);
    font-size: 14px;
}

.author-location svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonial-rating {
    display: flex;
    color: #ffc107;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-container {
    max-width: 900px;
    margin: 0 auto 60px;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.map-placeholder {
    height: 450px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(0, 173, 239, 0.1);
    border-radius: 50%;
}

.map-placeholder svg {
    width: 100px;
    height: 100px;
    color: var(--primary);
}

.map-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
    background-color: var(--light-bg);
    border-top: 1px solid var(--border);
}

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

.map-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.map-stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.map-info-box {
    max-width: 600px;
    margin: 40px auto;
    background-color: #e3f2fd;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
}

.map-info-box h3 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.map-info-box p {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    background-color: #f8f9fa;
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-question.active svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: white;
}

.faq-answer.show {
    max-height: 500px;
    padding: 20px 25px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

.faq-contact {
    text-align: center;
    margin-top: 40px;
}

.faq-contact p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background-color: var(--secondary);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
    font-weight: 700;
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-about p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: block;
}

.footer-links ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    color: var(--primary);
    margin-right: 12px;
    margin-top: 3px;
}

.contact-text {
    opacity: 0.9;
    line-height: 1.7;
}

/* Emergency Support */
.emergency-box {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.emergency-box h5 {
    color: #dc3545;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emergency-box p {
    opacity: 0.9;
    font-size: 14px;
    margin-bottom: 5px;
}

.office-hours p {
    opacity: 0.8;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 8px;
}

/* DOFE Compliance */
.dofe-compliance {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.dofe-compliance p {
    margin-bottom: 5px;
    font-size: 14px;
}

/* ============================================
   MODAL STYLES
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-body {
    padding: 40px;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.text-success {
    color: var(--success);
}

.text-warning {
    color: var(--warning);
}

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

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

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu */
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 0;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 25px;
        font-size: 18px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .team-slide {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .team-member-info {
        text-align: center;
        max-width: 100%;
    }
    
    .team-member-info h3 {
        font-size: 1.6rem;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow.prev { left: 15px; }
    .carousel-arrow.next { right: 15px; }
    
    .step-item {
        padding-left: 50px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .partner-form {
        padding: 30px 20px;
    }
    
    .map-stats {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .team-slide {
        padding: 30px 20px;
    }
    
    .team-member-image {
        width: 150px;
        height: 150px;
    }
    
    .team-member-info h3 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 25px;
    }
}
/* ========================= */
/* Mobile Navigation Fix */
/* ========================= */

@media (max-width: 768px) {

    /* Show hamburger */
    .mobile-menu-btn {
        display: block;
    }

    /* Hide menu by default */
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }

    /* Show when JS adds .show */
    nav ul.show {
        display: flex;
    }

    nav ul li {
        text-align: center;
        margin: 10px 0;
    }
}
