/* ============================================
   AC Experts Qatar - Main Stylesheet
   Mobile-first responsive design
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #0056A6;
    --primary-dark: #003D75;
    --primary-light: #E8F0FE;
    --accent: #00B4D8;
    --accent-dark: #0096B7;
    --cta: #2ECC71;
    --cta-dark: #27AE60;
    --whatsapp: #25D366;
    --dark: #1A1A2E;
    --text: #333333;
    --text-light: #666666;
    --light-bg: #F7F9FC;
    --white: #FFFFFF;
    --border: #E0E6ED;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
    color: var(--accent);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.3;
    font-weight: 600;
}

h1 { font-size: 2rem; margin-bottom: 1rem; }
h2 { font-size: 1.6rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; }

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-align: center;
    justify-content: center;
}

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

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

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

.btn-accent:hover {
    background: var(--accent-dark);
    color: var(--white);
}

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

.btn-cta:hover {
    background: var(--cta-dark);
    color: var(--white);
}

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

.btn-whatsapp:hover {
    background: #1EBE5D;
    color: var(--white);
}

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

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

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

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

.btn-block {
    display: flex;
    width: 100%;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* --- Top Bar --- */
.top-bar {
    background: var(--dark);
    color: var(--white);
    font-size: 0.8rem;
    padding: 6px 0;
    display: none;
}

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

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ccc;
    text-decoration: none;
}

a.top-bar-item:hover {
    color: var(--white);
}

.top-bar-phone {
    color: var(--accent) !important;
    font-weight: 600;
}

/* --- Header / Navigation --- */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    padding: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.logo img {
    height: 45px;
    width: auto;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all var(--transition);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.menu-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    padding: 80px 24px 24px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    overflow-y: auto;
    z-index: 999;
}

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

.nav-menu li {
    border-bottom: 1px solid var(--border);
}

.nav-menu > li > a {
    display: block;
    padding: 14px 0;
    color: var(--dark);
    font-weight: 500;
    font-size: 1rem;
}

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

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    border-radius: var(--radius) !important;
    padding: 12px 24px !important;
    text-align: center;
    margin-top: 10px;
    display: block !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
}

/* Dropdown */
.dropdown {
    display: none;
    padding-left: 16px;
}

.has-dropdown.open .dropdown {
    display: block;
}

.dropdown li {
    border-bottom: 1px solid var(--border);
}

.dropdown a {
    display: block;
    padding: 10px 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.dropdown a:hover {
    color: var(--primary);
}

/* Mobile menu overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.nav-overlay.active {
    display: block;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.03);
    transform: rotate(15deg);
}

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

.hero h1 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* --- Trust Badges --- */
.trust-badges {
    padding: 40px 0;
    background: var(--white);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.badge-item {
    text-align: center;
    padding: 20px 16px;
    border-radius: var(--radius);
    background: var(--light-bg);
}

.badge-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    stroke: var(--white);
    fill: none;
}

.badge-item h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.badge-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* --- Section Styles --- */
.section {
    padding: 50px 0;
}

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

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

.section-title h2 {
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

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

.section-title p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 12px auto 0;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    text-align: center;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
    fill: none;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.service-card h3 a {
    color: var(--dark);
}

.service-card h3 a:hover {
    color: var(--primary);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-card .btn {
    font-size: 0.85rem;
    padding: 8px 20px;
}

/* --- About / Why Choose Us --- */
.about-section .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-content h2 {
    margin-bottom: 16px;
}

.about-list {
    margin-top: 16px;
}

.about-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text);
}

.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 18px;
    height: 18px;
    background: var(--cta);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.testimonial-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--primary-light);
    font-family: Georgia, serif;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--text);
    margin-bottom: 16px;
    padding-top: 24px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-light);
}

.stars {
    color: #FFB800;
    margin-bottom: 8px;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.cta-banner p {
    opacity: 0.9;
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* --- FAQ Section --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.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-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform var(--transition);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
    background: var(--light-bg);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: var(--text-light);
}

.breadcrumb-list a {
    color: var(--text-light);
}

.breadcrumb-list a:hover {
    color: var(--primary);
}

.breadcrumb-list .active {
    color: var(--primary);
    font-weight: 500;
}

/* --- Page Header (inner pages) --- */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 8px;
}

.page-header p {
    opacity: 0.9;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Content Layout with Sidebar --- */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0;
}

.content-main {
    min-width: 0;
}

.content-main h2 {
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main ul,
.content-main ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.content-main ul {
    list-style: disc;
}

.content-main ol {
    list-style: decimal;
}

.content-main li {
    margin-bottom: 0.5rem;
}

/* --- Sidebar --- */
.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}

.sidebar-contact {
    background: var(--primary);
    color: var(--white);
    border: none;
    text-align: center;
}

.sidebar-contact h3 {
    color: var(--white);
}

.sidebar-contact .btn {
    margin-top: 8px;
}

.sidebar-links li {
    border-bottom: 1px solid var(--border);
}

.sidebar-links a {
    display: block;
    padding: 10px 0;
    color: var(--text);
    font-size: 0.9rem;
}

.sidebar-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.sidebar-hours p {
    margin-bottom: 0.5rem;
}

.sidebar-address {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* --- Contact Form --- */
.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition);
}

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

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

/* --- Blog Cards --- */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 20px;
}

.blog-card-date {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.blog-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.blog-card h3 a {
    color: var(--dark);
}

.blog-card h3 a:hover {
    color: var(--primary);
}

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

/* --- Areas Grid --- */
.areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.area-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.area-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.area-card h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.area-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* --- Process Steps --- */
.process-steps {
    counter-reset: step;
}

.process-step {
    position: relative;
    padding-left: 60px;
    margin-bottom: 24px;
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.process-step h3 {
    margin-bottom: 4px;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* --- Related Services --- */
.related-services {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.related-services h2 {
    margin-bottom: 16px;
}

.related-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.related-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--light-bg);
    border-radius: var(--radius);
    color: var(--text);
    font-weight: 500;
    transition: all var(--transition);
}

.related-link:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- Footer --- */
.site-footer {
    background: var(--dark);
    color: #ccc;
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 40px;
}

.site-footer h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}

.site-footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.site-footer ul li {
    margin-bottom: 8px;
}

.site-footer ul a {
    color: #aaa;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.site-footer ul a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-contact svg {
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #aaa;
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--white);
}

/* --- 404 --- */
.error-page {
    text-align: center;
    padding: 80px 16px;
}

.error-page h1 {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* --- Map --- */
.map-container {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 1.5rem;
}

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

/* --- Utility --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ============================================
   TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .top-bar {
        display: block;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .badges-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

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

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

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

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

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

    .section {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .map-container {
        height: 400px;
    }
}

/* ============================================
   DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: transparent;
        padding: 0;
        box-shadow: none;
        display: flex;
        align-items: center;
        gap: 4px;
        overflow: visible;
    }

    .nav-menu li {
        border: none;
    }

    .nav-menu > li > a {
        padding: 8px 14px;
        font-size: 0.9rem;
    }

    .nav-cta {
        margin-top: 0 !important;
        padding: 10px 20px !important;
    }

    /* Desktop dropdown */
    .has-dropdown {
        position: relative;
    }

    .dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        border-radius: var(--radius);
        min-width: 220px;
        padding: 8px 0;
        z-index: 100;
    }

    .has-dropdown:hover .dropdown {
        display: block;
    }

    .dropdown li {
        border: none;
    }

    .dropdown a {
        padding: 10px 20px;
    }

    .dropdown a:hover {
        background: var(--light-bg);
    }

    .hero {
        padding: 100px 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .content-wrapper {
        grid-template-columns: 1fr 320px;
    }

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section {
        padding: 80px 0;
    }
}

/* ============================================
   LARGE DESKTOP (1280px+)
   ============================================ */
@media (min-width: 1280px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .areas-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
