/* ========== CSS RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ── Primary Palette ── */
    --primary: #E91E63;
    --primary-dark: #C2185B;
    --primary-light: #F8BBD0;
    --secondary: #9C27B0;
    --secondary-dark: #7B1FA2;
    --accent: #FF6F00;
    --accent-light: #FFB74D;
    --gold: #FFD700;
    --gold-dark: #FFA000;

    /* ── Neutrals ── */
    --dark: #1A1A2E;
    --dark-2: #16213E;
    --dark-3: #0F3460;
    --light: #FFFFFF;
    --light-2: #F5F5F5;
    --light-3: #E0E0E0;
    --text-dark: #212121;
    --text-light: #FAFAFA;
    --text-muted: #2d2a2a;

    /* ── Gradients ── */
    --gradient-primary: linear-gradient(135deg, #E91E63, #9C27B0);
    --gradient-hero: linear-gradient(135deg, #1A1A2E 0%, #0F3460 50%, #9C27B0 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700, #FF6F00);
    --gradient-card: linear-gradient(180deg, rgba(26,26,46,0) 0%, rgba(26,26,46,0.95) 100%);

    /* ── Shadows ── */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 30px rgba(233,30,99,0.3);

    /* ── Typography ── */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    /* ── Spacing ── */
    --section-padding: 40px 0;
    --container-width: 1200px;

    /* ── Borders ── */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}


/* ========== HEADER / NAVBAR ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary);
    transition: background 0.3s;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    font-weight: 700;
    font-family: var(--font-heading);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--light);
}

.logo-text span {
    color: var(--primary);
}

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

.nav-links a {
    color: var(--light-3);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 4px 0;
}

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

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

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--gradient-primary) !important;
    color: var(--light) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    box-shadow: var(--shadow-glow);
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--light);
    border-radius: 2px;
    transition: 0.3s;
}


/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.webp') center/cover no-repeat;
    opacity: 0.15;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--light), transparent);
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(233, 30, 99, 0.2);
    border: 1px solid var(--primary);
    color: var(--primary-light);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    color: var(--light);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 20px;
    color: var(--light-3);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: var(--font-body);
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light);
    box-shadow: 0 4px 20px rgba(233,30,99,0.4);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(233,30,99,0.5);
}

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

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}


/* ========== SECTION TITLES ========== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title .highlight {
    color: var(--primary);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 1000px;
    margin: 0 auto 20px;
    line-height: 1.7;
}


/* ========== PROFILES GRID ========== */
.profiles {
    padding: var(--section-padding);
    background: var(--light);
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.profile-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    aspect-ratio: 3/4;
}

.profile-card:hover {
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-6px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.profile-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.profile-card:hover img {
    transform: scale(1.05);
}

.profile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 20px 20px;
    background: var(--gradient-card);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--light);
}

.profile-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.profile-age {
    background: var(--primary);
    color: white;
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.profile-location {
    color: var(--light-3);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.profile-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-rating {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,0.6);
    color: var(--gold);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}


/* ========== ABOUT / SPLIT SECTION ========== */
.about {
    padding: var(--section-padding);
    background: var(--dark);
    color: var(--light);
}

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

.about-image {
    position: relative; 
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 18px;
}

.about-content .section-tag {
    background: rgba(233, 30, 99, 0.2);
    color: var(--primary-light);
}

.about-content .section-title {
    color: var(--light);
    text-align: left;
    font-size: 40px;
}

.about-content .section-subtitle {
    color: var(--light-3);
    text-align: left;
    margin: 0;
    max-width: 100%;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
}

.about-feature-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.about-feature-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--light-3);
}

.about-cta {
    margin-top: 36px;
    display: flex;
    gap: 16px;
}


/* ========== SERVICES SECTION ========== */
.services {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--light) 0%, var(--primary-light) 100%);
}

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

.service-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    aspect-ratio: 3/4;
}

.service-card:hover {
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-6px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 16px 18px;
    background: linear-gradient(180deg, rgba(26,26,46,0) 0%, rgba(26,26,46,0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.service-card-overlay h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--light);
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}


/* ========== WHY CHOOSE US ========== */
.why-us {
    padding: var(--section-padding);
    background: var(--light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.why-card {
    text-align: center;
    padding: 20px 10px;
    border-radius: var(--radius-md);
    background: var(--light);
    border: 2px solid var(--light-3);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.why-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.why-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.why-card p {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
} 


/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: var(--section-padding);
    background: var(--dark);
}

.testimonials .section-tag {
    background: rgba(233,30,99,0.2);
    color: var(--primary-light);
}

.testimonials .section-title {
    color: var(--light);
}

.testimonials .section-subtitle {
    color: var(--text-muted);
}

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

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 32px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--light-3);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 18px;
}

.testimonial-name {
    font-weight: 600;
    color: var(--light);
    font-size: 15px;
}

.testimonial-role {
    font-size: 12px;
    color: var(--text-muted);
}


/* ========== FAQ SECTION ========== */
.faq {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--light) 0%, var(--primary-light) 100%);
}

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

.faq-item {
    background: var(--light);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-3);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-body);
    gap: 16px;
}

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

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s, background 0.3s;
}

.faq-item.active .faq-icon {
    background: var(--primary);
    color: white;
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}


/* ========== CTA BANNER ========== */
.cta-banner {
    padding: 80px 0;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}

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

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 16px;
}

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

.btn-gold {
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 700;
}

.btn-gold:hover {
    box-shadow: 0 8px 30px rgba(255,215,0,0.4);
}


/* ========== CITIES WE SERVE ========== */
.cities-section {
    padding: var(--section-padding);
    background: rgb(20,83,45);
}

.cities-section .section-title {
    color: var(--light);
}

.cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.city-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: var(--light);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.city-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(233,30,99,0.4);
}


/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    padding: 60px 0 0;
    color: white;
}

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

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

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--light-3);
    transition: background 0.3s, color 0.3s;
}

.social-icon:hover {
    background: var(--primary);
    color: var(--light);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

.footer-col ul li a {
    font-size: 14px;
    color: white;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: white;
}

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


/* ========== FLOATING BUTTONS ========== */
.floating-btns {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.float-whatsapp {
    background: #25D366;
}

.float-call {
    background: var(--gradient-primary);
}

.float-btn .pulse-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    border: 3px solid #25D366;
    animation: pulse 2s infinite;
}

.float-call .pulse-ring {
    border-color: var(--primary);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}


/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .profiles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .hero h1 {
        font-size: 48px;
    }

    .about-grid {
        gap: 40px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 30px 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

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

    .stat-number {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content .section-title,
    .about-content .section-subtitle {
        text-align: center;
    }

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

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

    .cta-banner h2 {
        font-size: 30px;
    }

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

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

    .section-title {
        font-size: 28px;
    }

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