:root {
    --primary-bg: #FFFFFF;
    --secondary-bg: #F9FAFB;
    --text-color: #4B5563;
    --heading-color: #111827;
    --accent-color: #0096FF;
    --accent-hover: #007acc;
    --border-color: #E5E7EB;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-main: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--primary-bg);
}

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

ul {
    list-style: none;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

.accent {
    color: var(--accent-color);
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #FFFFFF;
}

.btn-primary:hover,
.nav-link.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    color: white !important;
}

.btn-secondary {
    background-color: transparent;
    color: var(--heading-color);
    border: 2px solid var(--border-color);
    margin-left: 1rem;
}

.btn-secondary:hover {
    border-color: var(--heading-color);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
}

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

.nav-link {
    font-weight: 500;
    color: var(--heading-color);
    padding: 10px 15px;
    /* Improved touch target */
    display: inline-block;
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--heading-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--secondary-bg);
}

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

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

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #0096FF;
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: #EFF6FF;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #DBEAFE;
}

/* About Section */
.about {
    padding: 100px 0;
}

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

.feature-list {
    margin-top: 2rem;
}

.feature-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

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

.stat-item {
    background: var(--secondary-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-weight: 600;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--primary-bg);
}

.contact-card {
    background: var(--secondary-bg);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-link:hover {
    color: var(--accent-color) !important;
}

.contact-form {
    max-width: 500px;
    margin: 2rem auto 0;
}

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-wrapper {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    color: white;
    margin-bottom: 1rem;
    display: block;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 0.25rem;
}

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

.social-links a {
    color: white;
    opacity: 0.7;
}

.social-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.visible {
    opacity: 1;
    transform: none;
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Accordion */
details>summary {
    list-style: none;
}

details>summary::-webkit-details-marker {
    display: none;
}

details>summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--accent-color);
}

details[open]>summary::after {
    content: '-';
}

details[open] {
    border-color: var(--accent-color) !important;
    background-color: #F8FAFC !important;
}

/* Responsive */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

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

    .about-content {
        order: 1;
    }

    .about-stats {
        order: 2;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        padding: 2rem 0;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
    }

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

    .mobile-toggle {
        display: block;
    }

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

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

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

    .hero {
        padding-top: 120px;
    }


    .contact-card {
        padding: 2rem;
    }
}

.contact-card {
    position: relative;
    z-index: 10;
    background: white;
    /* Ensure solid background so grid doesn't show through */
}

/* Sections Alt Background */
.section-alt {
    background-color: var(--secondary-bg);
    padding: 80px 0;
}

/* Problem vs Solution Grid */
.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .problem-solution-grid {
        grid-template-columns: 1fr;
    }
}

.problem-card,
.solution-card {
    padding: 2.5rem;
    border-radius: 12px;
}

.problem-card {
    background-color: #FEF2F2;
    /* Soft red/warning bg */
    border-left: 5px solid #EF4444;
}

.problem-card h3 {
    color: #991B1B;
}

.solution-card {
    background-color: #F0FDFA;
    /* Soft teal/success bg */
    border-left: 5px solid var(--accent-color);
    box-shadow: var(--shadow);
}

.solution-card h3 {
    color: var(--accent-color);
}

/* Services Grid 3-column override (optional, autogrid usually handles it but let's be safe) */
.services-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Hero Background Animation */
.hero {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-color);
    /* Fallback */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Behind content but above hero bg color */
    pointer-events: none;
    overflow: hidden;
}

/* Subtle Dot Grid */
.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#94a3b8 1.5px, transparent 1.5px);
    /* Darker and slightly larger dots */
    background-size: 30px 30px;
    opacity: 0.6;
    /* Increased opacity */
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    /* Improved fade */
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}



/* Orbs removed as per user request */

/* Hero Container - 2 column layout */
.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

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

.hero-content {
    text-align: left;
}

.hero-content h1,
.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #111827;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4B5563;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

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

.photo-wrapper {
    background: linear-gradient(135deg, #60a5fa 0%, #1e3a5f 100%);
    border-radius: 24px;
    padding: 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

.photo-wrapper img {
    width: 380px;
    height: 480px;
    border-radius: 18px;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: -1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #111827;
}

.cta-group {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    align-items: center;
}

/* Contact Section - 2 column layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding-top: 1rem;
}

.contact-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #111827;
}

.contact-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4B5563;
    margin-bottom: 2.5rem;
    max-width: 400px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #4B5563;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #0096FF;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #EFF6FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0096FF;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-form-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #111827;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 1rem;
    color: #111827;
    background: #FFFFFF;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0096FF;
    box-shadow: 0 0 0 3px rgba(0, 150, 255, 0.1);
}

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

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #6B7280;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        order: 2;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-photo {
        order: 1;
    }

    .photo-wrapper img {
        width: 280px;
        height: 350px;
    }

    .cta-group {
        justify-content: center;
    }

    /* Contact responsive */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        text-align: center;
    }

    .contact-description {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-details-list {
        align-items: center;
    }

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

@media (max-width: 768px) {
    .hero-content h1,
    .hero-title {
        font-size: 2.5rem;
    }

    .photo-wrapper img {
        width: 240px;
        height: 300px;
    }

    .cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        display: block;
        text-align: center;
    }

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

    .contact-form-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .btn-secondary {
        margin-left: 0 !important;
    }

    .nav-list {
        height: calc(100vh - 80px);
        padding-top: 4rem;
        z-index: 1001;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-wrapper {
        padding: 1.5rem;
    }

    .orb-1 {
        width: 250px;
        height: 250px;
        right: -50px;
    }

    .orb-2 {
        width: 200px;
        height: 200px;
        left: -20px;
    }
}

.about {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-color);
    /* Ensure consistent background */
}

/* Specific grid adjustment for Extended About section */
.about-wrapper .hero-grid {
    mask-image: linear-gradient(to bottom, transparent 0%, transparent 10%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 10%, black 100%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

/* Placeholder Styling */
::placeholder {
    color: #D1D5DB;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #D1D5DB;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #D1D5DB;
}

/* --- Blog Section Styles --- */

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
    gap: 2rem;
    padding-bottom: 4rem;
}

.blog-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border-color: #BFDBFE;
}

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

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 0.75rem;
}

.blog-category {
    color: #0096FF;
    font-weight: 600;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.blog-title a:hover {
    color: #0096FF;
}

.blog-excerpt {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    display: inline-block;
    color: #0096FF;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.read-more:hover {
    color: #0070CC;
    text-decoration: underline;
}

.read-more.disabled {
    color: #9CA3AF;
    cursor: default;
    text-decoration: none;
}

/* --- Article Detail Styles --- */

.article-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.article-back-link {
    display: inline-block;
    color: #6B7280;
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 500;
    transition: color 0.2s;
}

.article-back-link:hover {
    color: #0096FF;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-meta {
    color: #6B7280;
    font-size: 1rem;
}

.article-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
}

.article-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

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

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

.article-cta {
    background: #F0F9FF;
    border: 1px solid #BAE6FD;
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.article-cta h3 {
    color: #0284C7;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.article-cta p {
    color: #0c4a6e;
    margin-bottom: 1.5rem;
}

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

/* --- Cookie Banner --- */
#cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background-color: #111827;
    color: #F3F4F6;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    font-size: 0.875rem;
    border: 1px solid #374151;
}

.cookie-content {
    flex: 1;
}

.cookie-text {
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: #9CA3AF;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 140px;
    flex-shrink: 0;
}

.btn-cookie-primary,
.btn-cookie-secondary {
    width: 100%;
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cookie-primary {
    background-color: #0096FF;
    color: white;
    border: none;
}

.btn-cookie-primary:hover {
    background-color: #007acc;
}

.btn-cookie-secondary {
    background-color: transparent;
    color: #9CA3AF;
    border: 1px solid #4B5563;
}

.btn-cookie-secondary:hover {
    color: white;
    border-color: white;
}

@media (max-width: 480px) {
    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        max-width: 90%;
        bottom: 1rem;
        padding: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: row;
    }

    .cookie-buttons button {
        flex: 1;
    }
}

/* --- Touch Target Improvements (44px minimum) --- */
.service-card,
.process-card,
.blog-card {
    cursor: pointer;
}

.faq-item summary {
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.contact-link {
    min-height: 44px;
}

/* --- Button Loading Spinner --- */
.btn-loading {
    position: relative;
    pointer-events: none;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spin 0.8s linear infinite;
}

@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Ensure buttons have consistent sizing for loading state */
.btn[type="submit"] {
    min-width: 150px;
    position: relative;
}

/* --- Service Card CTA --- */
.service-cta:hover {
    gap: 0.75rem;
}

.service-card:hover .service-cta {
    gap: 0.75rem;
}

/* --- Contact Section --- */
@media (max-width: 768px) {
    .contact-card {
        padding: 1.5rem !important;
    }

    .contact-details {
        flex-direction: column;
        gap: 1rem;
    }
}