:root {
    --primary: #2d3436;        
    --primary-dark: #1e272e;   
    --accent: #00cec9;         
    --accent-light: #81ecec;   
    --water: #0984e3;          
    --dark: #1a1a1a;
    --darker: #0d0d0d;
    --light: #dfe6e9;          
    --lighter: #f5f6fa;
    --text: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(45, 52, 54, 0.15);
    --shadow-lg: 0 10px 40px rgba(45, 52, 54, 0.2);
    --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;
}

/* Font Awesome Genel Ayarları */
i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* 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(--accent);
    outline-offset: 2px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #00b894 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 206, 201, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 206, 201, 0.5);
}

.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(45, 52, 54, 0.3);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(45, 52, 54, 0.1);
    transition: var(--transition);
    border-bottom: 2px solid var(--accent);
}

.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-icon {
    font-size: 28px;
    color: var(--primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.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(--accent);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

/* Mobile Menu */
.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(45, 52, 54, 0.1);
}

.bar {
    width: 24px;
    height: 3px;
    background: var(--primary);
    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(45, 52, 54, 0.6);
    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(45, 52, 54, 0.2);
    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: 2px solid var(--accent);
    background: var(--primary);
    color: var(--white);
}

.mobile-menu-header span {
    font-weight: 700;
}

.close-menu {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.close-menu:hover {
    background: var(--accent);
    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: 24px;
    color: var(--accent);
    font-size: 18px;
}

.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(--accent) 0%, #00b894 100%);
    color: var(--white);
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
}

.mobile-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 206, 201, 0.4);
}

.mobile-call-btn i {
    font-size: 18px;
}

/* Hero Section */
.hero {
    padding-top: 90px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #2d3436 0%, #1e272e 50%, #000000 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
}

.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(0, 206, 201, 0.2);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 206, 201, 0.3);
}

.hero-badge i {
    font-size: 14px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.highlight {
    color: var(--accent);
}

.hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 206, 201, 0.3);
}

.stat-item i {
    font-size: 24px;
    color: var(--accent);
}

.stat-number {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
}

.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;
    color: var(--white);
}

.feature-item i {
    font-size: 16px;
    color: var(--accent);
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-cta i {
    font-size: 18px;
}

.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);
    border: 3px solid var(--accent);
}

.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;
    color: var(--text);
}

.floating-badge i {
    font-size: 24px;
    color: var(--accent);
}

.floating-badge strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.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(--accent) 0%, #00b894 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: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
}

.emergency-text h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--white);
}

.emergency-text p {
    font-size: 14px;
    opacity: 0.9;
}

.emergency-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--accent);
    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.3);
}

.emergency-phone i {
    font-size: 20px;
}

@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(--accent);
    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(--primary);
    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;
    border: 3px solid var(--accent);
}

.experience-box {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, #00b894 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: 600;
    line-height: 1.4;
}

.about-content .lead {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.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: 24px;
    color: var(--accent);
    margin-top: 2px;
    width: 24px;
    flex-shrink: 0;
}

.about-feature h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    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(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    overflow: hidden;
}

.service-card:hover,
.service-card:focus {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
    outline: none;
}

.service-card:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--white);
    transition: var(--transition);
}

.service-icon i {
    font-size: 24px;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent) 0%, #00b894 100%);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-card > .service-content > 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(--accent);
    font-size: 13px;
    font-weight: 700;
}

.service-more i {
    font-size: 12px;
    transition: var(--transition);
}

.service-card:hover .service-more i {
    transform: translateX(5px);
}

/* 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: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-icon i {
    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(--primary);
    font-weight: 700;
}

.contact-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-buttons i {
    font-size: 18px;
}

.contact-form-wrapper {
    background: var(--lighter);
    padding: 35px;
    border-radius: 24px;
    border: 1px solid rgba(0, 206, 201, 0.2);
}

.contact-form h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    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 #dfe6e9;
    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(--accent);
    box-shadow: 0 0 0 3px rgba(0, 206, 201, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 0;
    border-top: 3px solid var(--accent);
}

.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(--accent);
}

.footer-logo-main {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    text-transform: uppercase;
}

.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(--accent);
}

.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(--accent);
    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(--accent);
}

.footer-contact-info i {
    color: var(--accent);
    font-size: 16px;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 206, 201, 0.2);
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

/* Fixed Bottom Bar */
.fixed-bottom {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 10px 15px;
    box-shadow: 0 -4px 20px rgba(45, 52, 54, 0.15);
    z-index: 999;
    justify-content: space-around;
    gap: 10px;
    border-top: 2px solid var(--accent);
}

.fixed-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    color: var(--dark);
    flex: 1;
    max-width: 140px;
    transition: var(--transition);
    text-decoration: none;
}

.fixed-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.fixed-btn i {
    font-size: 20px;
}

.fixed-call {
    background: linear-gradient(135deg, var(--accent) 0%, #00b894 100%);
    color: var(--white);
}

.fixed-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
}

/* Service Modals */
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 52, 54, 0.8);
    backdrop-filter: blur(4px);
    -webkit-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;
    border: 2px solid var(--accent);
}

@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: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    z-index: 10;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.modal-close:hover {
    background: var(--accent);
    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: 22px 22px 0 0;
    border-bottom: 3px solid var(--accent);
}

.modal-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--accent);
}

.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(--primary);
    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(--accent);
    font-size: 16px;
}

.modal-note {
    background: rgba(0, 206, 201, 0.1);
    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: var(--primary);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.modal-note p {
    font-size: 13px;
    color: var(--primary);
    line-height: 1.5;
}

.modal-footer {
    padding: 0 30px 30px;
    text-align: center;
}

/* Responsive */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .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;
    }
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .image-container {
        max-width: 280px;
    }
    
    .about-image {
        max-width: 300px;
    }
    
    .fixed-bottom {
        display: flex;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .hero {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .emergency-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .modal-content {
        margin: 10px auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }
    
    .service-image {
        height: 150px;
    }
    
    .fixed-btn span {
        display: none;
    }
    
    .fixed-btn i {
        font-size: 24px;
    }
}

@media print {
    .navbar,
    .fixed-bottom,
    .mobile-menu,
    .mobile-overlay,
    .service-modal,
    .emergency-bar {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding-top: 20px;
        background: var(--white);
        color: var(--dark);
    }
    
    body {
        padding-bottom: 0;
    }
}