/* Modern CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Mevcut Renkler - Korundu */
    --primary: #1a1a1a;
    --primary-light: #333;
    --secondary: #f5f5f5;
    --accent: #0066cc;
    --accent-light: #3385db;
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --bg-white: #ffffff;
    --bg-light: #fafafa;
    --border: #e5e5e5;

    /* Modern Gölgeler */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-md: 0 6px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);

    /* Gradient */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    --gradient-bg: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background: var(--bg-white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1410px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 90%;
    background: rgba(26, 26, 26, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 50px;
    z-index: 1000;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 0 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    top: 8px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55px;
    gap: 2rem;
}

.logo {
    text-decoration: none;
    color: white;
    position: relative;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo:hover {
    transform: translateY(-1px);
    color: #3385db;
}

.logo-text {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    color: white;
    white-space: nowrap;
    transition: color var(--transition);
}

.logo:hover .logo-text {
    color: #3385db;
}

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: all var(--transition);
    padding: 0.55rem 1rem;
    border-radius: 25px;
}

.nav-links a::after {
    display: none;
}

.nav-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

.contact-btn {
    background: #0066cc !important;
    color: white !important;
}

.contact-btn:hover {
    background: #0052a3 !important;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 0.75rem 0;
    list-style: none;
    min-width: 180px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition);
    z-index: 1000;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.65rem 1.25rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    border-radius: 0 !important;
    background: transparent !important;
    transition: all var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    padding-left: 1.5rem !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all var(--transition);
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: white;
    transition: all var(--transition);
    border-radius: 2px;
}

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

/* Animated Background Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

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

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-accent);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    bottom: -150px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--gradient-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

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

.hero-wrapper {
    max-width: 1410px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 550px 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.hero-content {
    text-align: left;
    animation: fadeInUp 0.8s ease-out;
}

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

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    animation: slideInDown 0.8s ease-out 0.2s both;
}

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

.badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.subtitle {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeIn 1s ease-out 0.4s both;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1.25rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.stat-icon {
    font-size: 2rem;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    filter: grayscale(0);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.5s both;
}

/* Hero Visual Cards */
.hero-visual {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    animation: fadeIn 1s ease-out 0.6s both;
    height: 600px;
    overflow: hidden;
    padding: 30px 50px 30px 30px;
    margin: -30px -50px -30px -30px;
}

.cards-column {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    animation-duration: 40s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.column-down {
    animation-name: scrollDown;
}

.column-up {
    animation-name: scrollUp;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollUp {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

.floating-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04),
                0 2px 8px rgba(0, 0, 0, 0.02),
                0 1px 3px rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    min-height: 120px;
}

.floating-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08),
                0 6px 14px rgba(0, 0, 0, 0.05),
                0 3px 7px rgba(0, 0, 0, 0.03);
    border-color: rgba(99, 102, 241, 0.2);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: grayscale(0.2);
}

.floating-card:hover .card-icon {
    filter: grayscale(0);
    transform: scale(1.1);
    transition: all var(--transition);
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.card-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    white-space: nowrap;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

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

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

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Sliding Background Button Styles */
.button {
    --clr: #e8617c;
    position: relative;
    overflow: hidden;
    border: none;
    padding: 0;
    width: 220px;
    height: 50px;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.button-phone {
    --clr: #22c55e;
}

.button-maps {
    --clr: #4a90e2;
}

.button-decor {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--clr);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1;
}

.button:hover .button-decor {
    transform: translate(0);
}

.button__icon {
    position: relative;
    background: var(--clr);
    width: 60px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    border-radius: 10px 0 0 10px;
    z-index: 2;
    flex-shrink: 0;
    color: white;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.8);
}

.button__text {
    position: relative;
    font-size: 1.05rem;
    font-weight: 700;
    color: #333;
    padding: 0 1.25rem;
    z-index: 2;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.button:hover .button__text {
    color: #fff;
}

/* ==================== SECTIONS ==================== */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease-out;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

/* ==================== INTRO SECTION ==================== */
.intro-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 5rem 0;
}

.intro-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== SERVICES GRID ==================== */
.services {
    background: var(--bg-white);
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 1.25rem;
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

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

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.service-features li {
    padding: 0.6rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ==================== DETAILED SERVICES ==================== */
.detailed-services {
    background: var(--bg-light);
    padding: 5rem 0;
}

.service-detail {
    background: white;
    border-radius: 1.25rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-detail:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
    border-color: var(--accent);
}

.service-detail h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.service-detail h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.service-detail p {
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1rem;
}

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

/* ==================== FAQ SECTION ==================== */
.faq-section {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 1.25rem;
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
}

.faq-item::before {
    content: '?';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 35px;
    height: 35px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    opacity: 0.15;
    transition: all var(--transition);
}

.faq-item:hover::before {
    opacity: 1;
    transform: rotate(360deg);
}

.faq-item:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.faq-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    line-height: 1.4;
    padding-right: 3rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ==================== AREAS SECTION ==================== */
.areas {
    background: var(--gradient-bg);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.area-card {
    background: white;
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
    display: block;
    position: relative;
    overflow: hidden;
}

.area-card::after {
    content: '→';
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition);
}

.area-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.area-card-highlight {
    background: linear-gradient(135deg, rgba(0,102,204,0.02) 0%, rgba(0,102,204,0.05) 100%);
}

.area-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.area-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    padding-right: 2rem;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    background: var(--bg-light);
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    background: white;
    padding: 2.5rem;
    border-radius: 1.25rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: grayscale(1);
    transition: filter var(--transition);
}

.contact-item:hover .contact-icon {
    filter: grayscale(0);
}

.contact-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

.contact-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

.contact-value:hover {
    color: var(--accent);
}

address.contact-value {
    font-style: normal;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ==================== MAP SECTION ==================== */
.map-section {
    padding: 5rem 0;
    position: relative;
    background: var(--bg-white);
}

.map-info {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.map-address {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

.map-address strong {
    color: var(--text-primary);
    font-size: 1.25rem;
    display: block;
    margin-bottom: 0.5rem;
}

.map-phone {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all var(--transition);
}

.map-phone:hover {
    color: var(--accent-dark);
    transform: scale(1.05);
}

.map-container {
    margin-top: 2rem;
}

.map-section iframe {
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
    filter: grayscale(20%);
    transition: filter var(--transition);
}

.map-section:hover iframe {
    filter: grayscale(0%);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        height: 400px;
        margin: 0 auto;
        max-width: 500px;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

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

@media (max-width: 768px) {
    .navbar {
        top: 10px;
        max-width: calc(100% - 20px);
        padding: 0 1rem;
    }

    .navbar.scrolled {
        top: 8px;
    }

    .nav-wrapper {
        height: 50px;
        gap: 0.75rem;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .nav-links {
        position: fixed;
        top: 75px;
        left: 10px;
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        background: rgba(26, 26, 26, 0.95);
        flex-direction: column;
        padding: 1.25rem;
        gap: 0.5rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        z-index: 999;
        border-radius: 25px;
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.875rem 1.25rem;
        text-align: center;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

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

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

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

    .subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    /* Hide hero visual cards on mobile */
    .hero-visual {
        display: none;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
    }

    /* Make buttons full width on mobile */
    .button {
        width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .button {
        width: 100%;
    }

    .floating-card {
        padding: 1.5rem 2rem;
        min-height: 100px;
    }

    .card-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .card-title {
        font-size: 1rem;
    }

    .cards-column {
        animation-duration: 0s;
    }

    section {
        padding: 4rem 0;
    }

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

    .services-grid,
    .areas-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .area-card,
    .faq-item {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 100px 0 50px;
    }

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

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .button {
        width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-cta .btn,
    .hero-cta .button {
        width: 100%;
    }
}

/* ==================== ANIMATIONS ==================== */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .area-card,
    .faq-item,
    .contact-item {
        animation: fadeInUp 0.6s ease-out both;
    }

    .service-card:nth-child(1) { animation-delay: 0.1s; }
    .service-card:nth-child(2) { animation-delay: 0.2s; }
    .service-card:nth-child(3) { animation-delay: 0.3s; }
    .service-card:nth-child(4) { animation-delay: 0.1s; }
    .service-card:nth-child(5) { animation-delay: 0.2s; }
    .service-card:nth-child(6) { animation-delay: 0.3s; }
    .service-card:nth-child(7) { animation-delay: 0.1s; }
    .service-card:nth-child(8) { animation-delay: 0.2s; }
    .service-card:nth-child(9) { animation-delay: 0.3s; }
}

/* ==================== UTILITY CLASSES ==================== */
.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== BRANDS SECTION ==================== */
.brands-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.brand-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.brand-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.brand-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-accent);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all var(--transition);
    margin-top: auto;
}

.brand-link:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.brand-link.disabled {
    background: var(--secondary);
    color: var(--text-secondary);
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .brand-card {
        padding: 1.5rem;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .navbar,
    .hero-cta,
    .map-section {
        display: none;
    }

    section {
        page-break-inside: avoid;
    }
}
