/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --header-height: 70px;
}

/* In-page anchors: offset for fixed header without JS reading offsetHeight/offsetTop */
section[id] {
    scroll-margin-top: var(--header-height);
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size-adjust: 0.46;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: var(--header-height);
}

/* Font Awesome: reserve inline width before webfont paints (CLS) */
i[class*="fa-"] {
    display: inline-block;
    min-width: 1.25em;
    text-align: center;
    vertical-align: -0.125em;
    line-height: 1;
}

/* Large below-fold footer block: defer layout work until needed */
.footer-areas-served {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: var(--header-height);
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header.header--scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    min-height: var(--header-height);
    padding: 1rem 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.nav-container {
    min-height: 46px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    flex-shrink: 0;
    width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
}

.nav-logo a,
.nav-logo picture {
    display: block;
    width: 100%;
    height: 100%;
}

.nav-logo .logo-img,
.nav-logo img {
    width: 100%;
    height: 100%;
    max-height: 50px;
    object-fit: contain;
    vertical-align: middle;
}

.nav-logo h2 {
    color: #2563eb;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.nav-logo .tagline {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.35rem;
    min-height: 24px;
    align-items: center;
}

.nav-link {
    white-space: nowrap;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.08s ease, background 0.08s ease;
    position: relative;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2563eb;
    transition: width 0.08s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Faculty dropdown in main nav */
.nav-item--dropdown {
    position: relative;
}

.nav-dropdown__toggle {
    background: none;
    border: 0;
    cursor: pointer;
    font: inherit;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    position: relative;
}

.nav-dropdown__chevron {
    font-size: 0.65rem;
    opacity: 0.7;
    transition: transform 0.15s ease;
}

.nav-item--dropdown.is-open .nav-dropdown__chevron,
.nav-item--dropdown:hover .nav-dropdown__chevron {
    transform: rotate(180deg);
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    min-width: 11.5rem;
    margin: 0;
    padding: 0.35rem 0;
    list-style: none;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
    z-index: 1100;
}

.nav-item--dropdown:hover .nav-dropdown__menu,
.nav-item--dropdown.is-open .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown__link {
    display: block;
    padding: 0.55rem 0.95rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.12s ease, color 0.12s ease;
}

.nav-dropdown__link:hover {
    background: #f8fafc;
    color: #2563eb;
}

.nav-dropdown__link::after {
    display: none;
}

.nav-dropdown__toggle::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2563eb;
    transition: width 0.08s ease;
}

.nav-dropdown__toggle:hover::after,
.nav-item--dropdown.is-open .nav-dropdown__toggle::after {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #2563eb;
    display: inline-block;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* Admin area nav bar - consistent button-style links */
.admin-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}
.admin-nav .btn-primary,
.admin-nav .btn-secondary {
    margin: 0;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}
.admin-nav .btn-secondary {
    background: #e5e7eb;
    color: #374151;
    border: 1px solid #d1d5db;
}
.admin-nav .btn-secondary:hover {
    background: #d1d5db;
    color: #111827;
    border-color: #9ca3af;
}
.admin-nav .admin-nav-current {
    background: #f3f4f6;
    color: #6b7280;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: default;
}

/* Inquiries list row action buttons – distinct styles, no plain links */
.inquiry-row-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
}
.inquiry-row-actions .inquiry-btn {
    display: inline-block;
    padding: 0.35rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}
.inquiry-row-actions .inquiry-btn:hover {
    transform: translateY(-1px);
}
.inquiry-row-actions .inquiry-btn--view {
    background: #2563eb;
    color: #fff;
    border-color: #1d4ed8;
}
.inquiry-row-actions .inquiry-btn--view:hover {
    background: #1d4ed8;
    color: #fff;
}
.inquiry-row-actions .inquiry-btn--contacted {
    background: #8b5cf6;
    color: #fff;
    border-color: #7c3aed;
}
.inquiry-row-actions .inquiry-btn--contacted:hover {
    background: #7c3aed;
    color: #fff;
}
.inquiry-row-actions .inquiry-btn--qualified {
    background: #059669;
    color: #fff;
    border-color: #047857;
}
.inquiry-row-actions .inquiry-btn--qualified:hover {
    background: #047857;
    color: #fff;
}
.inquiry-row-actions .inquiry-btn--converted {
    background: #0d9488;
    color: #fff;
    border-color: #0f766e;
}
.inquiry-row-actions .inquiry-btn--converted:hover {
    background: #0f766e;
    color: #fff;
}
.inquiry-row-actions .inquiry-btn--junk {
    background: #6b7280;
    color: #fff;
    border-color: #4b5563;
}
.inquiry-row-actions .inquiry-btn--junk:hover {
    background: #4b5563;
    color: #fff;
}
.inquiry-row-actions .inquiry-btn--archive {
    background: #64748b;
    color: #fff;
    border-color: #475569;
}
.inquiry-row-actions .inquiry-btn--archive:hover {
    background: #475569;
    color: #fff;
}
.inquiry-row-actions .inquiry-btn--delete {
    background: #dc2626;
    color: #fff;
    border-color: #b91c1c;
}
.inquiry-row-actions .inquiry-btn--delete:hover {
    background: #b91c1c;
    color: #fff;
}
/* Legacy class names kept for any other usage */
.inquiry-row-actions .btn-row-action { display: inline-block; padding: 0.35rem 0.6rem; font-size: 0.75rem; font-weight: 600; text-decoration: none; border-radius: 6px; background: #f3f4f6; color: #374151; border: 1px solid #d1d5db; }
.inquiry-row-actions .btn-row-action--view { background: #2563eb; color: #fff; border-color: #1d4ed8; }
.inquiry-row-actions .btn-row-action--delete { background: #dc2626; color: #fff; border-color: #b91c1c; }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: transform 0.2s ease, opacity 0.15s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero — match includes/hero-section.php + critical CSS (async CSS must not resize hero) */
.hero,
.hero-section {
    margin-top: 0 !important;
    position: relative;
}
.hero {
    isolation: isolate;
    color: #fff;
    min-height: 60vh;
    padding: clamp(2rem, 6vw, 5rem) 0;
    overflow: hidden;
}

/* Service pages (Tailwind): transparent/light hero — global .hero sets white text; force readable dark text */
.hero.bg-transparent,
.hero.text-gray-800 {
    color: #1f2937;
}
.hero.bg-transparent h1,
.hero.text-gray-800 h1 {
    color: #0f172a;
}
.hero.bg-transparent p,
.hero.text-gray-800 p {
    color: #334155;
}
.hero.bg-transparent .text-sm,
.hero.text-gray-800 .text-sm {
    color: #475569;
}
.hero.bg-transparent .text-3xl.font-bold.text-blue-600,
.hero.text-gray-800 .text-3xl.font-bold.text-blue-600 {
    color: #2563eb;
}
.hero.bg-transparent .bg-white.bg-opacity-10,
.hero.text-gray-800 .bg-white.bg-opacity-10 {
    background: rgba(255, 255, 255, 0.92) !important;
    border: 1px solid #e2e8f0;
}
.hero.bg-transparent .bg-blue-50,
.hero.text-gray-800 .bg-blue-50 {
    background: #eef4ff !important;
}
.hero.bg-transparent .bg-blue-50 p,
.hero.bg-transparent .bg-blue-50 .font-medium,
.hero.text-gray-800 .bg-blue-50 p,
.hero.text-gray-800 .bg-blue-50 .font-medium {
    color: #334155;
}
.hero.bg-transparent i.text-blue-600,
.hero.text-gray-800 i.text-blue-600 {
    color: #2563eb;
}

@media (max-width: 768px) {
    .hero {
        padding-top: clamp(1.5rem, 4vw, 3rem);
        padding-bottom: clamp(2rem, 4vw, 3rem);
        min-height: auto;
    }
}

.hero::before,
.hero::after {
    z-index: 0;
}

.hero-container,
.hero .content,
.hero .container {
    position: relative;
    z-index: 1;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e293b, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #64748b;
    font-size: 0.9rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-visual i {
    font-size: 4rem;
    color: #2563eb;
    opacity: 0.85;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.service-card.featured .service-icon i {
    color: white;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon i {
    font-size: 2rem;
    color: #2563eb;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card.featured h3 {
    color: white;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #64748b;
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-features i {
    color: #10b981;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.service-card.featured .service-features i {
    color: rgba(255, 255, 255, 0.9);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-features {
    display: grid;
    gap: 1.5rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #64748b;
    line-height: 1.5;
}

.about-visual {
    display: grid;
    gap: 1.5rem;
}

.visual-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.visual-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.visual-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: white;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #64748b;
    line-height: 1.6;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: #2563eb;
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #64748b;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: #f8fafc;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

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

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.faq-question i {
    color: #2563eb;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta .btn-primary {
    background: white;
    color: #2563eb;
}

.cta .btn-primary:hover {
    background: #f8fafc;
}

.cta .btn-secondary {
    border-color: white;
    color: white;
}

.cta .btn-secondary:hover {
    background: white;
    color: #2563eb;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #64748b;
    line-height: 1.5;
}

.contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2563eb;
}

.footer-logo p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2563eb;
}

.footer-contact p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: #2563eb;
    width: 16px;
    min-width: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #2563eb;
}

/* Responsive Design - Modern Mobile Menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        min-height: auto;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: left;
        transition: left 0.2s ease-out, box-shadow 0.2s ease;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        padding: 0.5rem 0;
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        gap: 0;
        list-style: none;
        margin: 0;
        border-top: 1px solid #f1f5f9;
    }

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

    .nav-menu .nav-item {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #f1f5f9;
    }

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

    .nav-item--dropdown .nav-dropdown__menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        border-radius: 0;
        padding: 0 0 0.35rem;
        min-width: 0;
        display: none;
        background: transparent;
    }

    .nav-item--dropdown.is-open .nav-dropdown__menu {
        display: block;
    }

    .nav-item--dropdown .nav-dropdown__toggle {
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
        font-weight: 600;
        color: #1e293b;
    }

    .nav-item--dropdown .nav-dropdown__toggle::after {
        display: none;
    }

    .nav-item--dropdown .nav-dropdown__link {
        padding: 0.55rem 1.25rem 0.55rem 2rem;
        font-size: 0.95rem;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
        font-weight: 600;
        color: #1e293b;
        transition: color 0.06s ease, background 0.06s ease;
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link:active {
        color: #2563eb;
        background: #f8fafc;
    }

    .nav-cta {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}


.contact-info-section{ padding:3rem 0; background:#ffffff; }
.contact-grid{ display:grid; gap:2rem; }

.contact-cards{
  display:grid; gap:1rem;
  grid-template-columns:1fr 1fr; 
}
@media (min-width: 992px){
  .contact-grid{ grid-template-columns: 1.2fr .8fr; align-items:start; }
  .contact-cards{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 576px){
  .contact-cards{ grid-template-columns:1fr; }
}

.card{
  background:#f9fafb; border:1px solid #e5e7eb; border-radius:12px;
  padding:1rem 1rem 1.1rem; box-shadow:0 1px 4px rgba(0,0,0,.04);
}
.card-icon{ width:40px; height:40px; display:grid; place-items:center;
  border-radius:10px; background:#eef2ff; color:#1e3a8a; margin-bottom:.5rem; }
.card h3{ margin:.2rem 0 .4rem; font-size:1.1rem; }
.card .link{ color:#111827; text-decoration:none; }
.card .link:hover{ text-decoration:underline; }
.hours{ list-style:none; padding:0; margin:.4rem 0 0; color:#374151; }

.actions{ display:flex; gap:.5rem; flex-wrap:wrap; margin-top:.6rem; }
.btn{ display:inline-block; padding:.6rem .9rem; border-radius:999px; font-weight:700; text-decoration:none; }
.btn--primary{ background:#2563eb; color:#fff; }
.btn--ghost{ background:#fff; color:#111827; border:1px solid #e5e7eb; }
.btn--whatsapp{ background:#25D366; color:#fff; }

.map-wrap{ display:grid; gap:1rem; }
.map-embed iframe{ width:100%; height:320px; border:0; border-radius:12px; }
.address{ background:#f9fafb; border:1px solid #e5e7eb; border-radius:12px; padding:1rem; }

.floating-wa{
  position:fixed; right:16px; bottom:16px; width:56px; height:56px;
  border-radius:50%; background:#25D366; color:#fff; display:grid; place-items:center;
  box-shadow:0 8px 20px rgba(0,0,0,.2); z-index:9999;
}
.floating-wa i{ font-size:26px; }
.floating-wa:hover{ transform: translateY(-1px); }

/* Location + Service LASER pages – never overlap breadcrumb */
.loc-hero {
  margin-top: 0 !important;
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
}
.loc-hero::before,
.loc-hero::after {
  z-index: 0;
}
.loc-hero__inner,
.loc-hero .content,
.loc-hero .container {
  position: relative;
  z-index: 1;
}
.loc-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.loc-hero__content {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  color: white;
}
.loc-hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.loc-hero__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: white;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.loc-hero__title span { background: linear-gradient(45deg, #FFD700, #FFA500); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline-block; }
.loc-hero__subtext {
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.loc-hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.loc-hero__btn-primary, .loc-hero__btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.loc-hero__btn-primary { background: white; color: #1e40af; box-shadow: 0 4px 14px rgba(0,0,0,0.15); }
.loc-hero__btn-primary:hover { background: #f1f5f9; }
.loc-hero__btn-secondary { background: transparent; border: 2px solid white; color: white; }
.loc-hero__btn-secondary:hover { background: white; color: #1e40af; }
.loc-hero__icons { display: flex; justify-content: center; gap: 2rem; margin-top: 3rem; flex-wrap: wrap; }
.loc-hero__icon-item { text-align: center; }
.loc-hero__icon-item i { font-size: 3rem; color: #FFD700; margin-bottom: 0.5rem; display: block; text-shadow: 0 2px 10px rgba(255,215,0,0.3); }
.loc-hero__icon-item span { font-size: 0.9rem; color: rgba(255,255,255,0.9); }
.loc-section { padding: 4rem 0; }
.loc-section--gray { background: #f9fafb; }
.loc-section__inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.loc-section__title { font-size: 1.875rem; font-weight: 700; margin-bottom: 1.5rem; text-align: center; color: #1e293b; }
.loc-card { background: white; padding: 1.5rem; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.08); margin-bottom: 1.5rem; }
.loc-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; color: #1e40af; }
.loc-grid-2 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .loc-grid-2 { grid-template-columns: 1fr 1fr; } }
.loc-grid-3 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .loc-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.loc-faq-item { background: white; padding: 1.25rem; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); margin-bottom: 1rem; }
.loc-faq-item h3 { font-size: 1.125rem; font-weight: 600; color: #1e40af; margin-bottom: 0.5rem; }
.loc-faq-item p { color: #374151; line-height: 1.6; margin: 0; }
.loc-cta { padding: 4rem 0; background: #2563eb; color: white; text-align: center; }
.loc-cta h2 { font-size: 1.875rem; font-weight: 700; margin-bottom: 1rem; }
.loc-cta p { font-size: 1.125rem; margin-bottom: 1.5rem; max-width: 42rem; margin-left: auto; margin-right: auto; }
.loc-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.loc-cta__btn { display: inline-block; padding: 0.75rem 1.5rem; border-radius: 8px; font-weight: 600; text-decoration: none; transition: opacity 0.2s ease; }
.loc-cta__btn--white { background: white; color: #2563eb; }
.loc-cta__btn--outline { background: transparent; border: 2px solid white; color: white; }
.loc-cta__btn:hover { opacity: 0.95; }
/* Breadcrumb bar: single source from header, never overlapped by hero */
.breadcrumb-bar {
  position: relative;
  z-index: 50;
  background: #fff;
  padding: 12px 0;
  min-height: 48px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #6b7280;
}
.breadcrumb-bar .container {
  width: 100%;
}
.breadcrumb-bar a {
  color: inherit;
  text-decoration: none;
}
.breadcrumb-bar a:hover {
  text-decoration: underline;
}

.loc-breadcrumb { padding: 0.75rem 0; font-size: 0.9rem; color: #6b7280; }
.loc-breadcrumb a { color: #2563eb; text-decoration: none; }
.loc-breadcrumb a:hover { text-decoration: underline; }
.loc-service-links { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.loc-service-links a { display: inline-block; padding: 0.6rem 1.2rem; background: #eff6ff; color: #1e40af; border-radius: 8px; font-weight: 600; text-decoration: none; border: 2px solid #bfdbfe; transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; }
.loc-service-links a:hover { background: #dbeafe; }

/* Service location links: grouped state/city cards (service pages) */
.service-location-links {
  padding: 2.5rem 0;
  background: #f8fafc;
}
.service-location-links__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}
.service-location-links__intro {
  color: #64748b;
  margin-bottom: 1.5rem;
  max-width: 42rem;
}
.service-location-links__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .service-location-links__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .service-location-links__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.service-location-links__card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  min-height: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.service-location-links__state {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e40af;
  margin: 0 0 0.75rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
}
.service-location-links__state a {
  color: inherit;
  text-decoration: none;
}
.service-location-links__state a:hover {
  text-decoration: underline;
}
.service-location-links__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  flex: 1;
}
.service-location-links__item {
  margin-bottom: 0.35rem;
}
.service-location-links__item a {
  color: #334155;
  text-decoration: none;
  font-size: 0.95rem;
}
.service-location-links__item a:hover {
  color: #1e40af;
  text-decoration: underline;
}
.service-location-links__view-all {
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
}
.service-location-links__view-all a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #eff6ff;
  color: #1e40af;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #bfdbfe;
  transition: background 0.2s, color 0.2s;
}
.service-location-links__view-all a:hover {
  background: #dbeafe;
  color: #1e3a8a;
}

/* SEO internal links block for location-service pages */
.seo-internal-links {
  padding: 3rem 0;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}
.seo-internal-links__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.seo-internal-links__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  text-align: center;
}
.seo-internal-links__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .seo-internal-links__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.seo-internal-links__group {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.seo-internal-links__group-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  color: #1e40af;
}
.seo-internal-links__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.seo-internal-links__item {
  margin-bottom: 0.4rem;
}
.seo-internal-links__item:last-child {
  margin-bottom: 0;
}
.seo-internal-links__item a {
  color: #2563eb;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 600;
}
.seo-internal-links__item a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}
.seo-internal-links__cta {
  margin-top: 1.75rem;
  font-size: 0.95rem;
  color: #6b7280;
  text-align: center;
}

/* Location Authority Boost block */
.seo-authority-block {
  margin-top: 40px;
  padding: 25px;
  background: #f8fafc;
}
.seo-authority-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1e293b;
}
.seo-authority-block p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.seo-authority-trust h3,
.seo-authority-nearby h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem;
  color: #1e40af;
}
.seo-authority-trust ul {
  padding-left: 18px;
  margin: 0 0 0.5rem;
}
.seo-authority-trust li {
  margin-bottom: 6px;
  color: #374151;
}

/* Sticky WhatsApp CTA. --public clears Tawk.to bubble + “We Are Here” teaser; --admin keeps low (no Tawk on admin). */
#whatsapp-sticky {
  position: fixed;
  right: 20px;
  z-index: 9999;
}
#whatsapp-sticky.whatsapp-sticky--public {
  bottom: 168px;
}
#whatsapp-sticky.whatsapp-sticky--admin {
  bottom: 20px;
}

#whatsapp-sticky a {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

#whatsapp-sticky a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

#whatsapp-sticky a:focus-visible {
  outline: 3px solid #14532d;
  outline-offset: 3px;
}

@media (max-width: 480px) {
  #whatsapp-sticky {
    right: 12px;
    left: auto;
  }
  #whatsapp-sticky.whatsapp-sticky--public {
    bottom: 188px;
  }

  #whatsapp-sticky a {
    padding: 10px 14px;
    font-size: 13px;
  }
}

