/* =========================================
   CROWN LOGISTIC SERVICE - MAIN STYLESHEET
   Gurgaon's #1 Packers & Movers
   ========================================= */

:root {
    --primary: #0a3d62;
    --primary-dark: #062848;
    --primary-light: #1a5276;
    --accent: #f39c12;
    --accent-dark: #d68910;
    --accent-light: #f8c471;
    --white: #ffffff;
    --light: #f8f9fa;
    --gray: #6c757d;
    --dark: #1a1a2e;
    --text: #333344;
    --border: rgba(0,0,0,0.08);
    --shadow: 0 10px 40px rgba(10,61,98,0.12);
    --shadow-hover: 0 20px 60px rgba(10,61,98,0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    --font-head: 'Playfair Display', Georgia, serif;
    --font-body: 'Nunito', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; }
a { text-decoration: none; transition: var(--transition); }

/* ============ TOP BAR ============ */
.top-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 8px 0;
    font-size: 0.82rem;
}

.top-info a, .top-info span {
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
}
.top-info a:hover { color: var(--accent-light); }

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: 0.75rem;
    transition: var(--transition);
}
.social-icon:hover { background: var(--accent); color: white; transform: translateY(-2px); }

/* ============ NAVBAR ============ */
.main-navbar {
    background: var(--white);
    box-shadow: 0 2px 30px rgba(10,61,98,0.1);
    padding: 0;
    transition: var(--transition);
    z-index: 1000;
}

.main-navbar.scrolled {
    box-shadow: 0 4px 40px rgba(10,61,98,0.18);
    padding: 0;
}

/* Logo */
.logo-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(10,61,98,0.3);
}
.logo-text { line-height: 1.1; }
.brand-name { display: block; font-family: var(--font-head); font-size: 1.25rem; color: var(--primary); font-weight: 800; }
.brand-sub { display: block; font-size: 0.7rem; color: var(--accent); font-weight: 600; letter-spacing: 0.5px; }

/* Nav Links */
.main-navbar .nav-link {
    font-weight: 600;
    color: var(--text) !important;
    padding: 1.4rem 0.9rem !important;
    font-size: 0.9rem;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 2px 2px 0 0;
    transition: var(--transition);
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--primary) !important;
}
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after { width: 60%; }

.btn-nav {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border: none;
    padding: 10px 20px !important;
    border-radius: var(--radius);
    color: white !important;
    font-weight: 700;
    font-size: 0.85rem;
}
.btn-nav:hover { 
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243,156,18,0.4);
}
.btn-nav::after { display: none !important; }

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 20px 60px rgba(10,61,98,0.15);
    border-radius: var(--radius);
    padding: 8px;
    background: var(--white);
    min-width: 220px;
    animation: dropFade 0.2s ease;
}
@keyframes dropFade { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

.dropdown-item {
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text);
    transition: var(--transition);
}
.dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding-left: 22px;
}
.dropdown-item i { width: 18px; color: var(--accent); }
.dropdown-item:hover i { color: var(--accent-light); }

/* MEGA MENU */
.mega-dropdown { position: static; }
.mega-menu {
    width: 640px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    overflow: hidden;
}
.mega-menu-inner { background: var(--white); }
.mega-col {
    padding: 24px 20px;
    border-right: 1px solid var(--border);
}
.mega-col:last-child { border-right: none; }
.mega-header {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
}
.mega-cta { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }
.mega-cta-inner {
    padding: 24px 20px;
    text-align: center;
    color: white;
    height: 100%;
}
.mega-cta-inner h6 { color: white; font-size: 1rem; margin-bottom: 4px; }
.mega-cta-inner p { color: rgba(255,255,255,0.8); font-size: 0.8rem; margin-bottom: 16px; }
.mega-cta-inner .btn-warning { background: var(--accent); border: none; font-weight: 700; }

/* Mobile Navbar */
@media (max-width: 991px) {
    .main-navbar .nav-link { padding: 10px 15px !important; border-radius: 8px; }
    .main-navbar .nav-link::after { display: none; }
    .main-navbar .nav-link:hover { background: rgba(10,61,98,0.06); }
    .mega-menu { width: 100%; transform: none; left: 0; }
    .mega-col { border-right: none; border-bottom: 1px solid var(--border); padding: 15px; }
    .dropdown-menu { box-shadow: none; background: rgba(10,61,98,0.04); border-radius: 8px; margin-top: 4px; }
    .top-info span { display: none; }
}

/* ============ HERO SECTION ============ */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-truck-decoration {
    position: absolute;
    right: -80px;
    bottom: 100px;
    opacity: 0.06;
    font-size: 22rem;
    color: white;
    animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: white;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}
.hero-title .highlight {
    color: var(--accent-light);
    position: relative;
}
.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.hero-subtitle { color: rgba(255,255,255,0.85); font-size: 1.1rem; line-height: 1.7; margin-bottom: 2rem; }

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.hero-stat { text-align: center; }
.hero-stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--accent-light); line-height: 1; }
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 1px; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-hero-primary {
    background: var(--accent);
    color: var(--dark);
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 1rem;
    border: none;
    transition: var(--transition);
    box-shadow: 0 6px 25px rgba(243,156,18,0.4);
}
.btn-hero-primary:hover { background: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 10px 35px rgba(243,156,18,0.5); color: white; }

.btn-hero-outline {
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.6);
    transition: var(--transition);
}
.btn-hero-outline:hover { background: white; color: var(--primary); border-color: white; }

/* Quote Card in Hero */
.hero-quote-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(10,61,98,0.25);
    padding: 2rem;
    position: relative;
    z-index: 2;
    animation: slideInRight 0.8s ease;
}
@keyframes slideInRight { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }

.hero-quote-card .card-title {
    font-family: var(--font-head);
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent);
}

.form-floating > .form-control,
.form-floating > .form-select {
    border: 2px solid rgba(10,61,98,0.12);
    border-radius: 10px;
    font-size: 0.9rem;
    transition: var(--transition);
}
.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10,61,98,0.1);
}

.btn-quote {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 14px;
    border-radius: var(--radius);
    font-weight: 800;
    border: none;
    width: 100%;
    font-size: 1rem;
    transition: var(--transition);
}
.btn-quote:hover { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); transform: translateY(-2px); }

/* ============ SECTION STYLES ============ */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(243,156,18,0.12);
    color: var(--accent-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}
.section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--accent);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.25;
}
.section-desc { color: var(--gray); font-size: 1rem; line-height: 1.8; }

/* ============ SERVICES CARDS ============ */
.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.8rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: rgba(10,61,98,0.1); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(10,61,98,0.25);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    transform: rotate(5deg) scale(1.05);
}
.service-card h4 { font-size: 1.15rem; color: var(--primary); margin-bottom: 0.8rem; }
.service-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }
.service-link { color: var(--primary); font-weight: 700; font-size: 0.875rem; }
.service-link:hover { color: var(--accent); }

/* ============ WHY CHOOSE US ============ */
.why-section { background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%); }

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(10,61,98,0.07);
    transition: var(--transition);
    height: 100%;
}
.why-card:hover { transform: translateX(5px); box-shadow: var(--shadow); }
.why-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}
.why-card h5 { font-size: 1rem; color: var(--primary); margin-bottom: 0.4rem; }
.why-card p { color: var(--gray); font-size: 0.85rem; margin: 0; line-height: 1.6; }

/* ============ PROCESS STEPS ============ */
.process-step {
    text-align: center;
    position: relative;
}
.process-step::after {
    content: '';
    position: absolute;
    top: 35px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 2px;
}
.process-step:last-child::after { display: none; }
.step-num {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(10,61,98,0.3);
    position: relative;
    z-index: 1;
}
.process-step h5 { color: var(--primary); font-size: 1rem; }
.process-step p { color: var(--gray); font-size: 0.85rem; }

/* ============ TESTIMONIALS ============ */
.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.quote-icon { font-size: 3rem; color: var(--accent); line-height: 1; margin-bottom: 1rem; }
.stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-text { color: var(--gray); font-size: 0.9rem; line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; }
.reviewer-info { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}
.reviewer-name { font-weight: 700; color: var(--primary); font-size: 0.9rem; }
.reviewer-loc { color: var(--gray); font-size: 0.8rem; }

/* ============ COUNTERS ============ */
.counter-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 70px 0;
    position: relative;
}
.counter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='white' fill-opacity='0.05'%3E%3Cpath d='M20 20c0-5.523-4.477-10-10-10S0 14.477 0 20s4.477 10 10 10 10-4.477 10-10zm-10 8a8 8 0 110-16 8 8 0 010 16z'/%3E%3C/g%3E%3C/svg%3E");
}

.counter-item { text-align: center; position: relative; z-index: 1; }
.counter-num {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
}
.counter-label { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 600; margin-top: 0.5rem; }

/* ============ BLOG CARDS ============ */
.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.blog-img {
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.4);
}
.blog-body { padding: 1.5rem; }
.blog-meta { font-size: 0.8rem; color: var(--gray); margin-bottom: 0.75rem; }
.blog-title { font-size: 1rem; color: var(--primary); margin-bottom: 0.75rem; line-height: 1.4; }
.blog-excerpt { font-size: 0.875rem; color: var(--gray); line-height: 1.7; }
.blog-read-more { color: var(--accent-dark); font-weight: 700; font-size: 0.875rem; }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 80px;
    background: white;
    clip-path: polygon(0 100%, 100% 100%, 100% 40%, 0 0%);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: white; margin-bottom: 0.75rem; }
.page-hero .breadcrumb { justify-content: center; background: transparent; }
.page-hero .breadcrumb-item a { color: var(--accent-light); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.75); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ============ CTA SECTION ============ */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 70px 0;
    text-align: center;
    position: relative;
}
.cta-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--primary-dark); }
.cta-section p { color: rgba(26,26,46,0.8); font-size: 1.05rem; }
.btn-cta-white {
    background: white;
    color: var(--primary-dark);
    padding: 14px 36px;
    border-radius: var(--radius);
    font-weight: 800;
    border: none;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.btn-cta-white:hover { background: var(--primary-dark); color: white; transform: translateY(-3px); }

/* ============ AREA COVERAGE ============ */
.area-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}
.area-card:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.area-card:hover i { color: var(--accent-light); }
.area-card i { color: var(--accent); font-size: 1.5rem; margin-bottom: 0.5rem; }
.area-card h6 { font-size: 0.9rem; margin: 0; }

/* ============ FOOTER ============ */
.main-footer { background: var(--dark); margin-top: 0; }
.footer-wave svg { display: block; }
.footer-wave { background: var(--dark); margin-bottom: -4px; }

.footer-main { padding: 70px 0 50px; }
.logo-icon-footer {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.2rem;
}
.footer-brand-name { font-family: var(--font-head); font-size: 1.3rem; color: white; font-weight: 800; }
.footer-about { color: rgba(255,255,255,0.65); font-size: 0.875rem; line-height: 1.8; }
.badge-item {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}
.footer-title {
    font-family: var(--font-head);
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.875rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent-light); padding-left: 4px; }

.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
}
.footer-contact-list i { color: var(--accent); margin-top: 3px; min-width: 16px; }
.footer-contact-list span, .footer-contact-list a {
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    line-height: 1.5;
}
.footer-contact-list a:hover { color: var(--accent-light); }

.footer-social { display: flex; gap: 10px; }
.footer-social-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    transition: var(--transition);
}
.footer-social-icon:hover { background: var(--accent); color: white; transform: translateY(-2px); }

.footer-areas { background: rgba(255,255,255,0.05); padding: 20px 0; }
.area-tag {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    transition: var(--transition);
}
.area-tag:hover { background: var(--accent); color: white; }

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 18px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--accent-light); }

/* ============ FLOATING BUTTONS ============ */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}
.float-btn {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.call-btn { background: var(--primary); color: white; }
.call-btn:hover { background: var(--primary-dark); transform: scale(1.1); }
.whatsapp-btn { background: #25D366; color: white; }
.whatsapp-btn:hover { background: #128C7E; transform: scale(1.1); }
.scroll-top { background: var(--accent); color: white; opacity: 0; transform: translateY(20px); transition: var(--transition); }
.scroll-top.visible { opacity: 1; transform: translateY(0); }

/* ============ CONTACT FORM ============ */
.contact-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 2.5rem;
}
.info-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: white;
    height: 100%;
}
.info-box h3 { color: white; margin-bottom: 1.5rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.info-item-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-light);
}
.info-item-text h6 { color: white; margin-bottom: 3px; font-size: 0.9rem; }
.info-item-text p { color: rgba(255,255,255,0.75); font-size: 0.875rem; margin: 0; }

/* ============ GALLERY ============ */
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    cursor: pointer;
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,61,98,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: white; }
.gallery-icon { font-size: 4rem; color: rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; height: 100%; }

/* ============ ALERT / NOTICE ============ */
.notice-bar {
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--dark);
    padding: 10px 0;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fadeInUp { animation: fadeInUp 0.7s ease forwards; }

/* ============ UTILITIES ============ */
.bg-gradient-primary { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); }
.text-primary-custom { color: var(--primary); }
.text-accent { color: var(--accent); }
.fw-800 { font-weight: 800; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .section-pad { padding: 60px 0; }
    .hero-section { min-height: auto; padding: 80px 0 60px; }
    .hero-quote-card { margin-top: 2rem; }
    .hero-stats { gap: 1rem; }
    .hero-stat-num { font-size: 1.5rem; }
    .counter-num { font-size: 2.2rem; }
    .mega-menu { width: 100%; }
    .process-step::after { display: none; }
}
