/* ====================================
   MAVI GÜNEŞ SAHAF - ANA STİL DOSYASI
   Modern, etkileyici ve responsive tasarım
   ===================================== */

/* === CSS RESET VE TEMEL AYARLAR === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::before,
::after {
    box-sizing: inherit;
}

/* === CSS CUSTOM PROPERTIES === */
:root {
    /* Ana Renk Paleti - Mevcut dosyalardan alınmış */
    --primary-color: #2D6B78;       /* Koyu Yeşilimsi Mavi */
    --secondary-color: #4B9CAE;     /* Orta Yeşilimsi Mavi */
    --accent-color: #F7BF4F;        /* Hardal Sarısı */
    --gold: #d69e2e;                /* Altın */
    
    /* Metin Renkleri */
    --text-primary: #1a202c;        /* Ana metin */
    --text-secondary: #f7bf4f;      /* İkincil metin */
    --text-muted: #718096;          /* Soluk metin */
    --text-light: #ffffff;          /* Beyaz metin */
    
    /* Arka Plan Renkleri */
    --bg-primary: #ffffff;          /* Ana arka plan */
    --bg-secondary: #f7fafc;        /* İkincil arka plan */
    --bg-dark: #1a202c;             /* Koyu arka plan */
    --bg-glass: rgba(255, 255, 255, 0.1);  /* Cam efekti */
    
    /* Gradient'ler */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--gold) 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 100%);
    
    /* Gölgeler */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 8px 25px rgba(45, 107, 120, 0.3);
    --shadow-accent: 0 8px 25px rgba(247, 191, 79, 0.3);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 25px;
    --radius-full: 50px;
    
    /* Spacing */
    --space-xs: 0.25rem;    /* 4px */
    --space-sm: 0.5rem;     /* 8px */
    --space-md: 1rem;       /* 16px */
    --space-lg: 1.5rem;     /* 24px */
    --space-xl: 2rem;       /* 32px */
    --space-2xl: 3rem;      /* 48px */
    --space-3xl: 4rem;      /* 64px */
    --space-4xl: 5rem;      /* 80px */
    --space-5xl: 6rem;      /* 96px */
    
    /* Font Sizes */
    --text-xs: 0.75rem;     /* 12px */
    --text-sm: 0.875rem;    /* 14px */
    --text-base: 1rem;      /* 16px */
    --text-lg: 1.125rem;    /* 18px */
    --text-xl: 1.25rem;     /* 20px */
    --text-2xl: 1.5rem;     /* 24px */
    --text-3xl: 1.875rem;   /* 30px */
    --text-4xl: 2.25rem;    /* 36px */
    --text-5xl: 3rem;       /* 48px */
    --text-6xl: 3.75rem;    /* 60px */
    --text-7xl: 4.5rem;     /* 72px */
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Z-Index Levels */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-popover: 1050;
    --z-tooltip: 1060;
    --z-preloader: 9999;
}

/* === GLOBAL STYLES === */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

h1 { font-size: var(--text-6xl); }
h2 { font-size: var(--text-5xl); }
h3 { font-size: var(--text-4xl); }
h4 { font-size: var(--text-3xl); }
h5 { font-size: var(--text-2xl); }
h6 { font-size: var(--text-xl); }

p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

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

a:hover {
    color: var(--secondary-color);
}

strong {
    font-weight: 600;
    color: var(--text-primary);
}

/* === LAYOUT COMPONENTS === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--gradient-accent);
    color: var(--text-primary);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-accent);
}

.section-title {
    font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
    font-weight: 800;
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

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

.section-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(45, 107, 120, 0.4);
}

.btn-secondary {
    background: var(--gradient-accent);
    color: var(--text-primary);
    box-shadow: var(--shadow-accent);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(247, 191, 79, 0.4);
}

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

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

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--text-lg);
    border-radius: var(--radius-lg);
}

.btn-large span {
    display: block;
}

.btn-large small {
    font-size: var(--text-sm);
    opacity: 0.8;
    font-weight: 400;
}

/* === PRELOADER === */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-preloader);
    transition: opacity var(--transition-slow);
}

.preloader-content {
    text-align: center;
    color: var(--text-light);
}

.book-loader {
    margin-bottom: var(--space-xl);
}

.book {
    position: relative;
    width: 60px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    perspective: 1000px;
}

.page {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    transform-origin: left center;
    animation: flip 2s infinite;
}

.page:nth-child(2) {
    animation-delay: 0.5s;
    background: var(--accent-color);
}

.page:nth-child(3) {
    animation-delay: 1s;
    background: var(--secondary-color);
}

@keyframes flip {
    0%, 20% { transform: rotateY(0deg); }
    50% { transform: rotateY(-180deg); }
    80%, 100% { transform: rotateY(0deg); }
}

.preloader-content h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preloader-content p {
    font-size: var(--text-base);
    opacity: 0.9;
}

/* === FLOATING BACKGROUND === */
.floating-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    font-size: var(--text-2xl);
    opacity: 0.1;
    animation: float 15s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 107, 120, 0.1);
    padding: var(--space-md) 0;
    z-index: var(--z-fixed);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    padding: var(--space-sm) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    text-decoration: none;
}

.logo {
    height: 50px;
    width: auto;
    transition: var(--transition-normal);
}

.navbar.scrolled .logo {
    height: 40px;
}

.brand-text h2 {
    font-size: var(--text-xl);
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
}

.brand-text span {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-links-container {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    margin: 0;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: var(--gradient-glass);
    color: var(--primary-color);
}

.nav-cta {
    display: flex;
    gap: var(--space-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: var(--space-5xl) 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: -2;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ffffff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.4), transparent);
    background-repeat: repeat;
    background-size: 200px 150px;
    animation: particlesMove 20s linear infinite;
}

@keyframes particlesMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(-150px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    color: var(--text-light);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: clamp(var(--text-4xl), 6vw, var(--text-7xl));
    font-weight: 900;
    line-height: 1;
    margin-bottom: var(--space-xl);
}

.title-main {
    display: block;
    color: var(--text-light);
}

.title-highlight {
    display: block;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(247, 191, 79, 0.5);
}

.hero-description {
    font-size: var(--text-xl);
    line-height: 1.6;
    margin-bottom: var(--space-2xl);
    opacity: 0.95;
}

.hero-features {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    font-weight: 500;
}

.feature-item i {
    color: var(--accent-color);
    font-size: var(--text-lg);
}

.hero-cta {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: var(--space-2xl);
}

.stats-card {
    display: flex;
    justify-content: space-around;
    color: var(--text-light);
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--accent-color);
}

.stat .label {
    font-size: var(--text-sm);
    opacity: 0.9;
}

.floating-cards {
    position: absolute;
    top: -20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.book-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    transform: translateX(20px);
    animation: floatCard 3s ease-in-out infinite;
}

.book-card:nth-child(2) {
    animation-delay: 1s;
}

.book-card:nth-child(3) {
    animation-delay: 2s;
}

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

.book-card i {
    color: var(--primary-color);
    font-size: var(--text-xl);
}

.book-card span {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    color: var(--text-light);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-light);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 10px;
    background: var(--text-light);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* === QUICK ACTION BAR === */
.quick-action-bar {
    padding: var(--space-2xl) 0;
    background: var(--bg-secondary);
}

.quick-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    max-width: 1000px;
    margin: 0 auto;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    background: var(--bg-primary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    flex: 1;
    max-width: 300px;
}

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

.action-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: var(--text-xl);
    flex-shrink: 0;
}

.action-content h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.action-content p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0;
}

.action-arrow {
    color: var(--primary-color);
    font-size: var(--text-2xl);
    animation: pulse 2s infinite;
}

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

/* === SERVICES SECTION === */
.services {
    padding: var(--space-5xl) 0;
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-4xl);
}

.service-card {
    background: var(--bg-primary);
    border: 1px solid rgba(45, 107, 120, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

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

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

.service-card.featured {
    background: var(--gradient-primary);
    color: var(--text-light);
    transform: scale(1.05);
}

.service-card.featured::before {
    background: var(--gradient-accent);
}

.featured-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: var(--gradient-accent);
    color: var(--text-primary);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    font-size: var(--text-3xl);
    color: var(--text-primary);
    box-shadow: var(--shadow-accent);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.service-card h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.service-card.featured h3 {
    color: var(--text-light);
}

.service-card p {
    font-size: var(--text-base);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    color: var(--text-secondary);
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-price {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--space-lg);
}

.service-card.featured .service-price {
    color: var(--accent-color);
}

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

.service-features li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(45, 107, 120, 0.1);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.service-card.featured .service-features li {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.service-features li:last-child {
    border-bottom: none;
}

.services-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gradient-glass);
    border: 1px solid rgba(45, 107, 120, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    gap: var(--space-xl);
}

.cta-content h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.cta-content p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin: 0;
}

/* === PULSE ANIMATION === */
.pulse-animation {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 8px 25px rgba(45, 107, 120, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(45, 107, 120, 0.5), 0 0 0 10px rgba(45, 107, 120, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(45, 107, 120, 0.3);
    }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .floating-cards {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: var(--space-xl);
    }
    
    .quick-actions {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .services-cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-links-container {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Mobile Hero */
    .hero {
        min-height: auto;
        padding: var(--space-4xl) 0;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobile Typography */
    .hero-title {
        font-size: clamp(var(--text-3xl), 8vw, var(--text-5xl));
    }
    
    .section-title {
        font-size: clamp(var(--text-3xl), 6vw, var(--text-4xl));
    }
    
    /* Mobile Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .service-card.featured {
        transform: none;
    }
    
    /* Mobile Action Arrow */
    .action-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero-description {
        font-size: var(--text-lg);
    }
    
    .btn-large {
        padding: var(--space-md) var(--space-lg);
        font-size: var(--text-base);
    }
    
    .service-card {
        padding: var(--space-xl);
    }
    
    .quick-action {
        padding: var(--space-lg);
    }
}

/* === SCROLL BEHAVIORS === */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}