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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fafafa;
}

/* HEADER */
header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.98) 100%);
    color: #333;
    padding: 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ff0000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    color: #ff0000;
    font-size: 28px;
    animation: float 3s ease-in-out infinite;
}

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

header nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

header nav a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff0000;
    transition: width 0.3s;
}

header nav a:hover {
    color: #ff0000;
}

header nav a:hover::after {
    width: 100%;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #ff0000;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* LANGUAGE SWITCHER */
.lang-switcher {
    margin-left: 15px;
    border-left: 2px solid #e0e0e0;
    padding-left: 25px;
}

.lang-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: 500;
}

.lang-btn:hover {
    color: #ff0000;
    background: rgba(255, 0, 0, 0.05);
    transform: scale(1.1);
}

.lang-btn i {
    font-size: 16px;
}

.lang-text {
    font-weight: 600;
}

/* MAIN CONTENT */
main {
    min-height: calc(100vh - 200px);
}

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

h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 20px;
    animation: slideInDown 0.6s ease-out;
}

h2 {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #ff0000 0%, #ff6666 100%);
    border-radius: 3px;
}

h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

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

/* HERO */
.hero {
    background: linear-gradient(135deg, #ff0000 0%, #ff4444 50%, #ff8888 100%);
    color: white;
    padding: 150px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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.1"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeIn 0.8s ease-out;
}

.hero-content h1 {
    font-size: 60px;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.98;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
    font-weight: 500;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* BUTTONS */
.btn {
    background: #ff0000;
    color: white;
    padding: 16px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
    font-size: 16px;
}

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

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

.btn:hover {
    background: #cc0000;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.5);
}

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

.btn-sos {
    background: white;
    color: #ff0000;
    border: none;
}

.btn-sos:hover {
    background: #ff0000;
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #ff0000;
}

.btn-booking {
    background: white;
    color: #ff0000;
    border: 2px solid white;
}

.btn-booking:hover {
    background: #ff0000;
    color: white;
    border-color: white;
}

/* SECTIONS */
section {
    padding: 100px 20px;
}

section h2 {
    margin-bottom: 60px;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff0000 0%, #ff6666 100%);
    transition: left 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 25px 60px rgba(255, 0, 0, 0.18);
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card i {
    font-size: 70px;
    color: #ff0000;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    display: inline-block;
}

.service-card:hover i {
    transform: scale(1.3) rotate(15deg);
}

.service-card h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 700;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* STEPS GRID */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.step {
    text-align: center;
    padding: 40px 25px 50px 25px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid #f0f0f0;
    position: relative;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.03) 0%, transparent 100%);
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.4s;
}

.step:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 50px rgba(255, 0, 0, 0.15);
}

.step:hover::before {
    opacity: 1;
}

.step-number {
    background: linear-gradient(135deg, #ff0000 0%, #ff6666 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.35);
    transition: all 0.4s;
}

.step:hover .step-number {
    transform: scale(1.15) rotate(360deg);
}

.step h3 {
    margin-bottom: 12px;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.step p {
    font-size: 13px;
    color: #333;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* FOOTER */
footer {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    color: #333;
    padding: 60px 20px 25px;
    margin-top: 60px;
    border-top: 1px solid #eee;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #ff0000;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 700;
}

.footer-section p {
    color: #666;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.8;
}

.footer-section a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 15px;
}

.footer-section a:hover {
    color: #ff0000;
    margin-left: 6px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #ddd;
    color: #999;
    font-size: 14px;
}

/* BACKGROUND COLORS */
#szovaltatasok {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

#folyamat {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

#arak {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    color: #1a1a1a;
}

#arak h2 {
    color: #1a1a1a;
}

#arak h2::after {
    background: linear-gradient(90deg, #ff0000 0%, #ff6666 100%);
}

#location {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    color: #1a1a1a;
}

#location h2 {
    color: #1a1a1a;
}

#location h2::after {
    background: linear-gradient(90deg, #ff0000 0%, #ff6666 100%);
}

/* CTA SECTION */
section[style*="background: linear-gradient(135deg"] {
    background: linear-gradient(135deg, #ff0000 0%, #ff4444 100%) !important;
    position: relative;
    overflow: hidden;
}

section[style*="background: linear-gradient(135deg"] h2 {
    color: white;
}

section[style*="background: linear-gradient(135deg"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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.1"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    pointer-events: none;
}

section[style*="background: linear-gradient(135deg"] p {
    color: white;
}

/* RESPONSIVE - TABLET */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 36px;
    }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 12px 15px;
    }

    .logo {
        font-size: 20px;
    }

    .logo i {
        font-size: 24px;
    }

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

    header nav {
        display: none;
    }

    header nav.mobile-active {
        display: flex;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        z-index: 99;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    header nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    header nav a {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 16px;
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .lang-switcher {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #f0f0f0;
        padding-top: 12px;
        margin-left: 0;
        margin-top: 12px;
    }

    .lang-btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        padding: 12px 20px;
    }

    .hero {
        padding: 80px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 35px;
        line-height: 1.6;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 18px;
    }

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

    .service-card {
        padding: 30px 25px;
    }

    .service-card i {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }

    /* Pricing section mobile optimization */
    #arak .service-card p[style*="font-size: 32px"] {
        font-size: 28px !important;
        margin: 20px 0 !important;
    }

    #arak p {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .step {
        padding: 25px 15px;
        min-height: 280px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 26px;
        margin: 0 auto 15px;
    }

    .step h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .step p {
        font-size: 13px;
        line-height: 1.6;
    }

    section {
        padding: 50px 15px;
    }

    section h2 {
        margin-bottom: 35px;
    }

    h2::after {
        width: 60px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 15px;
        gap: 8px;
        min-height: 48px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

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

    .footer-section h3 {
        font-size: 16px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 14px;
    }
}

/* FAQ STYLES */
.faq-item {
    background: white;
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #ff0000;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .faq-item {
        margin-bottom: 20px;
    }
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    transition: all 0.3s ease;
    font-weight: 600;
    color: #1a1a1a;
    min-height: 60px;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px 18px;
        font-size: 15px;
        min-height: 64px;
        gap: 15px;
    }
}

.faq-question i {
    color: #ff0000;
    font-size: 18px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #ff0000 0%, #ff4444 100%);
    color: white;
}

.faq-item.active .faq-question i {
    color: white;
    transform: rotate(90deg);
}

.faq-answer {
    padding: 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 30px;
}

@media (max-width: 768px) {
    .faq-answer {
        padding: 20px;
    }

    .faq-item.active .faq-answer {
        padding: 20px;
    }
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 15px;
}

/* WHATSAPP SECTION */
.whatsapp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.whatsapp-icon-wrapper {
    background: linear-gradient(135deg, #25d366 0%, #20ba5c 100%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.whatsapp-icon-wrapper i {
    font-size: 60px;
    color: white;
}

.whatsapp-info-box {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #25d366;
}

.whatsapp-info-box h4 {
    color: #333;
    margin: 0 0 8px 0;
}

.whatsapp-info-box p {
    color: #333;
    font-size: 14px;
    margin: 0;
}

/* LOCATION SECTION */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.location-info-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.location-list {
    list-style: none;
    padding: 0;
}

.location-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
}

.location-list li:last-child {
    border-bottom: none;
}

.location-phone {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.location-phone a {
    color: #ff0000;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.location-info-box h3 {
    color: #ff0000;
    margin-bottom: 20px;
}

/* MODAL OPTIMIZATIONS */
#serviceDetailsModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        max-height: 90vh;
    }

    .modal-close-btn {
        top: 10px;
        right: 10px;
        font-size: 32px;
        min-width: 48px;
        min-height: 48px;
    }
}

/* WHATSAPP & LOCATION RESPONSIVE */
@media (max-width: 768px) {
    .whatsapp-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    #location iframe {
        height: 350px;
        border-radius: 12px;
    }

    .location-info-box {
        order: 2;
        margin-top: 20px;
    }

    #location iframe {
        order: 1;
    }
}

/* SCROLL TO TOP BUTTON */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff0000 0%, #ff4444 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.35);
    transition: all 0.3s ease;
    z-index: 998;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.5);
}

.scroll-to-top.show {
    display: flex;
}

/* RESPONSIVE - VERY SMALL PHONES */
@media (max-width: 480px) {
    .header-container {
        padding: 12px 15px;
    }

    .logo {
        font-size: 19px;
    }

    .hero {
        padding: 70px 15px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.5;
    }

    h2 {
        font-size: 24px;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card i {
        font-size: 50px;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 19px;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .step {
        padding: 25px 15px;
        min-height: 260px;
    }

    .step-number {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .step h3 {
        font-size: 15px;
    }

    .step p {
        font-size: 13px;
    }

    section {
        padding: 50px 15px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
        max-width: 320px;
    }

    .footer-content {
        gap: 25px;
    }

    .scroll-to-top {
        bottom: 100px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .live-chat-btn {
        width: 58px;
        height: 58px;
        right: 20px;
        bottom: 25px;
    }

    .whatsapp-icon-wrapper {
        width: 100px;
        height: 100px;
        margin: 0 auto 20px;
    }

    .whatsapp-icon-wrapper i {
        font-size: 50px;
    }

    .whatsapp-info-box {
        padding: 25px 20px;
    }

    .location-info-box {
        padding: 25px 20px;
    }

    /* FAQ very small screens */
    .faq-question {
        padding: 20px 25px;
        font-size: 15px;
    }

    .faq-question i {
        font-size: 16px;
    }
}

/* SMOOTH TRANSITIONS */
* {
    transition: color 0.3s ease, background-color 0.3s ease;
}

a {
    transition: all 0.3s ease;
}

/* SCROLL ANIMATION - FADE IN */
.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* SCROLL ANIMATION - SLIDE LEFT */
.scroll-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out 0.1s, transform 0.6s ease-out 0.1s;
}

.scroll-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* SCROLL ANIMATION - SLIDE RIGHT */
.scroll-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out 0.1s, transform 0.6s ease-out 0.1s;
}

.scroll-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* LOADING SPINNER */
.spinner {
    display: none;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 0, 0, 0.1);
    border-top: 4px solid #ff0000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.spinner.show {
    display: block;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9998;
}

.overlay.show {
    display: block;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* LIVE CHAT BUTTON */
.live-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0000 0%, #ff4444 100%);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 0, 0, 0.6);
}

.live-chat-btn:active {
    transform: scale(0.95);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #25d366;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid white;
}

@media (max-width: 768px) {
    .live-chat-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
}

/* FAQ ANIMATION */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out, padding 0.4s ease-out;
    opacity: 0;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 20px 0;
}

.faq-question {
    cursor: pointer;
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    user-select: none;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #ff0000;
}

.faq-question i {
    transition: transform 0.4s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(90deg);
}

/* SCROLL ANIMATION */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card, .step {
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
}

.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.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }
.step:nth-child(5) { animation-delay: 0.5s; }
.step:nth-child(6) { animation-delay: 0.6s; }
.step:nth-child(7) { animation-delay: 0.7s; }
