/* ===========================
   PVR Contractors – Main CSS
   Colors: #000 | #ff7700 | #fff
   =========================== */

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

:root {
    --orange: #ff7700;
    --black: #111111;
    --dark: #1a1a1a;
    --gray: #555;
    --light-gray: #f5f5f5;
    --border: #e5e7eb;
    --white: #ffffff;
    --font: 'Open Sans', sans-serif;
    --shadow: 0 4px 20px rgba(0,0,0,.1);
    --radius: 8px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--black);
    font-size: 16px;
    line-height: 1.7;
    background: var(--white);
}

a { color: var(--orange); text-decoration: none; transition: var(--transition); }
a:hover { color: #cc5e00; }
img { max-width: 100%; height: auto; display: block; }

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

/* ===========================
   Topbar
   =========================== */
.topbar {
    background: var(--black);
    color: #ccc;
    font-size: 13px;
    padding: 7px 0;
}
.topbar-inner {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.topbar span { display: flex; align-items: center; gap: 5px; }

/* ===========================
   Header & Navigation
   =========================== */
.site-header {
    background: var(--black);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    gap: 16px;
}
.logo img { height: 54px; width: auto; }

/* Nav List */
.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
}
.nav-link {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--orange); }
.arrow { font-size: 11px; transition: var(--transition); }

.btn-quote {
    background: var(--orange);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}
.btn-quote:hover { background: #cc5e00; color: var(--white) !important; }

/* List Dropdown */
.has-dropdown { position: relative; }
.has-dropdown:hover .arrow,
.has-dropdown:focus-within .arrow { transform: rotate(180deg); }
.has-dropdown:hover .dropdown-list,
.has-dropdown:focus-within .dropdown-list { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    min-width: 230px;
    max-height: 70vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 12px 36px rgba(0,0,0,.22);
    border-top: 3px solid var(--orange);
    padding: 4px 0 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: var(--transition);
    z-index: 200;
}
.dropdown-list li a {
    display: block;
    padding: 7px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
    white-space: nowrap;
    transition: var(--transition);
}
.dropdown-list li a:hover {
    color: var(--orange);
    background: var(--light-gray);
    padding-left: 26px;
}
.dropdown-group {
    padding: 10px 20px 3px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange);
    border-top: 1px solid var(--border);
    cursor: default;
    user-select: none;
}
.dropdown-group:first-child { border-top: none; padding-top: 6px; }

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===========================
   WhatsApp Float
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: 9999;
    color: var(--white);
    transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* ===========================
   Page Hero / Banner
   =========================== */
.page-hero {
    background: linear-gradient(135deg, var(--black) 60%, #2a2a2a);
    color: var(--white);
    padding: 70px 0 50px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('/assets/images/hero-pattern.svg') repeat;
    opacity: .04;
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 12px; line-height: 1.2; }
.page-hero .subtitle { color: var(--orange); font-size: 1.1rem; font-weight: 600; margin-bottom: 14px; }
.page-hero p { color: #ccc; max-width: 700px; font-size: 1rem; }
.breadcrumb { font-size: 13px; color: #888; margin-bottom: 16px; }
.breadcrumb a { color: #aaa; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }

/* Home Hero – background image injected via inline style in index.php */
.home-hero {
    min-height: 560px;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)), #111 center/cover no-repeat;
}
.home-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.home-hero h2 { color: var(--orange); font-size: clamp(1rem, 2vw, 1.4rem); margin-bottom: 20px; }
.home-hero p { font-size: 1.1rem; max-width: 700px; margin: 0 auto 32px; color: #ddd; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: #cc5e00; color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,119,0,.3); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #333; color: var(--white); }

/* ===========================
   Service Cards
   =========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.2rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.service-card p { font-size: 14px; color: var(--gray); margin-bottom: 16px; line-height: 1.6; }
.service-card a.read-more { color: var(--orange); font-weight: 600; font-size: 14px; }
.service-card a.read-more:hover { text-decoration: underline; }

/* ===========================
   Why Choose Us
   =========================== */
.section { padding: 70px 0; }
.section-alt { background: var(--light-gray); }
.section-title { font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.section-subtitle { color: var(--orange); font-weight: 600; font-size: 1rem; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.section-desc { color: var(--gray); max-width: 600px; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 28px;
    margin-top: 40px;
}
.feature-item { text-align: center; padding: 28px 20px; }
.feature-icon { font-size: 2.5rem; margin-bottom: 14px; }
.feature-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-item p { font-size: 14px; color: var(--gray); }

/* Stats Bar */
.stats-bar {
    background: var(--orange);
    padding: 40px 0;
    color: var(--white);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-num { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.stat-label { font-size: 13px; opacity: .9; margin-top: 4px; }

/* ===========================
   Service Page Content
   =========================== */
.service-page { padding: 60px 0; }
.service-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}
.service-content h2 { font-size: 1.6rem; font-weight: 800; margin: 32px 0 12px; color: var(--black); }
.service-content h2:first-child { margin-top: 0; }
.service-content h3 { font-size: 1.15rem; font-weight: 700; margin: 24px 0 8px; color: var(--black); }
.service-content p { margin-bottom: 16px; color: #333; line-height: 1.75; }
.service-content ul, .service-content ol { padding-left: 20px; margin-bottom: 16px; }
.service-content li { margin-bottom: 6px; color: #333; line-height: 1.7; }
.service-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.service-content th, .service-content td { padding: 10px 14px; border: 1px solid var(--border); text-align: left; }
.service-content th { background: var(--light-gray); font-weight: 700; }

/* Sidebar */
.sidebar { position: sticky; top: 90px; }
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: var(--shadow);
}
.widget-header {
    background: var(--black);
    color: var(--white);
    padding: 16px 20px;
    font-weight: 700;
    font-size: 15px;
}
.widget-header.orange { background: var(--orange); }
.widget-body { padding: 20px; }

/* Services List Widget */
.services-list { list-style: none; }
.services-list li { border-bottom: 1px solid var(--border); }
.services-list li:last-child { border-bottom: none; }
.services-list a { display: flex; align-items: center; gap: 8px; padding: 10px 0; color: var(--black); font-size: 14px; }
.services-list a:hover { color: var(--orange); padding-left: 5px; }

/* ===========================
   Quote Form
   =========================== */
.quote-form {
    background: var(--black);
    border-radius: var(--radius);
    padding: 32px;
    color: var(--white);
}
.quote-form h3 { color: var(--orange); font-size: 1.3rem; margin-bottom: 6px; }
.quote-form .form-desc { font-size: 14px; color: #aaa; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: #ccc; }
.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #333;
    border-radius: var(--radius);
    background: #1a1a1a;
    color: var(--white);
    font-family: var(--font);
    font-size: 14px;
    transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--orange); background: #222; }
.form-control::placeholder { color: #666; }
select.form-control option { background: var(--dark); }
textarea.form-control { resize: vertical; min-height: 100px; }
.btn-submit {
    width: 100%;
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}
.btn-submit:hover { background: #cc5e00; transform: translateY(-2px); }
.form-success { display: none; background: #1a3a1a; border: 1px solid #2d6a2d; padding: 16px; border-radius: var(--radius); margin-top: 12px; color: #6fcf6f; font-size: 14px; }

/* ===========================
   FAQ Section
   =========================== */
.faq-section { margin-top: 50px; }
.faq-section h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 24px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 18px 20px;
    text-align: left;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}
.faq-question:hover { background: var(--light-gray); color: var(--orange); }
.faq-question.open { background: var(--black); color: var(--white); }
.faq-icon { width: 24px; height: 24px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 16px; font-weight: 700; flex-shrink: 0; transition: var(--transition); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer-inner { padding: 16px 20px 20px; color: #444; font-size: 15px; line-height: 1.75; border-top: 1px solid var(--border); }

/* ===========================
   Blog
   =========================== */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}
.blog-posts-grid {
    display: grid;
    gap: 32px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: grid;
    grid-template-columns: 1fr;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.blog-card-meta { font-size: 12px; color: #888; display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 10px; }
.blog-card-meta .category { background: var(--orange); color: var(--white); padding: 2px 10px; border-radius: 12px; font-weight: 600; }
.blog-card-body { padding: 28px; }
.blog-card h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-card h2 a { color: var(--black); }
.blog-card h2 a:hover { color: var(--orange); }
.blog-card p { color: var(--gray); font-size: 14px; margin-bottom: 16px; }

/* Single Blog Post */
.blog-post-content h1 { font-size: 2rem; font-weight: 800; margin-bottom: 20px; line-height: 1.3; }
.blog-post-content h2 { font-size: 1.5rem; font-weight: 700; margin: 36px 0 12px; color: var(--black); }
.blog-post-content h3 { font-size: 1.2rem; font-weight: 700; margin: 24px 0 10px; color: var(--orange); }
.blog-post-content p { margin-bottom: 18px; color: #333; line-height: 1.8; }
.blog-post-content ul, .blog-post-content ol { padding-left: 22px; margin-bottom: 18px; }
.blog-post-content li { margin-bottom: 8px; color: #333; line-height: 1.7; }
.blog-post-content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.blog-post-content th, .blog-post-content td { padding: 12px 16px; border: 1px solid var(--border); }
.blog-post-content th { background: var(--light-gray); font-weight: 700; }
.post-meta { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border); font-size: 14px; color: #888; }
.post-meta .category-badge { background: var(--orange); color: var(--white); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; }

/* Blog Sidebar Ads */
.ad-widget { text-align: center; }
.ad-placeholder {
    background: var(--light-gray);
    border: 2px dashed #ccc;
    border-radius: var(--radius);
    padding: 40px 20px;
    color: #999;
    font-size: 13px;
    text-align: center;
}
.ad-placeholder strong { display: block; font-size: 15px; color: #777; margin-bottom: 4px; }

/* Recent Posts Widget */
.recent-post-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.recent-post-item:last-child { border-bottom: none; }
.recent-post-item .rp-text { flex: 1; }
.recent-post-item .rp-title { font-size: 13px; font-weight: 600; color: var(--black); line-height: 1.4; }
.recent-post-item .rp-title:hover { color: var(--orange); }
.recent-post-item .rp-date { font-size: 11px; color: #999; margin-top: 3px; }

/* ===========================
   Related Services
   =========================== */
.related-section { margin-top: 50px; padding-top: 40px; border-top: 1px solid var(--border); }
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}
.related-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    background: var(--white);
    transition: var(--transition);
    text-align: center;
}
.related-card:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow); }
.related-card .icon { font-size: 1.8rem; margin-bottom: 8px; }
.related-card a { color: var(--black); font-weight: 600; font-size: 14px; }
.related-card:hover a { color: var(--orange); }

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    background: var(--black);
    padding: 70px 0;
    text-align: center;
    color: var(--white);
}
.cta-section h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.cta-section p { color: #aaa; font-size: 1.1rem; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ===========================
   About Us
   =========================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-img img { width: 100%; height: 420px; object-fit: cover; }
.about-text h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; }
.about-text p { color: var(--gray); margin-bottom: 16px; }

/* Areas Served */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 28px;
}
.area-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}
.area-card:hover { border-color: var(--orange); background: #fff8f3; }
.area-card .icon { font-size: 2rem; margin-bottom: 8px; }
.area-card strong { display: block; font-size: 15px; margin-bottom: 4px; }
.area-card span { font-size: 13px; color: var(--gray); }

/* ===========================
   Contact Page
   =========================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}
.contact-info {
    background: var(--light-gray);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}
.contact-info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item-icon { width: 48px; height: 48px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-item-text strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.contact-item-text span, .contact-item-text a { color: var(--gray); font-size: 14px; }

/* ===========================
   Services Index Page
   =========================== */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.services-cat-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 40px 0 16px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 24px;
    grid-column: 1 / -1;
}
.services-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.service-cat-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
.service-cat-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.service-cat-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 44px;
    text-align: center;
    margin-top: 2px;
}
.service-cat-body h3 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--black);
}
.service-cat-body p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 8px;
    line-height: 1.5;
}
.service-cat-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ===========================
   Home Features
   =========================== */
.home-services { padding: 70px 0; background: var(--light-gray); }
.home-services-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: -60px;
}
.main-service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}
.main-service-card:hover { border-bottom-color: var(--orange); transform: translateY(-4px); }
.main-service-card img { width: 56px; height: 56px; margin: 0 auto 16px; object-fit: contain; }
.main-service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.main-service-card p { font-size: 13px; color: var(--gray); margin-bottom: 14px; }

/* ===========================
   Footer
   =========================== */
.site-footer { background: var(--dark); color: #aaa; }
.footer-top { padding: 60px 0 40px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-about p { font-size: 14px; line-height: 1.7; margin: 16px 0; color: #888; }
.footer-contact p { font-size: 13px; margin-bottom: 8px; }
.footer-contact a { color: #aaa; }
.footer-contact a:hover { color: var(--orange); }
.footer-col h3 { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--orange); display: inline-block; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: #888; font-size: 13px; transition: var(--transition); }
.footer-col ul a:hover { color: var(--orange); padding-left: 4px; }

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 8px;
}
.btn-whatsapp:hover { background: #1da851; color: var(--white); }

.footer-bottom { background: #111; padding: 20px 0; }
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #666;
}
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: var(--orange); }
.footer-tagline { color: #555; }

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1100px) {
    .dropdown-list { min-width: 200px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .service-layout, .blog-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .about-grid, .contact-layout { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .home-services-cards { grid-template-columns: repeat(2,1fr); margin-top: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--black);
        padding: 70px 20px 30px;
        overflow-y: auto;
        transition: right var(--transition);
        z-index: 999;
    }
    .main-nav.open { right: 0; }
    .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
    .nav-link { padding: 14px 8px; border-radius: 0; border-bottom: 1px solid #222; }
    .dropdown-list {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        border-top: none;
        border-left: 3px solid var(--orange);
        max-height: none;
        min-width: 0;
        width: 100%;
        display: none;
        background: #1e1e1e;
        padding: 4px 0 8px;
        margin-left: 8px;
    }
    .has-dropdown.open .dropdown-list { display: block; }
    .dropdown-list li a { color: #bbb; padding: 7px 16px; white-space: normal; font-size: 13px; }
    .dropdown-list li a:hover { background: transparent; color: var(--orange); padding-left: 22px; }
    .dropdown-group { color: var(--orange); background: #252525; padding: 8px 16px 3px; border-top-color: #333; }
    .btn-quote { margin-top: 12px; text-align: center; border-radius: var(--radius); }
    .topbar-inner { gap: 12px; font-size: 12px; }
    .page-hero h1 { font-size: 1.7rem; }
}

@media (max-width: 600px) {
    .home-services-cards { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .related-grid { grid-template-columns: 1fr 1fr; }
    .areas-grid { grid-template-columns: repeat(2,1fr); }
}

/* ===========================
   Utility
   =========================== */
.text-orange { color: var(--orange); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.pt-0 { padding-top: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
