/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
    --primary: #e74c3c;
    --primary-dark: #c0392b;
    --secondary: #27ae60;
    --accent: #f39c12;
    --dark: #2c3e50;
    --darker: #1a252f;
    --light: #ecf0f1;
    --lighter: #f8f9fa;
    --text: #34495e;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Visually hidden for accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 14px;
    font-size: 15px;
}

.btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

.logo i {
    font-size: 28px;
    color: var(--primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 10px;
    color: var(--text-light);
    font-weight: 500;
}

.desktop-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    position: relative;
    transition: var(--transition);
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

/* ============================================
   MOBILE MENU STYLES - GUNCELLENDI
   ============================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    z-index: 1001;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.hamburger:active {
    background: rgba(231, 76, 60, 0.1);
}

.bar {
    width: 24px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    z-index: 999;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--light);
}

.mobile-menu-header span {
    font-weight: 700;
    color: var(--dark);
}

.close-menu {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.close-menu:hover {
    background: var(--primary);
    color: var(--white);
}

.mobile-nav-list {
    list-style: none;
    padding: 20px;
    flex: 1;
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--light);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
    min-height: 48px;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    color: var(--primary);
    padding-left: 5px;
}

.mobile-nav-link i {
    width: 32px;
    height: 32px;
    background: var(--lighter);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--light);
}

.mobile-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.mobile-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding-top: 90px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #fff5f5 0%, var(--white) 50%, #f0fff4 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(231, 76, 60, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary);
}

.hero-desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}

.feature-item i {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    box-shadow: var(--shadow);
    font-size: 14px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.image-container img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.image-container img:hover {
    transform: scale(1.02);
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.floating-badge i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.floating-badge strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
}

.floating-badge span {
    color: var(--text-light);
    font-size: 11px;
}

.badge-1 {
    top: 20%;
    left: -20px;
    animation: float 3s ease-in-out infinite;
}

.badge-2 {
    bottom: 20%;
    right: -20px;
    animation: float 3s ease-in-out infinite 0.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   EMERGENCY BAR
   ============================================ */
.emergency-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 20px 0;
    color: var(--white);
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.emergency-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.emergency-text h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.emergency-text p {
    font-size: 14px;
    opacity: 0.9;
}

.emergency-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    animation: pulse 2s infinite;
    transition: var(--transition);
}

.emergency-phone:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-light);
    font-size: 15px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
}

.experience-box {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 20px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
}

.exp-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.4;
}

.about-content .lead {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 15px;
    font-weight: 500;
}

.about-content > p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    gap: 15px;
}

.about-feature i {
    font-size: 22px;
    color: var(--secondary);
    margin-top: 2px;
}

.about-feature h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.about-feature p {
    font-size: 14px;
    color: var(--text-light);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 80px 0;
    background: var(--lighter);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.service-card:hover,
.service-card:focus {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(231, 76, 60, 0.1);
    outline: none;
}

.service-card:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(231,76,60,0.1) 0%, rgba(39,174,96,0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-card > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
}

.service-more i {
    transition: var(--transition);
}

.service-card:hover .service-more i {
    transform: translateX(5px);
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.02"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: rgba(255,255,255,0.05);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-lead {
    font-size: 17px;
    color: var(--text);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--lighter);
    border-radius: 16px;
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--light);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.contact-detail span {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 3px;
}

.contact-detail strong {
    font-size: 17px;
    color: var(--dark);
    font-weight: 700;
}

.contact-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-form-wrapper {
    background: var(--lighter);
    padding: 35px;
    border-radius: 24px;
}

.contact-form h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--darker);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 28px;
    color: var(--primary);
}

.footer-logo-main {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.footer-logo-sub {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
}

.footer-brand > p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-contact-info a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-contact-info a:hover {
    color: var(--primary);
}

.footer-contact-info i {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

.footer-bottom a:hover {
    color: var(--primary);
}

/* ============================================
   FIXED BOTTOM BAR (MOBILE)
   ============================================ */
.fixed-bottom {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 10px 15px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    justify-content: space-around;
    gap: 10px;
}

.fixed-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    color: var(--white);
    flex: 1;
    max-width: 140px;
    transition: var(--transition);
}

.fixed-btn:hover {
    transform: translateY(-2px);
}

.fixed-btn i {
    font-size: 16px;
}

.fixed-call {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.fixed-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

/* ============================================
   SERVICE MODALS
   ============================================ */
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
    align-items: flex-start;
    justify-content: center;
}

.service-modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 24px;
    max-width: 550px;
    width: 100%;
    margin: auto;
    position: relative;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 16px;
    z-index: 10;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.modal-close:hover {
    background: var(--primary);
    color: var(--white);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 40px 30px 30px;
    text-align: center;
    border-radius: 24px 24px 0 0;
}

.modal-header i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 700;
}

.modal-body {
    padding: 30px;
}

.modal-body > p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 15px;
}

.modal-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.modal-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-body li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
}

.modal-body li i {
    color: var(--secondary);
    font-size: 16px;
}

.modal-note {
    background: #fff3cd;
    border-left: 4px solid var(--accent);
    padding: 15px;
    margin-top: 25px;
    border-radius: 0 12px 12px 0;
    display: flex;
    gap: 12px;
}

.modal-note i {
    color: #856404;
    font-size: 18px;
    margin-top: 2px;
}

.modal-note p {
    font-size: 13px;
    color: #856404;
    line-height: 1.5;
}

.modal-footer {
    padding: 0 30px 30px;
    text-align: center;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .image-container {
        max-width: 300px;
    }
    
    .floating-badge {
        display: none;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .experience-box {
        right: 10px;
        bottom: -15px;
        padding: 15px 20px;
    }
    
    .exp-number {
        font-size: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-brand > p {
        max-width: 100%;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-contact-info p {
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (768px ve altı)
   ============================================ */
@media (max-width: 768px) {
    .desktop-menu {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .image-container {
        max-width: 280px;
    }
    
    .image-container img {
        max-height: 350px;
        object-fit: cover;
    }
    
    .about-image {
        max-width: 300px;
    }
    
    .about-image img {
        max-height: 350px;
        object-fit: cover;
    }
    
    .fixed-bottom {
        display: flex;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .hero {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-desc {
        font-size: 15px;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .emergency-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .emergency-phone {
        font-size: 15px;
        padding: 10px 20px;
    }
    
    .modal-content {
        margin: 10px auto;
    }
    
    .modal-header {
        padding: 30px 20px 25px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 25px 20px;
    }
    
    .modal-footer {
        padding: 0 20px 25px;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (480px ve altı)
   ============================================ */
@media (max-width: 480px) {
    .logo-main {
        font-size: 16px;
    }
    
    .logo-sub {
        font-size: 9px;
    }
    
    .image-container {
        max-width: 260px;
    }
    
    .image-container img {
        max-height: 320px;
    }
    
    .about-image {
        max-width: 260px;
    }
    
    .about-image img {
        max-height: 320px;
    }
    
    .experience-box {
        padding: 12px 16px;
        border-radius: 12px;
    }
    
    .exp-number {
        font-size: 24px;
    }
    
    .exp-text {
        font-size: 10px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .feature-item {
        font-size: 12px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-card {
        padding: 25px 20px;
    }
    
    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .fixed-btn {
        padding: 8px 15px;
        font-size: 12px;
        max-width: 120px;
    }
    
    .fixed-btn span {
        display: none;
    }
    
    .fixed-btn i {
        font-size: 20px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .service-card h3 {
        font-size: 16px;
    }
    
    .modal-header i {
        font-size: 36px;
    }
    
    .modal-header h2 {
        font-size: 18px;
    }
    
    .modal-body {
        padding: 20px 15px;
    }
    
    .modal-body li {
        font-size: 13px;
    }
    
    .emergency-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .emergency-text h2 {
        font-size: 16px;
    }
    
    .emergency-text p {
        font-size: 12px;
    }
}

/* ============================================
   EXTRA SMALL (iPhone SE vs)
   ============================================ */
@media (max-width: 360px) {
    .container {
        padding: 0 15px;
    }
    
    .image-container {
        max-width: 240px;
    }
    
    .about-image {
        max-width: 240px;
    }
    
    .hero h1 {
        font-size: 22px;
    }
    
    .btn-lg {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .fixed-btn {
        max-width: 100px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar,
    .fixed-bottom,
    .mobile-menu,
    .mobile-overlay,
    .service-modal,
    .emergency-bar {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding-top: 20px;
    }
    
    body {
        padding-bottom: 0;
    }
}