/* 
    Riyadh Scrap Buyers - Main Stylesheet
    Centrally managed CSS for all pages.
*/

/* ---------- GLOBAL ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fafbfc;
    color: #1e2a3a;
    line-height: 1.7;
    /* Fade animation for smooth page transitions */
    opacity: 1;
    animation: pageFadeIn 0.8s ease-in-out forwards;
}

@keyframes pageFadeIn {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ---------- TOP BAR ---------- */
.top-bar {
    background: linear-gradient(145deg, #ffb347, #ff9f1a);
    padding: 0.6rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-bottom: 2px solid rgba(255,255,255,0.3);
    position: relative;
    z-index: 1001;
}

.top-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    color: #1e2a3a;
    border: none;
    border-radius: 60px;
    padding: 10px 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.5);
    min-width: 220px; /* Equal width for both buttons */
}

.top-btn i {
    font-size: 1rem;
    color: #ffb347;
}

.top-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: #1e2a3a;
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.top-btn:hover i {
    color: white;
}

@media (max-width: 768px) {
    .top-bar {
        justify-content: center;
        gap: 0.8rem;
    }
    .top-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
        min-width: 170px; /* Maintain equal width on small screens */
    }
}

/* ---------- NAVBAR ---------- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(30, 42, 58, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.7rem 5%;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}



.logo {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffb347;
    display: flex;
    align-items: center;
    gap: 12px;
}


.logo span {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
    flex-wrap: wrap;
    transition: 0.4s ease;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffb347;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    z-index: 9999 !important;
    transition: 0.3s;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #ffffff !important;
    border-radius: 4px;
    transition: 0.3s;
}






.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(44, 62, 80, 0.98);
    backdrop-filter: blur(10px);
    min-width: 260px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 1000;
    border-radius: 16px;
    top: 100%;
    left: 0;
    padding: 0.8rem 0;
    border: 1px solid rgba(255,255,255,0.1);
}

.dropdown-content a {
    color: white;
    padding: 0.7rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    transition: 0.2s;
}

.dropdown-content a:hover,
.dropdown-content a.active {
    background: #ffb347;
    color: #1e2a3a;
}

@media (min-width: 769px) {
    .dropdown:hover .dropdown-content {
        display: block;
    }
}


/* ---------- MOBILE NAVIGATION ---------- */
@media (max-width: 768px) {
    .hamburger { 
        display: flex; 
    }




    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: rgba(30, 42, 58, 0.98);
        backdrop-filter: blur(12px);
        margin-top: 1rem;
        border-radius: 20px;
        padding: 1.2rem;
        border: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links.active { display: flex; }
    .nav-links li { width: 100%; margin: 0.2rem 0; }
    .nav-links a { padding: 0.8rem 1rem; width: 100%; border-radius: 12px; }
    .nav-links a:hover { background: rgba(255,179,71,0.15); transform: none; }
    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        background: rgba(20,30,45,0.95);
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        border-radius: 16px;
        padding: 0.5rem 0;
        box-shadow: none;
        border: 1px solid rgba(255,255,255,0.05);
    }
    .dropdown-content a { padding: 0.7rem 1.5rem; }
    .dropdown.active .dropdown-content { display: block; }
    .navbar { flex-wrap: wrap; }
}

/* ---------- HERO SLIDER (INDEX PAGE) ---------- */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slides-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.slide.active { opacity: 1; }

.slide::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 2;
}

.hero-content {
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; max-width: 900px;
    text-align: center; color: white;
    z-index: 10;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.hero-content h1 span {
    display: block;
    font-size: 2rem;
    color: #ffb347;
    margin-top: 10px;
}

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

.slider-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.5rem; cursor: pointer;
    z-index: 20; transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.3);
}

.slider-nav:hover { background: #ffb347; color: #1e2a3a; border-color: #ffb347; }
.slider-nav.prev { left: 20px; }
.slider-nav.next { right: 20px; }

.dots-container {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 12px; z-index: 20;
}

.dot {
    width: 14px; height: 14px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%; cursor: pointer; transition: 0.3s;
}

.dot.active { background: #ffb347; transform: scale(1.3); }

/* ---------- PAGE HERO (CATEGORY PAGES) ---------- */
.page-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0 5%;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-glass-box {
    position: relative;
    z-index: 2;
    background: rgba(40, 40, 40, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 4rem 3rem;
    max-width: 850px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.hero-glass-box h1 {
    font-size: 3.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-glass-box p {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 16px 30px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 240px; /* Equal width for Call and WhatsApp */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-btn-call {
    background: #b88e2f; /* Golden/Tan button */
    color: white;
    border: 2px solid #b88e2f;
}

.hero-btn-wa {
    background: rgba(255, 255, 255, 0.8); /* Light button */
    color: #1a1a1a;
    border: 2px solid transparent;
}

.hero-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .hero-glass-box { padding: 3rem 1.5rem; border-radius: 30px; }
    .hero-glass-box h1 { font-size: 2.2rem; }
    .hero-glass-box p { font-size: 1.1rem; }
    .hero-btn { width: 100%; padding: 14px 20px; }
}

/* ---------- SERVICES GRID ---------- */
.services, .section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.services { text-align: center; background: linear-gradient(145deg, #ffffff 0%, #f4f7fb 100%); }

.section-title, .services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e2a3a;
    text-align: center;
}

.section-title small, .services h2 small {
    display: block;
    font-size: 1.3rem;
    color: #ffb347;
    font-weight: 400;
    margin-top: 5px;
}

.services-grid, .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card, .feature-card {
    background: white;
    border-radius: 32px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    border: 1px solid rgba(255,179,71,0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.service-card:hover, .feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(255,179,71,0.25);
    border-color: #ffb347;
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 32px 32px 0 0;
    transition: transform 0.6s ease;
}

.card-content {
    padding: 1.8rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.card-content > i {
    font-size: 2.5rem !important; /* Force size to prevent 'tiny dot' issue */
    color: #ffb347;
    margin-bottom: 1.2rem;
    background: rgba(255, 179, 71, 0.1);
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: 0.3s;
}

.feature-card:hover .card-content > i,
.service-card:hover .card-content > i {
    background: #ffb347;
    color: white;
    transform: scale(1.1);
}

.service-card h3, .feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.7rem;
    color: #1e2a3a;
    font-weight: 700;
}

.service-card p, .feature-card p {
    color: #5a6a7a;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    flex: 1;
}

/* ---------- BUTTONS IN CARDS ---------- */
.card-buttons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
    width: 100%;
}

.card-wa-btn, 
.card-details-btn {
    align-self: stretch !important;
    width: 100% !important;
    padding: 12px 10px;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 50px;
    margin-top: auto; /* Push to bottom if content varies */
}

.card-wa-btn { background: #25D366; color: white; }
.card-details-btn { background: #ffb347; color: #1a1a1a; }
.card-wa-btn:hover, .card-details-btn:hover { opacity: 0.9; transform: translateY(-3px); }

/* ---------- CONTACT INFO SECTION ---------- */
.contact-info-section {
    background: white;
    border-radius: 32px;
    padding: 2.5rem;
    margin: 2rem 5% 1rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,179,71,0.2);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.contact-info-item i { width: 24px; color: #ffb347; font-size: 1.2rem; }
.contact-info-item a { color: #1e2a3a; text-decoration: none; font-weight: 600; transition: 0.3s; }
.contact-info-item a:hover { color: #ffb347; }

/* ---------- KEYWORD LISTS ---------- */
.keyword-list, .keyword-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 1.5rem;
    padding: 0;
}

.keyword-list p, .keyword-grid p {
    display: block;
    margin: 0.25rem 0;
    padding: 0;
    text-align: left;
    width: 100%;
    line-height: 1.5;
    font-size: 0.95rem;
}

.page-hero .keyword-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    width: 100%;
    max-width: 1000px;
    margin-top: 2.5rem;
    align-items: stretch;
}

.page-hero .keyword-list p {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 12px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.page-hero .keyword-list p::before {
    content: '•';
    color: #ffb347;
    margin-right: 8px;
    font-weight: bold;
}

/* ---------- CTA & FOOTER ---------- */
.contact-actions, .cta-section {
    background: linear-gradient(120deg, #1e2a3a, #2c3e50);
    padding: 4rem 5%;
    text-align: center;
    color: white;
    margin-top: 2rem;
}

.action-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-call { background: linear-gradient(145deg, #28a745, #218838); color: white; }
.btn-whatsapp { background: linear-gradient(145deg, #25d366, #1da851); color: white; }
.btn:hover { transform: translateY(-5px) scale(1.03); }

.footer {
    background: #0f1a24;
    color: #e0e6ed;
    padding: 4rem 5% 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-col h4::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 50px; height: 3px; background: #ffb347; border-radius: 10px;
}

.footer-col p { margin-bottom: 0.8rem; display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.footer-col a { color: #e0e6ed; text-decoration: none; transition: 0.3s; display: inline-block; margin-bottom: 0.7rem; }
.footer-col a:hover { color: #ffb347; transform: translateX(5px); }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* ---------- FIXED FLOATING BUTTONS ---------- */
.float-call, .float-wa {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 9999;
    text-decoration: none;
    border: 2px solid white;
}

.float-call { left: 30px; background: linear-gradient(145deg, #28a745, #218838); box-shadow: 0 8px 25px rgba(40,167,69,0.4); }
.float-wa { right: 30px; background: linear-gradient(145deg, #25d366, #1da851); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }

.left-call-btn, .right-wa-btn {
    position: fixed;
    bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 70px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    z-index: 9999;
    transition: 0.3s;
    border: 2px solid #ffb347;
}

.left-call-btn { left: 25px; background: linear-gradient(145deg, #1e2a3a, #0f1a24); }
.right-wa-btn { right: 25px; background: linear-gradient(145deg, #25d366, #1da851); border-color: white; }

@media (max-width: 650px) {
    .left-call-btn, .right-wa-btn { padding: 12px 20px; font-size: 1rem; }
}

@media (max-width: 480px) {
    .left-call-btn span, .right-wa-btn span { display: none; }
    .left-call-btn, .right-wa-btn { padding: 16px; border-radius: 50px; }
}

/* ---------- ABOUT HERO ---------- */
.about-hero {
    background: linear-gradient(135deg, rgba(30,42,58,0.98), rgba(30,42,58,0.85)), url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?w=1600&auto=format&fit=crop') no-repeat center center/cover;
    padding: 6rem 5%;
    text-align: center;
    color: white;
}

.about-hero h1 { font-size: 3.2rem; margin-bottom: 1rem; }
.about-hero h1 span { color: #ffb347; }
.about-hero p { font-size: 1.3rem; max-width: 800px; margin: 0 auto; opacity: 0.9; }

/* ---------- ABOUT WRAPPER ---------- */
.about-wrapper { padding: 4rem 5%; max-width: 1200px; margin: 0 auto; }
.about-block { display: flex; align-items: center; gap: 4rem; margin-bottom: 5rem; }
.about-img { flex: 1; border-radius: 32px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.about-img img { width: 100%; height: auto; display: block; }
.about-text { flex: 1.2; }
.about-text h2 { font-size: 2.22rem; margin-bottom: 1.5rem; color: #1e2a3a; display: flex; align-items: center; gap: 15px; }
.about-text h2 i { color: #ffb347; }
.about-text p { margin-bottom: 1.2rem; font-size: 1.1rem; color: #4a5b6e; }

@media (max-width: 992px) {
    .about-block { flex-direction: column !important; gap: 2rem; }
}

/* ---------- STATS ---------- */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,179,71,0.1);
}

.stat-number { font-size: 3rem; font-weight: 800; color: #ff9f1a; margin-bottom: 0.5rem; }
.stat-label { font-size: 1.1rem; font-weight: 600; color: #1e2a3a; }

/* ---------- MISSION & VISION ---------- */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.mission-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,179,71,0.2);
    transition: 0.3s;
}

.mission-card:hover { transform: translateY(-10px); border-color: #ffb347; }
.mission-card i { font-size: 3rem; color: #ffb347; margin-bottom: 1.5rem; }
.mission-card h3 { font-size: 1.6rem; margin-bottom: 1rem; color: #1e2a3a; }

/* ---------- TEAM GRID ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.team-member i { font-size: 4rem; color: #ffb347; margin-bottom: 1rem; opacity: 0.8; }
.team-member h4 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.team-member p { color: #ffb347; font-weight: 500; }

/* ---------- ABOUT CTA ---------- */
.about-cta {
    background: linear-gradient(135deg, #1e2a3a, #0f1a24);
    padding: 5rem 5%;
    text-align: center;
    color: white;
    border-radius: 60px 60px 0 0;
}

.about-cta h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.btn-group { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; }
.btn-about {
    padding: 15px 35px;
    background: white;
    color: #1e2a3a;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-about:hover { background: #ffb347; transform: translateY(-3px); }

/* ---------- BLOG GRID ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.blog-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.blog-img { width: 100%; height: 220px; object-fit: cover; }

.blog-content { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.blog-date { font-size: 0.9rem; color: #ffb347; margin-bottom: 0.8rem; font-weight: 500; }
.blog-content h3 { font-size: 1.5rem; color: #1e2a3a; margin-bottom: 1rem; line-height: 1.3; }
.blog-excerpt { color: #5a6a7a; font-size: 1rem; margin-bottom: 1.5rem; flex: 1; }

.btn-read-more {
    color: #1e2a3a;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.btn-read-more:hover { color: #ffb347; gap: 12px; }

/* ---------- CONTACT CARDS ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,179,71,0.2);
}

.contact-icon {
    width: 80px; height: 80px;
    background: rgba(255,179,71,0.1);
    color: #ffb347;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.contact-card h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.contact-detail a { font-size: 1.4rem; font-weight: 700; color: #1e2a3a; text-decoration: none; }
.contact-label { color: #5a6a7a; margin-top: 0.5rem; }

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin: 3rem 0;
}

.map-container iframe { width: 100%; height: 100%; border: none; }

.article-box {
    background: white;
    padding: 3rem;
    border-radius: 32px;
    border: 1px solid rgba(0,0,0,0.05);
    margin-top: 3rem;
}

.article-box h3 { font-size: 1.8rem; margin-bottom: 1.5rem; color: #1e2a3a; text-align: center; }
.article-content p { margin-bottom: 1rem; display: flex; align-items: center; gap: 15px; font-size: 1.1rem; }

/* ---------- BLOG ARTICLE DETAIL ---------- */
.article-hero {
    background: linear-gradient(135deg, rgba(30,42,58,0.95), rgba(30,42,58,0.85));
    padding: 6rem 5% 4rem;
    text-align: center;
    color: white;
}

.article-hero h1 { font-size: 3rem; margin-bottom: 1.5rem; line-height: 1.2; }
.article-hero .meta { font-size: 1rem; opacity: 0.8; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

.article-container {
    max-width: 1000px;
    margin: -3rem auto 4rem;
    padding: 0 5%;
    position: relative;
    z-index: 5;
}

.article-content {
    background: white;
    padding: 4rem;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    color: #3e4d5d;
    line-height: 1.8;
}

.article-content h2 { font-size: 2rem; color: #1e2a3a; margin: 3rem 0 1.5rem; }
.article-content h3 { font-size: 1.5rem; color: #1e2a3a; margin: 2rem 0 1rem; }
.article-content p { margin-bottom: 1.5rem; font-size: 1.15rem; }
.article-content ul { margin: 1.5rem 0 2rem 1.5rem; }
.article-content li { margin-bottom: 0.8rem; }

.highlight {
    background: rgba(255,179,71,0.08);
    border-left: 5px solid #ffb347;
    padding: 2rem;
    border-radius: 0 20px 20px 0;
    margin: 2.5rem 0;
    font-style: italic;
}

.author-bio {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #f8fafc;
    padding: 3rem;
    border-radius: 32px;
    margin-top: 4rem;
}

.author-bio img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; }
.author-bio h4 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.author-bio p { font-size: 1rem; color: #5a6a7a; margin-bottom: 1rem; }

@media (max-width: 768px) {
    .article-content { padding: 2rem; border-radius: 24px; }
    .article-hero h1 { font-size: 2.2rem; }
    .author-bio { flex-direction: column; text-align: center; }
}

/* ---------- RELATED LINKS ---------- */
.related-links {
    margin-top: 4rem;
    padding: 3rem;
    background: #f1f5f9;
    border-radius: 32px;
}

.related-links h3 { font-size: 1.5rem; margin-bottom: 2rem; color: #1e2a3a; text-align: center; }

.related-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
}

.related-links-grid a {
    background: white;
    padding: 1rem;
    border-radius: 15px;
    text-decoration: none;
    color: #1e2a3a;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.related-links-grid a:hover {
    background: #ffb347;
    transform: translateY(-3px);
}

.related-links-grid a i { color: #ffb347; }
.related-links-grid a:hover i { color: #1e2a3a; }

/* ---------- GOOGLE REVIEWS MARQUEE ---------- */
.reviews-section {
    padding: 4rem 0;
    background: #fcfdfe;
    overflow: hidden;
    position: relative;
}

.reviews-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: #1e2a3a;
}

.marquee-container {
    display: flex;
    width: fit-content;
    animation: marquee 40s linear infinite;
}

.marquee-container:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-card {
    background: white;
    min-width: 350px;
    margin: 0 1rem;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eff3f6;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.review-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-meta {
    flex: 1;
}

.reviewer-name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1rem;
}

.review-date {
    font-size: 0.8rem;
    color: #8898aa;
}

.google-logo {
    width: 25px !important;
    height: 25px !important;
    object-fit: contain;
}

.stars {
    color: #fbbc05; /* Google Star Color */
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

.review-body {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.5;
    font-style: italic;
}

/* ---------- FAQ SECTION ---------- */
.faq-section {
    padding: 5rem 5%;
    background: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #1e2a3a;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #eff3f6;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: #fcfdfe;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e2a3a;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question:hover {
    background: #f4f7fb;
}

.faq-question i {
    color: #ffb347;
    transition: 0.4s;
}

.faq-item.active {
    border-color: #ffb347;
    box-shadow: 0 10px 25px rgba(255,179,71,0.1);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}


.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #4a5568;
    line-height: 1.6;
}

/* ---------- STATS / SATISFACTION SECTION ---------- */
.stats-section {
    padding: 5rem 5%;
    background: linear-gradient(rgba(30, 42, 58, 0.95), rgba(30, 42, 58, 0.95)), url('images/home c 5.webp') no-repeat center center/cover;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
    transition: 0.4s;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffb347;
}

.stat-card i {
    font-size: 3rem;
    color: #ffb347;
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ==========================================================================
   FINAL MOBILE RESPONSIVENESS SWEEP
   ========================================================================== */
@media (max-width: 768px) {
    /* Global Section Settings */
    .section, .services, .stats-section, .faq-section, .reviews-section {
        padding: 3.5rem 5% !important;
    }

    /* Top Bar */
    .top-bar {
        padding: 0.5rem 5%;
        gap: 0.5rem;
    }
    .top-btn {
        min-width: 100%;
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    /* Navbar */
    .navbar {
        border-radius: 0;
        top: 0;
        left: 0;
        right: 0;
        padding: 0.8rem 1.5rem;
    }
    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(30, 42, 58, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 0.5rem;
        height: auto;
        display: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        border-radius: 0 0 20px 20px;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links a {
        font-size: 1.1rem;
        padding: 1rem;
        border-radius: 12px;
        background: rgba(255,255,255,0.03);
    }
    .dropdown-content {
        display: none; /* Critical: Hide by default in mobile */
        position: static;
        width: 100%;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        margin-top: 0.5rem;
        padding: 0;
        border-radius: 12px;
    }
    .dropdown.active .dropdown-content {
        display: block !important;
    }


    /* Hero Sections */
    .hero-slider, .page-hero {
        height: 100vh;
    }
    .hero-glass-box {
        width: 95%;
        padding: 2.5rem 1.2rem;
        border-radius: 30px;
    }
    .hero-glass-box h1, .page-hero h1 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem;
    }
    .hero-glass-box p, .page-hero p {
        font-size: 1rem !important;
        margin-bottom: 2rem;
    }
    .hero-btn {
        width: 100% !important;
        min-width: 100% !important;
        padding: 14px 20px;
    }

    /* Grids */
    .services-grid, .card-grid, .stats-grid, .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Card Adjustments */
    .card-img {
        height: 180px;
    }
    .card-content h3 {
        font-size: 1.4rem;
    }

    /* Stats */
    .stat-number {
        font-size: 2.2rem;
    }

    /* FAQ */
    .faq-section h2 { font-size: 2rem; }
    .faq-question { font-size: 1rem; padding: 1.2rem; }

    /* Footer */
    .footer-col {
        text-align: center;
        align-items: center;
    }
    .footer-bottom {
        padding: 1.5rem 5%;
    }
}
