/* ===================================
   GLOBAL STYLES & RESET
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #0f0f0f;
    --color-red: #d90429;
    --color-white: #ffffff;
    --color-dark-gray: #1a1a1a;
    --color-light-gray: #2a2a2a;
    --color-text: #e0e0e0;
    --color-red-light: #ff5555;
    --transition-speed: 0.3s;
    --transition-smooth: 0.5s;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--color-black);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    font-weight: 300;
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--color-red-light);
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-speed);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left var(--transition-speed);
    z-index: -1;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--color-red), #ff5555);
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(217, 4, 41, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(217, 4, 41, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: 1.5px solid var(--color-red);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(217, 4, 41, 0.2);
    border-color: var(--color-red-light);
    transform: translateY(-3px);
}

.btn-emergency {
    background: linear-gradient(135deg, var(--color-red), #ff5555);
    color: var(--color-white);
    box-shadow: 0 12px 36px rgba(217, 4, 41, 0.4);
    padding: 18px 36px;
    flex-direction: column;
}

.btn-emergency:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(217, 4, 41, 0.6);
}

.btn-emergency .btn-number,
.btn-whatsapp .btn-number {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
}

.btn-whatsapp {
    background: rgba(37, 211, 102, 0.2);
    color: var(--color-white);
    border: 1.5px solid #25d366;
    flex-direction: column;
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: rgba(37, 211, 102, 0.3);
    border-color: #25d366;
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(37, 211, 102, 0.3);
}

.btn-full {
    width: 100%;
}

.btn-icon {
    font-size: 20px;
    display: inline-flex;
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(217, 4, 41, 0.2);
    padding: 15px 0;
    transition: all var(--transition-speed);
    height: auto;
}

.navbar.scrolled {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    min-width: 0;
    flex-shrink: 0;
    overflow: visible;
    border-radius: 0;
    background: transparent;
}

.logo-switcher {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    perspective: 1000px;
}

.logo-icon {
    font-size: 32px;
    color: var(--color-red);
}

.logo-img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.08));
    transform-origin: center center;
    max-width: 100%;
    max-height: 100%;
}

.logo-img--main {
    opacity: 1;
}

.logo-img--alt {
    opacity: 0;
}



@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text {
    background: linear-gradient(135deg, var(--color-red), var(--color-red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    font-weight: 500;
    position: relative;
    color: var(--color-text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-red);
    transition: width var(--transition-speed);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .cta-btn {
    color: var(--color-white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-speed);
    transform-origin: center;
}

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

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

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

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
}

.hero-particles {
    display: none;
}

@keyframes particles {
    0% { transform: translate(0, 0); }
    100% { transform: translate(200px, 200px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.hero-title {
    font-size: 84px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text);
    margin-bottom: 30px;
}

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

.hero-text {
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-red);
}

.stat-label {
    font-size: 14px;
    color: var(--color-text);
    font-weight: 400;
}

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

.hero-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(217, 4, 41, 0.3));
}

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

.key-large {
    font-size: 150px;
    filter: drop-shadow(0 0 30px rgba(217, 4, 41, 0.6));
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.lock-shape {
    display: none;
}

.floating-shape-1,
.floating-shape-2 {
    display: none;
}

.floating-shape-1 {
    top: 20px;
    left: 50px;
    animation-delay: 0s;
}

.floating-shape-2 {
    bottom: 20px;
    right: 30px;
    animation-delay: 1s;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services {
    padding: 100px 0;
    position: relative;
    background: var(--color-black);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 56px;
    margin-bottom: 15px;
    color: var(--color-white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text);
    max-width: 500px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--color-dark-gray);
    border: 1px solid var(--color-light-gray);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:nth-child(1) { }
.service-card:nth-child(2) { }
.service-card:nth-child(3) { }
.service-card:nth-child(4) { }
.service-card:nth-child(5) { }
.service-card:nth-child(6) { }

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

.service-card:hover {
    background: var(--color-light-gray);
    border-color: var(--color-red);
    box-shadow: 0 10px 30px rgba(217, 4, 41, 0.4);
}

.service-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
    transition: transform var(--transition-speed);
    color: var(--color-red);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--color-white);
}

.service-card p {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
}

/* ===================================
   WHY US SECTION
   =================================== */

.why-us {
    padding: 100px 0;
    background: var(--color-black);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.advantage-card {
    background: var(--color-dark-gray);
    border: 1px solid var(--color-light-gray);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:nth-child(1) { }
.advantage-card:nth-child(2) { }
.advantage-card:nth-child(3) { }
.advantage-card:nth-child(4) { }
.advantage-card:nth-child(5) { }

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

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

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

.advantage-card:hover {
    background: var(--color-light-gray);
    border-color: var(--color-red);
    box-shadow: 0 10px 30px rgba(217, 4, 41, 0.4);
}

.advantage-icon {
    font-size: 50px;
    margin-bottom: 15px;
    display: block;
    transition: transform var(--transition-speed);
}

@keyframes serviceClock {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes serviceSpeed {
    0%, 100% {
        transform: translateX(0) scale(1);
        filter: drop-shadow(0 0 3px rgba(249, 115, 22, 0.25));
    }
    35% {
        transform: translateX(5px) scale(1.08);
        filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.8));
    }
    70% {
        transform: translateX(-3px) scale(1);
        filter: drop-shadow(0 0 6px rgba(249, 115, 22, 0.45));
    }
}

@keyframes serviceCheck {
    0%, 100% { transform: scale(1); }
    45% { transform: scale(1.16); }
    65% { transform: scale(0.96); }
}

@keyframes servicePrice {
    0%, 100% { transform: rotate(0deg); }
    30% { transform: rotate(12deg); }
    60% { transform: rotate(-8deg); }
}

@keyframes serviceTeam {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.advantage-card:nth-child(1) .advantage-icon {
    animation: serviceClock 5s linear infinite;
}

.advantage-card:nth-child(2) .advantage-icon {
    animation: serviceSpeed 1.4s ease-in-out infinite;
}

.advantage-card:nth-child(3) .advantage-icon {
    animation: serviceCheck 2s ease-in-out infinite;
}

.advantage-card:nth-child(4) .advantage-icon {
    animation: servicePrice 2.4s ease-in-out infinite;
}

.advantage-card:nth-child(5) .advantage-icon {
    animation: serviceTeam 2.2s ease-in-out infinite;
}

/* Renkli İkonlar */
.advantage-card:nth-child(1) .advantage-icon {
    color: #7c3aed;
}

.advantage-card:nth-child(2) .advantage-icon {
    color: #f97316;
}

.advantage-card:nth-child(3) .advantage-icon {
    color: #3b82f6;
}

.advantage-card:nth-child(4) .advantage-icon {
    color: #10b981;
}

.advantage-card:nth-child(5) .advantage-icon {
    color: #eab308;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
    .advantage-card .advantage-icon {
        animation: none;
    }
}

.advantage-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-white);
}

.advantage-card p {
    font-size: 13px;
    color: var(--color-text);
    line-height: 1.5;
}

/* ===================================
   EMERGENCY SECTION
   =================================== */

.emergency {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.emergency-glow {
    display: none;
}

.emergency-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.emergency-text h2 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--color-white);
}

.emergency-text p {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 30px;
}

.emergency-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.emergency-illustration {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring {
    display: none;
}

@keyframes pulse-animation {
    0% {
        width: 250px;
        height: 250px;
        opacity: 1;
    }
    100% {
        width: 350px;
        height: 350px;
        opacity: 0;
    }
}

.emergency-icon {
    font-size: 100px;
    color: var(--color-red);
}

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

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials {
    padding: 100px 0;
    background: var(--color-black);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--color-dark-gray);
    border: 1px solid var(--color-light-gray);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:nth-child(1) { }
.testimonial-card:nth-child(2) { }
.testimonial-card:nth-child(3) { }
.testimonial-card:nth-child(4) { }
.testimonial-card:nth-child(5) { }
.testimonial-card:nth-child(6) { }

.testimonial-card:hover {
    background: var(--color-light-gray);
    border-color: var(--color-red);
    box-shadow: 0 10px 30px rgba(217, 4, 41, 0.4);
}

.stars {
    font-size: 18px;
    margin-bottom: 15px;
    display: block;
}

.testimonial-text {
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-red), var(--color-red-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.author-name {
    font-weight: 600;
    color: var(--color-white);
}

.author-location {
    font-size: 12px;
    color: var(--color-text);
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.info-card {
    background: var(--color-dark-gray);
    border: 1px solid var(--color-light-gray);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:nth-child(1) { }
.info-card:nth-child(2) { }
.info-card:nth-child(3) { }
.info-card:nth-child(4) { }

.info-card:hover {
    background: var(--color-light-gray);
    border-color: var(--color-red);
    box-shadow: 0 10px 30px rgba(217, 4, 41, 0.4);
}

.info-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
    color: var(--color-red);
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-white);
}

.info-card p {
    margin: 5px 0;
}

.info-card a {
    font-weight: 600;
    display: block;
}

.info-card .small {
    font-size: 12px;
    color: var(--color-text);
    font-weight: 300;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(217, 4, 41, 0.3);
    border-radius: 12px;
    color: var(--color-white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all var(--transition-speed);
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(224, 224, 224, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(15, 15, 15, 0.8);
    border-color: var(--color-red);
    box-shadow: 0 0 20px rgba(217, 4, 41, 0.3);
}

.map-container {
    margin-top: 60px;
    text-align: center;
}

.map-container h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--color-white);
}

.map-container iframe {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(217, 4, 41, 0.2);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--color-black);
    border-top: 1px solid rgba(217, 4, 41, 0.3);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--color-white);
}

.footer-section p {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    font-size: 14px;
    color: var(--color-text);
    transition: color var(--transition-speed);
}

.footer-section ul li a:hover {
    color: var(--color-red);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(217, 4, 41, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--transition-speed);
    border: 1px solid rgba(217, 4, 41, 0.3);
    color: var(--color-red);
}

.social-icon:hover {
    background: rgba(217, 4, 41, 0.4);
    transform: translateY(-5px);
}

.emergency-number {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.emergency-number a {
    color: var(--color-red);
}

.emergency-text {
    font-size: 12px;
    margin-bottom: 15px;
    color: var(--color-text);
}

.footer-bottom {
    border-top: 1px solid rgba(217, 4, 41, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--color-text);
}

.footer-bottom a {
    color: var(--color-red);
}

/* ===================================
   EMERGENCY CALL BUTTON (FIXED)
   =================================== */

.emergency-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-red), #ff5555);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--color-white);
    box-shadow: 0 10px 40px rgba(217, 4, 41, 0.6);
    transition: all var(--transition-speed);
    z-index: 999;
    text-decoration: none;
}

.emergency-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(217, 4, 41, 0.8);
}

.emergency-call-btn .pulse {
    display: none;
}

@keyframes pulse {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    100% {
        width: 140%;
        height: 140%;
        opacity: 0;
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-right {
        gap: 40px;
    }

    .hero-illustration {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        gap: 30px;
    }

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

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

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

    .emergency-illustration {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 100px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(15, 15, 15, 0.99);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        padding: 0;
        z-index: 999;
    }

    .nav-links.active {
        max-height: 500px;
        padding: 20px 0;
    }

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

    .nav-links a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(217, 4, 41, 0.1);
    }

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

    .hero {
        padding-top: 110px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons,
    .emergency-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn,
    .emergency-buttons .btn {
        width: 100%;
        justify-content: center;
        white-space: normal;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
        align-items: start;
    }

    .stat {
        align-items: center;
        text-align: center;
    }

    .stat-number {
        font-size: 24px;
    }

    .section-title {
        font-size: 36px;
    }

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

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

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

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

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

    .emergency-call-btn {
        width: 60px;
        height: 60px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
        white-space: normal;
    }

    .service-card,
    .advantage-card,
    .testimonial-card,
    .info-card {
        padding: 25px 15px;
    }

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

    .info-card {
        padding: 20px;
    }

    .map-container iframe {
        height: 250px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
    }
}

/* ===================================
   SCROLL REVEAL ANIMATIONS
   =================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
