/* ============================================
   Helpline Service Center - Professional Styles
   ============================================ */

:root {
    --primary: #1a56db;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --success: #10b981;
    --danger: #ef4444;
    --dark: #0f172a;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background: linear-gradient(135deg, var(--dark), var(--gray-900));
    color: var(--gray-300);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-info span i {
    color: var(--accent);
}

.top-bar-social {
    display: flex;
    gap: 12px;
}

.top-bar-social a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--accent);
}

/* ============================================
   Header / Navigation
   ============================================ */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: var(--shadow-md);
}

.logo-text h1 {
    font-size: 22px;
    color: var(--dark);
    font-weight: 800;
    line-height: 1.2;
}

.logo-text p {
    font-size: 12px;
    color: var(--gray-500);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    background: var(--gray-50);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px 3px 0 0;
}

.nav-cta {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white !important;
    background: linear-gradient(135deg, #059669, var(--success)) !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--dark);
    cursor: pointer;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-call-primary {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
    animation: pulseGreen 2s infinite;
}

.btn-call-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.45);
}

.btn-call-secondary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 8px 20px rgba(26, 86, 219, 0.35);
    animation: pulseBlue 2s infinite;
}

.btn-call-secondary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 28px rgba(26, 86, 219, 0.45);
}

.btn-call-primary i,
.btn-call-secondary i {
    font-size: 18px;
}

.btn-phone-number {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

@keyframes pulseGreen {
    0%, 100% { box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35); }
    50% { box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35), 0 0 0 12px rgba(16, 185, 129, 0); }
}

@keyframes pulseBlue {
    0%, 100% { box-shadow: 0 8px 20px rgba(26, 86, 219, 0.35); }
    50% { box-shadow: 0 8px 20px rgba(26, 86, 219, 0.35), 0 0 0 12px rgba(26, 86, 219, 0); }
}

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 58, 138, 0.88) 50%, rgba(26, 86, 219, 0.85) 100%), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15), transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--accent);
}

.hero h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 600px;
}

.call-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.call-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.call-button-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

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

.hero-stat .number {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.hero-stat .label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* ============================================
   Section General
   ============================================ */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(26, 86, 219, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-500);
}

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

/* ============================================
   Services Grid
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-600);
    font-size: 15px;
    margin-bottom: 16px;
}

.service-card .service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-card .service-link:hover {
    gap: 12px;
}

/* ============================================
   Why Choose Us
   ============================================ */
.why-section {
    background: linear-gradient(180deg, var(--gray-50), var(--white));
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.why-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.why-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.why-card p {
    color: var(--gray-600);
    font-size: 14px;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15), transparent);
    border-radius: 50%;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--gray-300);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-col h3 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--gray-400);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--gray-400);
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 16px;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
    color: var(--gray-500);
}

.footer-bottom a {
    color: var(--gray-400);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* ============================================
   Page Banner
   ============================================ */
.page-banner {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 64, 175, 0.88)), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12), transparent 70%);
    border-radius: 50%;
}

.page-banner h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.page-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--accent);
}

/* ============================================
   Content Pages (Terms, Privacy)
   ============================================ */
.content-page {
    padding: 70px 0;
    background: var(--gray-50);
}

.content-wrapper {
    max-width: 880px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.content-wrapper h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    margin: 36px 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--gray-800);
    margin: 24px 0 10px;
}

.content-wrapper p {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-wrapper ul {
    margin: 12px 0 20px 24px;
    color: var(--gray-600);
}

.content-wrapper ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.content-wrapper .last-updated {
    background: var(--gray-50);
    padding: 12px 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 32px;
}

/* ============================================
   Customer Care Page
   ============================================ */
.care-hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 64, 175, 0.88)), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 70px 0;
    text-align: center;
}

.care-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 14px;
}

.care-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 36px;
}

.care-call-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.care-call-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.care-call-box:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.care-call-box .icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
    color: white;
}

.care-call-box.green .icon {
    background: linear-gradient(135deg, var(--success), #059669);
}

.care-call-box.blue .icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.care-call-box h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 6px;
}

.care-call-box .sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 20px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.contact-option {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.contact-option:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.contact-option .icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 18px;
    color: white;
}

.contact-option.email .icon { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.contact-option.chat .icon { background: linear-gradient(135deg, var(--success), #059669); }
.contact-option.whatsapp .icon { background: linear-gradient(135deg, #25D366, #128C7E); }
.contact-option.support .icon { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }

.contact-option h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-option p {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 16px;
}

.contact-option .link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
}

/* FAQ */
.faq-section {
    background: var(--gray-50);
}

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.faq-question {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--dark);
    font-size: 16px;
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question .icon {
    font-size: 18px;
    color: var(--primary);
    transition: var(--transition);
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 22px;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 15px;
}

/* ============================================
   Floating Call Button (Mobile)
   ============================================ */
.floating-call {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: none;
    flex-direction: column;
    gap: 12px;
}

.floating-call a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    animation: floatPulse 2s infinite;
}

.floating-call .call-green {
    background: linear-gradient(135deg, var(--success), #059669);
}

.floating-call .call-blue {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

@keyframes floatPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-info {
        font-size: 12px;
        gap: 14px;
    }
    .top-bar-social {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 24px 24px;
        gap: 8px;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        align-items: stretch;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-menu a {
        padding: 14px 20px;
        font-size: 16px;
        border-radius: var(--radius);
    }
    .nav-menu a.active::after {
        display: none;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 16px;
    }
    .section-header h2,
    .cta-section h2 {
        font-size: 28px;
    }
    .call-buttons {
        flex-direction: column;
        width: 100%;
    }
    .call-buttons .btn {
        width: 100%;
    }
    .hero-stats {
        gap: 24px;
    }
    .hero-stat .number {
        font-size: 28px;
    }
    .content-wrapper {
        padding: 32px 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .floating-call {
        display: flex;
    }
    .care-call-boxes {
        grid-template-columns: 1fr;
    }
    section {
        padding: 56px 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 30px;
    }
    .btn-phone-number {
        font-size: 16px;
    }
    .logo-text h1 {
        font-size: 18px;
    }
    .logo-text p {
        font-size: 10px;
    }
    .floating-call a {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }
}
