/* ============================================
   RandevuPro — Pastel Elegance Design System
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
    /* Brand Variables (Dynamic) */
    --brand-primary: #deaaff; /* default mauve-500 */
    --brand-primary-light: #e2afff; /* default mauve-400 */
    --brand-primary-dark: #d8bbff; /* default mauve-600 */
    --brand-secondary: #ffcbf2; /* default pastel-petal */
    --brand-accent: #d0d1ff; /* default periwinkle */

    /* Typography Variables (Dynamic) */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Theme Map (Proxy Variables for backwards compatibility) */
    --pastel-petal: var(--brand-secondary);
    --mauve-100: color-mix(in srgb, var(--brand-primary) 20%, white);
    --mauve-200: color-mix(in srgb, var(--brand-primary) 40%, white);
    --mauve-300: color-mix(in srgb, var(--brand-primary) 60%, white);
    --mauve-400: var(--brand-primary-light);
    --mauve-500: var(--brand-primary);
    --mauve-600: var(--brand-primary-dark);
    --periwinkle: var(--brand-accent);
    --pale-sky: color-mix(in srgb, var(--brand-accent) 70%, white);
    --icy-aqua: color-mix(in srgb, var(--brand-accent) 80%, white);

    /* Neutrals */
    --white: #ffffff;
    --off-white: #fefcff;
    --bg-light: #faf8fc;
    --bg-section: #f8f5fb;
    --text-primary: #2d2640;
    --text-secondary: #5c5470;
    --text-muted: #8e8a9a;
    --border-light: color-mix(in srgb, var(--brand-primary) 20%, transparent);

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --gap-sm: 12px;
    --gap-md: 24px;
    --gap-lg: 48px;
    --gap-xl: 72px;

    /* Effects */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.2s ease;
    --shadow-soft: 0 4px 30px color-mix(in srgb, var(--brand-primary) 8%, transparent);
    --shadow-hover: 0 8px 40px color-mix(in srgb, var(--brand-primary) 15%, transparent);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Primary Palette */
    --primary-50: #f5f0ff;
    --primary-100: #ede5ff;
    --primary-200: #d4c4fb;
    --primary-300: #c4b5fd;
    --primary-400: #a78bfa;
    --primary-500: #8b5cf6;
    --primary-600: #7c3aed;
    --primary-700: #6d28d9;

    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;

    /* Backgrounds */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;

    /* Text */
    --text-tertiary: #9ca3af;

    /* Borders */
    --border-color: #e5e7eb;

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;

    /* Font Sizes */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-md: 1.125rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--off-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Section Heading */
.section-header {
    text-align: center;
    margin-bottom: var(--gap-xl);
}

.section-header h2 {
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--mauve-300), var(--pastel-petal));
    margin: 16px auto 0;
    border-radius: var(--radius-full);
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--mauve-400), var(--mauve-600));
    color: var(--white);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--brand-primary) 30%, transparent);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px color-mix(in srgb, var(--brand-primary) 45%, transparent);
}

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

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

.btn-white {
    background: var(--white);
    color: var(--text-primary);
    box-shadow: var(--shadow-soft);
}

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

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 2px 30px color-mix(in srgb, var(--brand-primary) 10%, transparent);
}

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

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

.header-logo img {
    height: 64px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

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

/* Desktop Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--text-primary);
    background: color-mix(in srgb, var(--brand-primary) 10%, transparent);
}

.nav-cta {
    margin-left: 8px;
    padding: 10px 28px !important;
    background: linear-gradient(135deg, var(--mauve-400), var(--mauve-600)) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--brand-primary) 30%, transparent);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--brand-primary) 45%, transparent) !important;
    background: linear-gradient(135deg, var(--mauve-500), var(--mauve-600)) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* ============================================
   HERO / SLIDER SECTION
   ============================================ */
.hero-section {
    margin-top: 76px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-light) 0%, color-mix(in srgb, var(--brand-secondary) 15%, transparent) 50%, color-mix(in srgb, var(--brand-accent) 15%, transparent) 100%);
    height: 700px;
    display: flex;
    align-items: center;
}

.hero-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    display: none;
    height: 700px;
    align-items: center;
    animation: fadeIn 0.8s ease;
}

.hero-slide.active {
    display: flex;
}

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

.hero-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-xl);
    align-items: center;
}

.hero-text {
    padding: 40px 0;
}

.hero-text .subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--mauve-500);
    margin-bottom: 20px;
}

.hero-text h1 {
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-text h1 em {
    font-style: italic;
    color: var(--mauve-500);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 500px;
}

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

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--mauve-200);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.5;
}

.slider-dot.active {
    opacity: 1;
    background: var(--mauve-500);
    transform: scale(1.2);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: var(--section-padding);
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--pastel-petal), var(--mauve-200));
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.5;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--mauve-300), var(--pastel-petal));
    margin-top: 16px;
    border-radius: var(--radius-full);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

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

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.about-feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--mauve-500);
    flex-shrink: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: var(--section-padding);
    background: var(--bg-section);
}

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

.service-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px color-mix(in srgb, var(--brand-primary) 20%, transparent);
}

.service-card-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
    background: var(--bg-secondary);
}

.service-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(45, 38, 64, 0.15), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-card-image::after {
    opacity: 1;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-image img {
    /* İptal edildi: user request (büyümesin, tam sığsın) */
    transform: none;
}

.service-card h3 {
    font-size: 1.15rem;
    padding: 20px 16px 6px;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--mauve-500);
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0 16px 12px;
    line-height: 1.6;
}

.service-card-count {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--mauve-500);
    background: color-mix(in srgb, var(--brand-primary) 12%, transparent);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.service-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mauve-100), var(--periwinkle-100));
}

.services-cta {
    text-align: center;
    margin-top: var(--gap-xl);
}

/* ============================================
   FEATURES / WHY US SECTION
   ============================================ */
.features-section {
    padding: var(--section-padding);
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-lg);
}

.feature-card {
    text-align: center;
    padding: var(--gap-lg) var(--gap-md);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.feature-icon.petal { background: color-mix(in srgb, var(--brand-secondary) 30%, transparent); }
.feature-icon.mauve { background: color-mix(in srgb, var(--brand-primary) 20%, transparent); }
.feature-icon.periwinkle { background: color-mix(in srgb, var(--brand-accent) 30%, transparent); }
.feature-icon.sky { background: color-mix(in srgb, var(--brand-accent) 30%, transparent); }

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--mauve-500);
}

.feature-card h4 {
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================================
   CTA SECTION (Randevu Al)
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--mauve-300) 0%, var(--mauve-600) 50%, var(--periwinkle) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 50%);
    animation: ctaPulse 8s ease-in-out infinite;
}

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

.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-section .btn {
    position: relative;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: var(--section-padding);
    background: var(--bg-section);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-xl);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pastel-petal), var(--mauve-200));
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
    color: var(--text-primary);
}

.contact-info-text h4 {
    font-family: var(--font-heading);
    margin-bottom: 4px;
    font-size: 1rem;
}

.contact-info-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact-info-text a {
    color: var(--mauve-500);
    font-weight: 500;
}

.contact-info-text a:hover {
    color: var(--mauve-600);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    min-height: 350px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 0;
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--mauve-300), var(--mauve-500));
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.social-link:hover svg {
    color: var(--white);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: var(--transition);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--text-primary);
    padding: 48px 0 24px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 600;
}

.footer-logo span {
    color: var(--mauve-400);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--mauve-400);
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 24px 0;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

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

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

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 1;
        padding: 20px 0;
    }

    .hero-text p {
        margin: 0 auto 36px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: 2;
    }

    .hero-slide {
        height: 600px;
    }

    .hero-section {
        height: 600px;
    }

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

    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    /* Mobile Nav */
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 4px;
        transform: translateX(100%);
        transition: var(--transition);
        z-index: -1;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .main-nav a {
        font-size: 1.1rem;
        padding: 14px 20px;
        width: 100%;
        text-align: left;
    }

    .nav-cta {
        margin-left: 0 !important;
        margin-top: 12px;
        text-align: center !important;
    }

    .hamburger {
        display: flex;
    }

    .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(5px, -5px);
    }

    /* Mobile Hero */
    .hero-section {
        height: auto;
        min-height: 500px;
    }

    .hero-slide {
        height: auto;
        min-height: 500px;
        padding: 40px 0;
    }

    .hero-image img {
        max-width: 320px;
    }

    /* Mobile Features */
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--gap-md);
    }

    .feature-card {
        padding: var(--gap-md);
    }

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

    /* Mobile About */
    .about-features {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

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

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

    .btn {
        width: 100%;
        justify-content: center;
    }
}