
/* Reset & Base Variables */
:root {
    --primary: #0f172a;      /* Deep Navy */
    --primary-light: #1e293b;
    --accent: #f59e0b;       /* Amber / Orange CTA */
    --accent-hover: #d97706;
    --text-main: #334155;
    --text-heading: #0f172a;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 800px;
}

.section-padding {
    padding: 5rem 0;
}

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

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

.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.w-100 { width: 100%; }

.section-lead {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--text-main);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}
.btn-primary:hover {
    background-color: var(--accent-hover);
    color: #fff;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    transform: translateY(-1px);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background-color: transparent;
}
.btn-outline:hover {
    background-color: var(--primary);
    color: #fff;
}

.btn-accent {
    background-color: var(--accent);
    color: #fff;
}
.btn-accent:hover {
    background-color: var(--accent-hover);
    color: #fff;
}

/* Header & Nav */
.site-header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.main-nav ul {
    display: flex;
    gap: 1.25rem;
}

.main-nav a {
    color: var(--text-heading);
    font-weight: 500;
    font-size: 0.9rem;
}
.main-nav a:hover {
    color: var(--accent);
}

/* Active page highlight */
.main-nav a[aria-current="page"] {
    color: var(--accent);
    font-weight: 600;
}

.nav-cta {
    padding: 0.5rem 1.25rem;
    white-space: nowrap;
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    background-color: var(--primary);
    color: #fff;
    padding: 5rem 0;
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.97) 0%, rgba(30, 41, 59, 0.93) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.02) 10px, rgba(255,255,255,0.02) 20px);
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 800px;
}

/* Credibility Badge */
.hero-badge {
    display: inline-block;
    background-color: rgba(245, 158, 11, 0.15);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.hero h1 {
    color: #fff;
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.hero-subtitle p {
    margin-bottom: 0.75rem;
}

/* Hero Trust Points */
.hero-trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.hero-trust-points span {
    white-space: nowrap;
}

.hero-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #64748b;
    font-style: italic;
}

.hero-response-claim {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 1rem;
    background-color: rgba(245, 158, 11, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border-left: 3px solid var(--accent);
    display: inline-flex;
}

.icon-bolt {
    width: 16px;
    height: 16px;
    fill: var(--accent);
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero .btn-outline {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}
.hero .btn-outline:hover {
    background-color: #fff;
    color: var(--primary);
    border-color: #fff;
}

/* Trust Bar */
.trust-bar {
    background-color: var(--primary);
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.trust-bar-item strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.trust-bar-item span {
    color: #94a3b8;
    font-size: 0.8rem;
}

/* Page Header */
.page-header {
    background-color: var(--primary-light);
    color: #fff;
    padding: 3.5rem 0;
    text-align: center;
}
.page-header h1 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}
.page-header p {
    color: #cbd5e1;
}

/* Partners / Target Audience */
.partners-section {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}
.partner-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}
.tag {
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

/* Grid Layouts */
.grid-card, .grid-2-col, .grid-3-col, .materials-grid, .gallery-grid, .blog-grid {
    display: grid;
    gap: 2rem;
}

.grid-card { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-2-col { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3-col { grid-template-columns: repeat(3, 1fr); }
.materials-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.gallery-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.blog-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* Cards & Elements */
.card, .content-card, .material-group, .service-row {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effects for cards */
.card:hover, .material-group:hover, .service-row:hover, .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.material-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}
.material-list li:last-child {
    border-bottom: none;
}
.material-list li::before {
    content: "✓";
    color: var(--accent);
    margin-right: 8px;
    font-weight: bold;
}

/* Checklist Section */
.checklist-box {
    max-width: 500px;
    margin: 2rem auto;
    text-align: left;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.checklist-list {
    list-style: none;
}

.checklist-list li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
    color: var(--text-heading);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}

.checklist-list li:last-child {
    border-bottom: none;
}

/* Workflow Steps */
.workflow-section {
    background-color: var(--primary);
    color: #fff;
}

.workflow-section h2 {
    color: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    text-align: center;
    margin-top: 3rem;
}
.step-number {
    width: 55px;
    height: 55px;
    background-color: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 auto 1rem auto;
}

.step-item h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.step-item p {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Services */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.service-row {
    padding: 3rem;
}
.service-content ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}
.service-content ul li {
    list-style-type: disc;
    margin-bottom: 0.5rem;
}

/* Gallery */
.gallery-card {
    padding: 0;
    overflow: hidden;
}
.img-placeholder {
    background-color: #cbd5e1;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-weight: 600;
}
.gallery-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.gallery-info {
    padding: 1.25rem;
}
.gallery-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.gallery-info p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* FAQ */
.faq-item {
    margin-bottom: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: background-color 0.2s ease;
}
.faq-question:hover {
    background-color: var(--bg-light);
}
.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 1.5rem;
    max-height: 500px;
}
.icon {
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item.active .icon {
    transform: rotate(45deg);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info-panel, .contact-form-panel {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
}
.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

/* Blog */
.blog-card {
    padding: 2rem;
}
.blog-date {
    font-size: 0.85rem;
    color: #64748b;
    display: block;
    margin-bottom: 0.5rem;
}
.read-more {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--accent);
}
.read-more:hover {
    color: var(--accent-hover);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
}
.cta-section h2 {
    color: #fff;
}
.cta-section p {
    color: #cbd5e1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.site-footer {
    background-color: var(--primary);
    color: #cbd5e1;
    padding-top: 4rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-col h3, .footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
}
.footer-col ul li {
    margin-bottom: 0.75rem;
}
.footer-col a {
    color: #cbd5e1;
}
.footer-col a:hover {
    color: var(--accent);
}
.footer-bottom {
    background-color: #020617;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.wa-float-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* iPhone safe area */
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
}

.wa-float-btn svg {
    width: 32px;
    height: 32px;
}

.wa-float-btn:hover {
    transform: scale(1.1);
    color: #FFF;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45);
}

/* Pulse animation for WhatsApp button */
.wa-float-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    z-index: -1;
    animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ========================================
   RESPONSIVE: Desktop → Laptop → Tablet → Mobile
   ======================================== */

/* Large desktop to laptop */
@media (max-width: 1100px) {
    .main-nav ul {
        gap: 1rem;
    }
    .main-nav a {
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .trust-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .grid-3-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media (max-width: 768px) {
    .section-padding {
        padding: 3.5rem 0;
    }
    
    .hero {
        padding: 3.5rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
        letter-spacing: -0.3px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-trust-points {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    .hero .btn {
        width: 100%;
        text-align: center;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        height: calc(100dvh - 70px);
        background-color: #fff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
        gap: 0;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-cta {
        width: 100%;
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
    
    .trust-bar-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .trust-bar-item strong {
        font-size: 0.8rem;
    }
    
    .trust-bar-item span {
        font-size: 0.7rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .grid-3-col {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-header {
        padding: 2.5rem 0;
    }
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

/* Small mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        width: 92%;
    }
    
    .section-padding {
        padding: 2.5rem 0;
    }
    
    .hero {
        padding: 2.5rem 0;
    }
    
    .hero h1 {
        font-size: 1.65rem;
        line-height: 1.25;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-trust-points {
        font-size: 0.8rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .trust-bar {
        padding: 1rem 0;
    }
    
    .trust-bar-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .trust-bar-item strong {
        font-size: 0.75rem;
    }
    
    .trust-bar-item span {
        font-size: 0.65rem;
        display: none;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .step-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        text-align: left;
    }
    
    .step-number {
        margin: 0;
        flex-shrink: 0;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .checklist-box {
        padding: 1.25rem;
    }
    
    .checklist-list li {
        font-size: 0.95rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    h2 {
        font-size: 1.35rem;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    .page-header h1 {
        font-size: 1.4rem;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .footer-grid {
        gap: 1.5rem;
    }
    
    .wa-float-btn {
        width: 54px;
        height: 54px;
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        right: 16px;
    }
    
    .wa-float-btn svg {
        width: 28px;
        height: 28px;
    }
}

/* Very small mobile (360px) */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.45rem;
    }
    
    .hero-badge {
        font-size: 0.65rem;
    }
    
    .btn-large {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .trust-bar-item strong {
        font-size: 0.7rem;
    }
}

/* Logo Image Styles */
.logo-img {
    height: 36px;
    width: auto;
    display: block;
}
.footer-logo {
    height: 30px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
}
@media (max-width: 768px) {
    .logo-img {
        height: 30px;
    }
}
@media (max-width: 480px) {
    .logo-img {
        height: 26px;
    }
}

/* Article layout */
.article-content {
    max-width: 820px;
}
.article-content h2 {
    margin-top: 2.2rem;
    margin-bottom: 0.8rem;
}
.article-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
}
.article-content .article-related,
.article-content .article-cta {
    margin-top: 2rem;
    padding: 1.5rem;
}
.article-content .article-related ul {
    margin: 0;
    padding-left: 1.25rem;
}
.article-content .article-related li {
    margin-bottom: 0.5rem;
}
.article-back {
    margin-top: 1.5rem;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: var(--primary);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.breadcrumb li {
    color: #94a3b8;
    font-size: 0.85rem;
}
.breadcrumb li a {
    color: #cbd5e1;
}
.breadcrumb li a:hover {
    color: var(--accent);
}
.breadcrumb li + li::before {
    content: "\203A";
    margin-right: 0.5rem;
    color: #64748b;
}

/* Skip Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background-color: var(--accent);
    color: #fff;
    padding: 0.5rem 1rem;
    font-weight: 700;
    z-index: 99999;
    border-radius: 0 0 4px 0;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0;
    color: #fff;
}

/* Footer Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #cbd5e1;
    font-size: 0.85rem;
    transition: color 0.2s ease;
    white-space: nowrap;
}
.social-links a:hover {
    color: var(--accent);
}
.social-links svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Print styles */
@media print {
    .site-header,
    .wa-float-btn,
    .mobile-menu-btn,
    .cta-section {
        display: none !important;
    }
}