/* Common Styles for My Web Consultant */

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

html {
    scroll-behavior: smooth;
}

:root {
    --primary-blue: #1e3a8a;
    --accent-cyan: #06b6d4;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --border-light: #e2e8f0;
    --highlight-bg: #eff6ff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 110px;
}

@media (max-width: 640px) {
    body {
        padding-top: 90px;
    }
}

/* Ensure data-include wrappers don't interfere with sticky positioning */
[data-include] {
    display: contents;
}

/* Header Styles */
header {
    background: var(--white);
    padding: 5px 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    height: 90px;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown .nav-link {
    color: var(--text-dark) !important;
    text-decoration: none !important;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
    flex-direction: row !important;
    white-space: nowrap;
}

.nav-dropdown .nav-link:visited {
    color: var(--text-dark) !important;
    display: inline-flex !important;
}

.nav-dropdown .nav-link:link {
    color: var(--text-dark) !important;
    display: inline-flex !important;
}

.nav-dropdown .nav-link::after {
    content: '▼' !important;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    display: inline-block !important;
    flex-shrink: 0;
}

.nav-dropdown:hover .nav-link {
    color: var(--accent-cyan) !important;
}

.nav-dropdown:hover .nav-link:visited {
    color: var(--accent-cyan) !important;
}

.nav-dropdown:hover .nav-link:link {
    color: var(--accent-cyan) !important;
}

.nav-dropdown:hover .nav-link::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    z-index: 1000;
    border: 1px solid var(--border-light);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    height: 5px;
    background: transparent;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
    animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--accent-cyan);
    padding-left: 1.75rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-link:hover {
    color: var(--accent-cyan);
}

.phone-icon {
    width: 20px;
    height: 20px;
}

.cta-button {
    background: linear-gradient(135deg, #0e3780 0%, #03e2d0 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 55, 128, 0.4);
}

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

/* Footer Styles */
footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 2rem 5%;
    text-align: center;
    margin-top: 4rem;
}

footer p {
    opacity: 0.9;
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    nav {
        display: none;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .header-right {
        order: 3;
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 640px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 0.75rem;
    }

    .phone-link,
    .cta-button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .logo {
        height: 70px;
    }
}

/* ========================================
   BLOG STYLES
   ======================================== */

/* Blog Index Page */
.page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0ea5e9 100%);
    color: var(--white);
    padding: 4rem 5%;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.blog-section {
    padding: 4rem 5%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.2);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.blog-card-meta svg {
    width: 16px;
    height: 16px;
    color: var(--accent-cyan);
}

.blog-card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-card h2 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.blog-card-category {
    background: var(--highlight-bg);
    color: var(--primary-blue);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.read-more {
    color: var(--accent-cyan);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
}

.read-more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more svg {
    transform: translateX(3px);
}

.coming-soon {
    opacity: 0.7;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(6, 182, 212, 0.05));
}

.coming-soon .blog-card-image {
    filter: grayscale(20%);
}

.coming-soon-badge {
    background: var(--accent-cyan);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Blog Article Pages */
.blog-container {
    max-width: 800px;
    margin: 3rem auto;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
}

.blog-hero {
    width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.article-content {
    padding: 3rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-light);
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.meta-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent-cyan);
}

.article-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
}

.article-content h2 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin: 2.5rem 0 1rem;
    line-height: 1.3;
}

.article-content h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin: 2rem 0 1rem;
    line-height: 1.3;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.highlight-box {
    background: var(--highlight-bg);
    border-left: 4px solid var(--accent-cyan);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--text-dark);
    font-weight: 500;
}

.checklist {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(30, 58, 138, 0.05));
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.checklist h3 {
    margin-top: 0;
}

.checklist ul {
    list-style: none;
    padding: 0;
}

.checklist li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
    font-size: 1.3rem;
}

.example-box {
    background: var(--white);
    border: 2px solid var(--border-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.example-box h4 {
    color: var(--primary-blue);
    margin-top: 0;
    font-size: 1.1rem;
}

.example-box p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.stat-box {
    background: var(--white);
    border: 2px solid var(--accent-cyan);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-cyan);
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0 0;
}

.cta-box h3 {
    color: var(--white);
    margin-top: 0;
    font-size: 1.8rem;
}

.cta-box p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.cta-box .cta-button {
    background: var(--white);
    color: var(--primary-blue);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.cta-box .cta-button:hover {
    background: var(--light-bg);
}

/* Blog Responsive Styles */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }

    .page-hero p {
        font-size: 1.1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card-image {
        height: 180px;
    }

    .article-content {
        padding: 2rem 1.5rem;
    }

    .article-content h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }

    .article-content h3 {
        font-size: 1.2rem;
    }

    .article-content p {
        font-size: 1rem;
    }

    .blog-container {
        margin: 1.5rem;
    }
}

/* ========================================
   HOMEPAGE STYLES
   ======================================== */

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0ea5e9 100%);
    color: var(--white);
    padding: 5rem 5%;
    text-align: center;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        75deg,
        transparent 30%,
        rgba(255, 255, 255, 0.12) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    animation: sheenMove 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sheenMove {
    0% {
        transform: translateX(-100%);
    }
    25% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.hero .cta-button {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* Trust Signals Bar */
.trust-bar {
    background: var(--white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 1.5rem 5%;
}

.trust-signals {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.trust-divider {
    color: var(--border-light);
    font-weight: 300;
}

/* Section Titles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* Services Section */
.services {
    padding: 5rem 5%;
    background: var(--white);
}

/* Situations Section */
.situations {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.situations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.situation-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    display: block;
}

.situation-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.15);
    border-color: var(--accent-cyan);
}

.situation-card::before {
    content: "→";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-cyan);
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.situation-card:hover::before {
    opacity: 1;
}

.situation-card p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    padding-right: 2rem;
}

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

.service-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
}

.service-card h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Why Choose Us */
.why-choose {
    padding: 5rem 5%;
    background: var(--light-bg);
}

/* Pricing Section */
.pricing {
    padding: 5rem 5%;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

.pricing-card {
    background: var(--light-bg);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.pricing-card h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.price-range {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.price-period {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
}

.consultation-badge {
    background: linear-gradient(135deg, #0e3780 0%, #03e2d0 100%);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 2rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.benefit-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.benefit-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-content p {
    color: var(--text-gray);
}

/* About Section */
.about {
    padding: 5rem 5%;
    background: var(--white);
}

/* FAQ Section */
.faq {
    padding: 5rem 5%;
    background: var(--light-bg);
}

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
}

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

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

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
}

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

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    background: var(--light-bg);
}

/* Sticky CTA Bar */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 1rem 5%;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.sticky-cta-text {
    font-weight: 600;
    color: var(--text-dark);
}

.sticky-cta-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.sticky-cta .phone-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sticky-cta .phone-link svg {
    width: 18px;
    height: 18px;
}

.sticky-cta .cta-button {
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.contact-info h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 1.1rem;
}

.info-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.contact-form h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-form iframe {
    width: 100%;
    min-height: 500px;
    border: none;
}

/* Skip Navigation Link */
.skip-link {
    position: fixed;
    top: -40px;
    left: 0;
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

/* Keyboard Focus Indicators */
a:focus,
button:focus {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
}

/* Homepage Responsive Styles */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
    }

    .trust-signals {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .trust-divider {
        display: none;
    }

    .sticky-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .sticky-cta .phone-link,
    .sticky-cta .cta-button {
        width: 100%;
        justify-content: center;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }

    .situation-card p {
        font-size: 1rem;
    }

    .trust-item {
        font-size: 0.8rem;
    }

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

    .price-range {
        font-size: 1.75rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }
}