/* ===== CSS Variables ===== */
:root {
    --primary: #7C3AED;
    --primary-light: #A78BFA;
    --primary-dark: #5B21B6;
    --secondary: #EC4899;
    --accent: #F97316;
    --gradient-1: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
    --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --dark: #1F2937;
    --dark-light: #374151;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --light: #F3F4F6;
    --lighter: #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-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
}

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

/* ===== Animations ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes slideLeft {
    from { 
        opacity: 0; 
        transform: translateX(50px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

@keyframes slideRight {
    from { 
        opacity: 0; 
        transform: translateX(-50px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

@keyframes scaleIn {
    from { 
        opacity: 0; 
        transform: scale(0.9); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

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

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

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

.animate-slide-down {
    opacity: 0;
    animation: slideDown 0.8s ease forwards;
}

.animate-slide-left {
    opacity: 0;
    animation: slideLeft 0.8s ease forwards;
}

.animate-slide-right {
    opacity: 0;
    animation: slideRight 0.8s ease forwards;
}

.animate-scale-in {
    opacity: 0;
    animation: scaleIn 0.8s ease forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

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

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    color: var(--gray);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

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

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.dropdown-menu li a:hover {
    background: var(--lighter);
    color: var(--primary);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-text {
    font-weight: 500;
    color: var(--gray);
}

.btn-text:hover {
    color: var(--primary);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 100px 40px;
    transform: translateX(100%);
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FDF2F8 0%, #FAF5FF 50%, #F0F9FF 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: var(--gray);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark);
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-gradient {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
    transition: var(--transition);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: 2px solid var(--light);
    color: var(--dark);
    border-radius: var(--radius-full);
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.happy-customers {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-avatars {
    display: flex;
}

.customer-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -12px;
    object-fit: cover;
    transition: var(--transition);
}

.customer-avatars img:first-child {
    margin-left: 0;
}

.customer-avatars img:hover {
    transform: scale(1.1);
    z-index: 1;
}

.customer-label {
    font-weight: 600;
    color: var(--dark);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper > img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.medicare-card {
    top: 20%;
    right: -20px;
}

.calling-card {
    bottom: 20%;
    left: -40px;
}

.card-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.card-icon.calling {
    background: var(--gradient-3);
    animation: pulse 2s infinite;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-weight: 600;
    color: var(--dark);
}

.card-subtitle {
    font-size: 0.8rem;
    color: var(--gray);
}

.card-actions {
    display: flex;
    gap: 8px;
    margin-left: 10px;
}

.btn-call {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-call.decline {
    background: #EF4444;
}

.btn-call.accept {
    background: #10B981;
}

.btn-call:hover {
    transform: scale(1.1);
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
    top: -100px;
    right: 10%;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
    bottom: 10%;
    left: 5%;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
    top: 40%;
    left: 30%;
}

/* ===== Features Section ===== */
.features {
    padding: 100px 40px;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--lighter);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background: var(--lighter);
    border-radius: var(--radius-xl);
    padding: 30px;
    transition: var(--transition);
    overflow: hidden;
}

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

.feature-card.wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.feature-card.large {
    display: flex;
    flex-direction: column;
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Phone Mockup */
.phone-mockup {
    perspective: 1000px;
}

.phone-screen {
    width: 220px;
    height: 400px;
    background: var(--white);
    border-radius: 30px;
    padding: 15px;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--dark);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.feature-card:hover .phone-screen {
    transform: rotateY(0) rotateX(0);
}

.app-header {
    text-align: center;
    padding: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.app-greeting {
    padding: 20px 10px;
}

.app-greeting h4 {
    font-size: 1.3rem;
    color: var(--dark);
}

.app-greeting span {
    font-size: 0.8rem;
    color: var(--gray);
}

.app-card {
    background: var(--gradient-1);
    border-radius: var(--radius-lg);
    padding: 15px;
    color: var(--white);
}

.app-label {
    font-size: 0.75rem;
    opacity: 0.9;
}

.app-appointment {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.app-time-slots {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.slot {
    padding: 5px 10px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
}

.slot.active {
    background: var(--white);
    color: var(--primary);
}

/* Chat Mockup */
.chat-mockup {
    width: 100%;
}

.chat-window {
    width: 280px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin: 0 auto;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #E9D5FF 0%, #FDE68A 100%);
}

.chat-header img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-user-info {
    display: flex;
    flex-direction: column;
}

.chat-user-info .name {
    font-weight: 600;
    color: var(--dark);
}

.chat-user-info .status {
    font-size: 0.75rem;
    color: var(--gray);
}

.chat-user-info .status.online::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    margin-right: 5px;
}

.chat-messages {
    padding: 15px;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: var(--radius-lg);
    margin-bottom: 10px;
    position: relative;
}

.message .time {
    display: block;
    font-size: 0.65rem;
    color: var(--gray-light);
    margin-top: 5px;
}

.message.received {
    background: var(--lighter);
    color: var(--dark);
    border-bottom-left-radius: 4px;
}

.message.sent {
    background: var(--gradient-1);
    color: var(--white);
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.message.sent .time {
    color: rgba(255,255,255,0.7);
}

/* Dashboard Mockup */
.dashboard-mockup {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.dashboard-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow);
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.report-header span:first-child {
    font-weight: 600;
    color: var(--dark);
}

.report-header .period {
    font-size: 0.8rem;
    color: var(--gray);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 100px;
}

.bar {
    width: 20px;
    background: var(--light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.bar.active {
    background: var(--gradient-1);
}

.bar:hover {
    background: var(--primary-light);
}

.recovery-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
}

.recovery-icon {
    width: 40px;
    height: 40px;
    background: #FEE2E2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EF4444;
}

.recovery-info {
    display: flex;
    flex-direction: column;
}

.recovery-info .label {
    font-size: 0.75rem;
    color: var(--gray);
}

.recovery-info .value {
    font-weight: 700;
    color: var(--dark);
}

.progress-ring {
    width: 50px;
    height: 50px;
    margin-left: auto;
}

.progress-ring svg {
    transform: rotate(-90deg);
}

.progress-ring .bg {
    fill: none;
    stroke: var(--light);
    stroke-width: 3;
}

.progress-ring .progress {
    fill: none;
    stroke: var(--primary);
    stroke-width: 3;
    stroke-linecap: round;
}

/* Service Pills */
.service-pills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pill {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: var(--white);
    border: 1px solid var(--light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.pill:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}

.pill.highlight {
    background: var(--gradient-1);
    border: none;
    color: var(--white);
}

.pill-icon {
    width: 50px;
    height: 50px;
    background: var(--lighter);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.pill-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.pill-content p {
    font-size: 0.85rem;
    color: var(--gray);
}

.pill.highlight .pill-content p {
    color: rgba(255,255,255,0.8);
}

.country-flags {
    margin-top: 10px;
}

.flag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 20px;
    background: var(--white);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.explore-btn:hover {
    transform: translateX(5px);
}

/* ===== Trusted Section ===== */
.trusted {
    padding: 80px 40px;
    background: var(--lighter);
}

.trusted .section-title {
    font-size: 2.2rem;
}

.section-subtitle {
    color: var(--gray);
    margin-top: 15px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.partner-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--white);
    border-radius: var(--radius-full);
    font-weight: 500;
    color: var(--gray);
    transition: var(--transition);
}

.partner-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* ===== Consultants Section ===== */
.consultants {
    padding: 100px 40px;
    background: var(--white);
}

.consultants-slider {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: var(--transition);
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--gradient-1);
    border-color: transparent;
    color: var(--white);
}

.consultants-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    flex: 1;
}

.consultant-card {
    background: var(--lighter);
    border-radius: var(--radius-xl);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

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

.consultant-card.featured {
    background: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 100%);
}

.consultant-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    position: relative;
}

.consultant-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
}

.consultant-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.consultant-info .specialty {
    display: block;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.consultant-info p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.consultant-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.action-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--gradient-1);
    border-color: transparent;
    color: var(--white);
}

.consultants-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.consultants-description p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 25px;
}

.consultants-description .highlight {
    color: var(--accent);
    font-style: italic;
}

/* ===== Additional Features Section ===== */
.additional-features {
    padding: 100px 40px;
    background: var(--lighter);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.map-section {
    position: relative;
}

.map-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-card .map-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.location-markers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.marker {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.marker:nth-child(1) {
    top: 30%;
    left: 40%;
}

.marker:nth-child(2) {
    top: 50%;
    right: 30%;
}

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

.map-info-card {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.doctor-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.doctor-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.doctor-info .info {
    display: flex;
    flex-direction: column;
}

.doctor-info .name {
    font-weight: 600;
    color: var(--dark);
}

.doctor-info .specialty {
    font-size: 0.8rem;
    color: var(--gray);
}

.distance {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-weight: 500;
}

.appointment-btn {
    margin-top: 60px;
}

.features-list h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.features-list > p {
    color: var(--gray);
    margin-bottom: 30px;
}

.features-grid-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.feature-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== CTA Section ===== */
.cta {
    position: relative;
    padding: 120px 40px;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.9) 0%, rgba(147, 51, 234, 0.85) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--white);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--white);
}

.footer-top {
    padding: 40px 0;
    background: linear-gradient(to right, var(--dark) 0%, var(--dark-light) 100%);
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-cta h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

.footer-cta-buttons {
    display: flex;
    gap: 15px;
}

.btn-gradient-small {
    padding: 12px 24px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 500;
    transition: var(--transition);
}

.btn-gradient-small:hover {
    transform: translateY(-2px);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
}

.footer-main {
    padding: 60px 0 40px;
}

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

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand .logo span {
    color: var(--white);
}

.footer-brand > p {
    color: var(--gray-light);
    margin-bottom: 20px;
}

.newsletter {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter input {
    flex: 1;
    padding: 12px 16px;
    background: var(--dark-light);
    border: none;
    border-radius: var(--radius);
    color: var(--white);
    font-family: inherit;
}

.newsletter input::placeholder {
    color: var(--gray-light);
}

.btn-subscribe {
    padding: 12px 20px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 500;
    transition: var(--transition);
}

.btn-subscribe:hover {
    transform: translateY(-2px);
}

.app-buttons {
    display: flex;
    gap: 10px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: var(--dark-light);
    border-radius: var(--radius);
    font-size: 0.85rem;
    transition: var(--transition);
}

.app-btn:hover {
    background: var(--gray);
}

.app-btn i {
    font-size: 1.2rem;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-links ul li a {
    color: var(--gray-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--dark-light);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray-light);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-1);
    transform: translateY(-3px);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ===== Page Styles ===== */
.page-header {
    padding: 150px 40px 80px;
    background: linear-gradient(135deg, #FDF2F8 0%, #FAF5FF 50%, #F0F9FF 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.page-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
}

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

.breadcrumb span {
    color: var(--gray);
}

/* About Page */
.about-section {
    padding: 100px 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: var(--lighter);
    border-radius: var(--radius-lg);
}

.stat-item .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-item .label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Services Page */
.services-section {
    padding: 100px 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 40px;
    background: var(--lighter);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 25px;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 500;
}

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

/* Blog Page */
.blog-section {
    padding: 100px 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.read-more:hover {
    gap: 12px;
}

/* Contact Page */
.contact-section {
    padding: 100px 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 30px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.info-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

.contact-form {
    background: var(--lighter);
    padding: 40px;
    border-radius: var(--radius-xl);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--light);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    color: var(--dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

/* Map */
.map-container {
    margin-top: 60px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card.wide {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .service-pills {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .consultants-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding-bottom: 15px;
        scrollbar-width: none;
    }
    .consultants-grid::-webkit-scrollbar {
        display: none;
    }
    .consultant-card {
        min-width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .nav-links,
    .nav-buttons {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .consultants-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .features-content {
        grid-template-columns: 1fr;
    }
    
    .map-section {
        order: 2;
    }
    
    .features-list {
        order: 1;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-cta {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-card,
    .medicare-card,
    .calling-card {
        display: none;
    }

    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .consultants-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-btn {
        display: none;
    }
    
    .features-grid-small {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .blog-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-card {
        display: none;
    }
    
    .btn-gradient,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .customer-avatars img {
        width: 35px;
        height: 35px;
    }
    
    .phone-screen {
        width: 180px;
        height: 340px;
    }
    
    .app-buttons {
        flex-direction: column;
    }
    
    .newsletter {
        flex-direction: column;
    }
}

/* ===== Focus Visible States ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn-gradient:focus-visible,
.btn-primary:focus-visible,
.btn-white:focus-visible,
.btn-submit:focus-visible,
.btn-gradient-small:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.5);
}

.social-links a:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

/* ===== Additional Responsive Overrides ===== */
@media (max-width: 1024px) {
    .blog-featured {
        grid-template-columns: 1fr !important;
    }

    .features-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Override inline section padding */
    section[style*="padding"] {
        padding: 60px 20px !important;
    }

    .blog-featured {
        grid-template-columns: 1fr !important;
    }

    /* Override large inline font sizes */
    .blog-featured h2,
    section[style*="padding"] h2 {
        font-size: 1.6rem !important;
    }

    /* Fix pricing card scale transform */
    .service-card[style*="scale"] {
        transform: none !important;
    }

    /* About page mission/vision cards */
    .mission-card,
    .vision-card {
        padding: 25px !important;
    }

    /* FAQ container width override */
    div[style*="max-width: 800px"] {
        max-width: 100% !important;
    }

    /* Blog featured content padding */
    .blog-featured > div:first-child {
        padding: 30px !important;
    }

    /* Blog featured image */
    .blog-featured > div:last-child {
        min-height: 250px;
    }

    /* Inline flex form override */
    form[style*="display: flex"] {
        flex-direction: column !important;
    }

    /* Stats flex items in services */
    div[style*="display: flex"][style*="gap: 20px"] > div[style*="flex: 1"] {
        min-width: 80px;
    }
}

@media (max-width: 480px) {
    section[style*="padding"] {
        padding: 40px 15px !important;
    }

    .page-header {
        padding: 120px 15px 50px;
    }

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

    .cta-content h2 {
        font-size: 1.4rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    .footer-cta h3 {
        font-size: 1.3rem;
    }

    .blog-featured h2 {
        font-size: 1.3rem !important;
    }

    /* Pricing text size */
    span[style*="font-size: 3rem"] {
        font-size: 2.2rem !important;
    }

    /* Blog featured meta wrapping */
    .blog-featured div[style*="display: flex"][style*="align-items: center"][style*="gap: 20px"] {
        flex-wrap: wrap !important;
    }
}

@media (max-width: 360px) {
    .hero {
        padding: 90px 10px 40px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

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

    .page-header {
        padding: 110px 10px 40px;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .navbar {
        padding: 10px 15px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .features,
    .trusted,
    .consultants,
    .additional-features,
    .services-section,
    .blog-section,
    .contact-section,
    .about-section {
        padding: 40px 10px;
    }

    .cta {
        padding: 60px 10px;
    }

    .consultant-card {
        padding: 20px;
    }

    .service-card {
        padding: 25px;
    }

    .contact-form {
        padding: 20px;
    }

    .footer-cta h3 {
        font-size: 1.1rem;
    }

    .mobile-nav-links a {
        font-size: 1.2rem;
    }

    .btn-gradient,
    .btn-outline {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    section[style*="padding"] {
        padding: 30px 10px !important;
    }

    .blog-featured > div:first-child {
        padding: 20px !important;
    }
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.py-1 { padding-top: 10px; padding-bottom: 10px; }
.py-2 { padding-top: 20px; padding-bottom: 20px; }
.py-3 { padding-top: 30px; padding-bottom: 30px; }
.py-4 { padding-top: 40px; padding-bottom: 40px; }
.py-5 { padding-top: 50px; padding-bottom: 50px; }

.hidden { display: none !important; }
.d-block { display: block !important; }

/* Loading State */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid var(--white);
    border-top-color: transparent;
    border-radius: 50%;
    animation: rotate 1s linear infinite;
    transform: translate(-50%, -50%);
}
