/**
 * Home Page Styles
 * Sourcing From China - Main Website
 * Includes header, hero, services, about, contact sections with subcategory menus
 */

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */

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

html {
    height: 100%;
}

:root {
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --green-100: #dcfce7;
    --green-600: #16a34a;
    --red-500: #ef4444;
    --white: #ffffff;
    --black: #000000;
}

/* ============================================
   BASE STYLES
   ============================================ */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

main {
    flex: 1;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ============================================
   HEADER STYLES
   ============================================ */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    min-height: 80px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    cursor: pointer;
    height: 50px;
}

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

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav a, .nav button {
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 400;
}

.nav a:hover, .nav button:hover {
    color: var(--blue-600);
}

.desktop-cta {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-cta {
        display: inline-block;
    }
}

/* ============================================
   DROPDOWN MENU STYLES (WITH SUBMENUS)
   ============================================ */

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-toggle.active {
    color: var(--blue-600);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    min-width: 14rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-300);
    padding: 0.5rem 0;
    z-index: 50;
}

.dropdown-menu.active {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: var(--blue-50);
    color: var(--blue-600);
}

/* Subcategory Menu Styles */
.dropdown-menu .has-submenu {
    position: relative;
}

.dropdown-menu .has-submenu > a {
    padding-right: 2.5rem;
    position: relative;
}

.dropdown-menu .has-submenu::after {
    content: '›';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: bold;
    color: #6b7280;
    pointer-events: none;
    transition: color 0.2s;
}

.dropdown-menu .has-submenu:hover::after {
    color: #2563eb;
}

.dropdown-menu .submenu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 220px;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border: 1px solid #e5e7eb;
}

.dropdown-menu .has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-menu .submenu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 14px;
    position: relative;
}

.dropdown-menu .submenu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: #2563eb;
    transition: height 0.2s;
}

.dropdown-menu .submenu a:hover {
    background: #f9fafb;
    color: #2563eb;
    padding-left: 1.75rem;
}

.dropdown-menu .submenu a:hover::before {
    height: 60%;
}

/* ============================================
   BUTTON STYLES
   ============================================ */

.btn {
    background: var(--blue-600);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: var(--blue-700);
}

.desktop-cta {
    display: none;
}

@media (min-width: 768px) {
    .desktop-cta {
        display: inline-flex;
    }
}

/* ============================================
   MOBILE MENU STYLES
   ============================================ */

.mobile-menu-btn {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-700);
    font-size: 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    right: 0;
    width: 100%;
    max-width: 300px;
    height: calc(100vh - 80px);
    background: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    z-index: 999;
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a, .mobile-menu button {
    display: block;
    padding: 0.75rem 0;
    color: var(--gray-700);
    text-decoration: none;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.2s;
}

.mobile-menu a:hover, .mobile-menu button:hover {
    color: var(--blue-600);
}

.mobile-submenu {
    padding-left: 0;
}

.mobile-submenu .submenu-item {
    padding-left: 1.5rem;
    border-left: 3px solid #e5e7eb;
    margin-left: 0.75rem;
    margin-top: 0.25rem;
    position: relative;
}

.mobile-submenu .submenu-item::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #e5e7eb 0%, transparent 100%);
}

.mobile-submenu .submenu-item a {
    display: block;
    padding: 0.6rem 0.5rem;
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    border-radius: 0.25rem;
    position: relative;
    padding-left: 1rem;
}

.mobile-submenu .submenu-item a::before {
    content: '└';
    position: absolute;
    left: -0.25rem;
    color: #d1d5db;
    font-size: 12px;
}

.mobile-submenu .submenu-item a:hover {
    color: #2563eb;
    background: #eff6ff;
    padding-left: 1.25rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--blue-50), var(--white));
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

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

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

.btn-secondary {
    background: white;
    color: var(--blue-600);
    border: 2px solid var(--blue-600);
}

.btn-secondary:hover {
    background: var(--blue-50);
}

.hero-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: 4rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

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

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    border-color: var(--blue-600);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

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

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.about-text p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--gray-700);
}

.about-features li::before {
    content: '✓';
    color: var(--green-600);
    font-weight: bold;
    font-size: 1.25rem;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-section {
    padding: 4rem 0;
    background: var(--white);
}

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

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--blue-600);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.process-step p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

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

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.contact-info p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    color: var(--gray-700);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--blue-100);
    color: var(--blue-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-600);
}

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

.captcha-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.captcha-display {
    background: var(--gray-100);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-family: 'Courier New', monospace;
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 0.25rem;
    color: var(--gray-900);
    user-select: none;
}

.captcha-input {
    flex: 1;
}

.success-message {
    background: var(--green-100);
    color: var(--green-600);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: none;
}

.error-message {
    background: #fee2e2;
    color: var(--red-500);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: none;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 1.5rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-main {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
    }
}

/* Brand Column */
.footer-brand {
    margin-bottom: 0;
}

.footer-brand-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9375rem;
}

.footer-contact-item:hover {
    color: #ffffff;
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: #3b82f6;
}

/* Links Columns */
.footer-links-column h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9375rem;
}

.footer-links-list a:hover {
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social-link:hover {
    background: #2563eb;
    color: #ffffff;
}

/* ============================================
   PAGE CONTENT (SPA STYLE)
   ============================================ */

.page-content {
    display: none;
}

.page-content.active {
    display: block;
}

/* ============================================
   GRID SYSTEM & UTILITY CLASSES
   ============================================ */

.grid {
    display: grid;
    gap: 2rem;
}

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

@media (min-width: 640px) {
    .grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   BACKGROUND & BADGE
   ============================================ */

.bg-gradient {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--blue-100);
    color: var(--blue-600);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* ============================================
   SECTION HEADER
   ============================================ */

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

/* ============================================
   CARD COMPONENT
   ============================================ */

.card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

/* ============================================
   ICON BOX
   ============================================ */

.icon-box {
    width: 4rem;
    height: 4rem;
    background: var(--blue-50);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* ============================================
   FEATURE LIST & CHECK ICONS
   ============================================ */

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

/* ============================================
   HERO SECTION STYLES
   ============================================ */

.hero-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-floating-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: white;
    padding: 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: calc(100% - 4rem);
}

.check-icon-badge {
    width: 3rem;
    height: 3rem;
    background: var(--green-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue-600);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

.hero-stat-divider {
    width: 1px;
    height: 3rem;
    background: var(--gray-300);
}

/* ============================================
   CONTACT INFO BOX
   ============================================ */

.contact-info-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: var(--blue-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.email-svg {
    max-width: 100%;
    height: auto;
}

/* ============================================
   BUTTON STYLES
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--blue-600);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover {
    background: var(--blue-700);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn:disabled {
    background: var(--gray-400);
    cursor: not-allowed;
    transform: none;
}

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

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

/* ============================================
   BANNER CAROUSEL
   ============================================ */

.carousel {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: var(--gray-900);
}

@media (min-width: 768px) {
    .carousel {
        height: 500px;
    }
}

@media (min-width: 1024px) {
    .carousel {
        height: 600px;
    }
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.carousel-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-text {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.carousel-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .carousel-text h2 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .carousel-text h2 {
        font-size: 3.75rem;
    }
}

.carousel-text p {
    font-size: 1.25rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .carousel-text p {
        font-size: 1.5rem;
    }
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-nav.prev {
    left: 1rem;
}

.carousel-nav.next {
    right: 1rem;
}

.carousel-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
}

.carousel-dot {
    width: 0.75rem;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: white;
    width: 2rem;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.75);
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (max-width: 767px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.875rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .hero-stat-divider {
        height: 2rem;
    }
    
    .hero-floating-card {
        bottom: 1rem;
        left: 1rem;
        padding: 1rem;
        font-size: 0.875rem;
    }
    
    .check-icon-badge {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .icon-box {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1rem;
    }
    
    .contact-info-box {
        padding: 1rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.dropdown-menu a:focus,
.mobile-submenu .submenu-item a:focus,
.btn:focus,
button:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   SERVICES SECTION STYLES
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #e0f2fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   CONTACT SECTION STYLES
   ============================================ */

.contact-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.contact-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #dbeafe;
    color: #2563eb;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.contact-main-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.contact-subtitle {
    font-size: 1.0625rem;
    color: #6b7280;
    margin: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.form-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.75rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.required-asterisk {
    color: #ef4444;
}

.contact-form-input,
.contact-form-textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    color: #1f2937;
    transition: all 0.2s;
    font-family: inherit;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: #9ca3af;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

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

.security-check-input {
    display: flex;
    gap: 0.5rem;
}

.security-check-input input {
    flex: 1;
}

.captcha-refresh-btn {
    width: 3rem;
    height: 3rem;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s;
}

.captcha-refresh-btn:hover {
    background: #e5e7eb;
    color: #374151;
}

.captcha-feedback {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.contact-submit-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.5rem;
}

.contact-submit-btn:hover:not(:disabled) {
    background: #4f46e5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.contact-submit-btn:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    transform: none;
}

/* Contact Information Column */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-info-subtitle {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.contact-info-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    gap: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.contact-info-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.email-icon {
    background: #dbeafe;
    color: #2563eb;
}

.office-icon {
    background: #dbeafe;
    color: #2563eb;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.contact-info-value {
    font-size: 0.9375rem;
    color: #1f2937;
    line-height: 1.5;
}

/* Business Hours Card */
.business-hours-card {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    padding: 2rem;
    border-radius: 1rem;
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.business-hours-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: white;
}

.business-hours-content {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.business-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9375rem;
}

.business-day {
    color: rgba(255, 255, 255, 0.95);
}

.business-time {
    font-weight: 500;
    color: white;
}

.business-hours-timezone {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 1023px) {
    .contact-main-title {
        font-size: 1.875rem;
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-main-title {
        font-size: 1.625rem;
    }
    
    .contact-form-card {
        padding: 1.75rem 1.25rem;
    }
    
    .form-card-title,
    .contact-info-title {
        font-size: 1.25rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.hidden {
    display: none !important;
}

.flex-shrink-0 {
    flex-shrink: 0;
}
/* WhatsApp Button Styles */
.desktop-cta {
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.desktop-cta:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.desktop-cta[href*="wa.me"] {
    background: #25D366;
}

.desktop-cta[href*="wa.me"]:hover {
    background: #20ba58;
}

.footer-contact-item[href*="wa.me"] {
    color: #25D366 !important;
}

.footer-contact-item[href*="wa.me"]:hover {
    color: #20ba58 !important;
}

/* Currency Converter Styles */
.currency-indicator {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.9rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.currency-indicator span {
    font-weight: 500;
}

.currency-indicator button {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.35rem 0.75rem;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.currency-indicator button:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
}

/* Trust Badges Styles */
#trust-badges-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.trust-badge {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0284c7;
    border-radius: 0.75rem;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.trust-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(2, 132, 199, 0.2);
    border-color: #0369a1;
}

.badge-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

.badge-title {
    font-weight: 700;
    color: #0369a1;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.badge-subtitle {
    font-size: 0.8rem;
    color: #0c4a6e;
    font-weight: 500;
}

/* Inline badges (for footer, etc.) */
.trust-badges-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0;
}

.badge-chip {
    background: #0284c7;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.badge-chip:hover {
    background: #0369a1;
    transform: scale(1.05);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 640px) {
    #trust-badges-container {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .trust-badge {
        padding: 1rem;
    }
    
    .badge-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
}

/* Contact Widget Styles */
.contact-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transition: all 0.3s;
}

.contact-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.5);
}

.contact-toggle.active {
    transform: rotate(45deg);
}

.contact-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    overflow: hidden;
}

.contact-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-menu-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-menu-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.close-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.close-btn:hover {
    background: rgba(255,255,255,0.3);
}

.contact-options {
    max-height: 400px;
    overflow-y: auto;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e5e7eb;
    text-decoration: none;
    color: #1f2937;
    transition: all 0.3s;
}

.contact-option:last-child {
    border-bottom: none;
}

.contact-option:hover:not(.disabled) {
    background: #f9fafb;
    padding-left: 1.5rem;
}

.contact-option.disabled {
    opacity: 0.6;
    cursor: default;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 32px;
    text-align: center;
}

.contact-info {
    flex: 1;
}

.contact-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.95rem;
}

.contact-note {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.contact-option svg {
    color: #9ca3af;
    opacity: 0;
    transition: all 0.3s;
}

.contact-option:hover:not(.disabled) svg {
    opacity: 1;
    color: #2563eb;
}

.contact-menu-footer {
    padding: 0.75rem 1.25rem;
    background: #f9fafb;
    font-size: 0.8rem;
    color: #6b7280;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

.contact-menu-footer p {
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .contact-widget {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .contact-toggle {
        width: 48px;
        height: 48px;
    }

    .contact-menu {
        width: 280px;
        bottom: 60px;
    }
}

/* ============================================
   LIVE CHAT WIDGET
   ============================================ */

.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    z-index: 9999;
}

.live-chat-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.live-chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.6);
}

.live-chat-toggle.active {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.unread-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.live-chat-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 380px;
    height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.live-chat-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.live-chat-header h3 {
    margin: 0;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin: 0;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.close-chat {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0;
    width: 24px;
    height: 24px;
}

.live-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background: #f9fafb;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chat-message {
    display: flex;
    animation: fadeIn 0.3s ease;
}

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

.user-message {
    justify-content: flex-end;
}

.user-message .message-content {
    background: #2563eb;
    color: white;
}

.bot-message {
    justify-content: flex-start;
}

.bot-message .message-content {
    background: white;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.admin-message {
    justify-content: flex-start;
}

.admin-message .message-content {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.admin-message .message-content::before {
    content: '👤 Agent: ';
    font-weight: 600;
    display: block;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
    color: #059669;
}

.message-content {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    max-width: 70%;
    word-wrap: break-word;
}

.message-content p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.live-chat-input {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
    background: white;
}

.live-chat-input input {
    flex: 1;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    transition: border-color 0.3s;
}

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

.send-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2563eb;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.send-btn:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

.send-btn:active {
    transform: scale(0.95);
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .live-chat-window {
        width: calc(100vw - 40px);
        height: 70vh;
        max-height: 500px;
    }

    .message-content {
        max-width: 85%;
    }

    .live-chat-toggle {
        width: 48px;
        height: 48px;
    }
}

/* ============================================
   HEADER CTA STABILITY FIXES (July 2026)
   WhatsApp button always visible on all screens.
   Header must never change height while scrolling.
   ============================================ */

.header-content {
    flex-wrap: nowrap;
    height: 80px;          /* fixed, so the white bar never contracts/expands */
    min-height: 80px;
}

.header-left {
    min-width: 0;
}

.logo {
    flex-shrink: 0;
}

/* WhatsApp CTA: visible at every screen size */
.desktop-cta[href*="wa.me"] {
    display: inline-flex !important;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Get Quote: desktop only */
@media (max-width: 767px) {
    .desktop-cta:not([href*="wa.me"]) {
        display: none !important;
    }

    /* Compact WhatsApp button on mobile */
    .desktop-cta[href*="wa.me"] {
        padding: 0.5rem 0.85rem;
        font-size: 0.9rem;
        margin-left: auto !important;
        margin-right: 0.75rem;
    }

    .desktop-cta[href*="wa.me"] svg {
        width: 16px;
        height: 16px;
    }
}
