:root {
    --primary-color: #e30613; /* Signature red */
    --primary-hover: #c40410;
    --dark-color: #1a1a1a;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.section-padding { padding: 5rem 0; }
.highlight { color: var(--primary-color); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark-color);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: #f1f1f1;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    height: 90px;
    transition: var(--transition);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    text-decoration: none;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.logo-bold {
    font-weight: 800;
    color: var(--primary-color);
}

.logo-light {
    font-weight: 300;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--dark-color);
    cursor: pointer;
}

/* Premium Hero Slider Section */
.hero-slider {
    height: 100vh;
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-color: var(--dark-color);
    overflow: hidden;
    padding-top: 80px; /* Offset for header */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.6) 50%, rgba(227,6,19,0.3) 100%);
    z-index: 1;
}

.hero-content-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    animation: slideUp 0.8s ease-out forwards;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #f0f0f0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    animation: slideUp 1s ease-out forwards;
}

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

.justify-center {
    justify-content: center;
    animation: slideUp 1.2s ease-out forwards;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary-color);
}

.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Services */
.services {
    background-color: var(--bg-light);
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(227, 6, 19, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-hover);
    transform: translateX(5px);
}

/* Info Section */
.info-section {
    background-color: var(--white);
}

.info-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.info-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.info-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.info-list li svg {
    color: var(--primary-color);
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-col p {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #a0a0a0;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 1rem;
    color: #a0a0a0;
}

.footer-contact strong {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 1.5rem 0;
}

.footer-bottom p {
    color: #777;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content, .info-content-wrapper, .contact-wrapper, .contact-grid {
        grid-template-columns: 1fr !important;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text p {
        margin: 0 auto 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .desktop-nav, .header-actions {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .header {
        height: 70px;
    }
    
    .logo-bold, .logo-light {
        font-size: 1.2rem !important;
    }
    
    .modal-content {
        padding: 1.5rem;
        margin: 15% auto;
        width: 95%;
    }
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
}

.wa-btn {
    background-color: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.wa-btn:hover {
    background-color: #1ebe57;
    border-color: #1ebe57;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 2.5rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease-out forwards;
}

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

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--text-light);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

#modalTitle {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    padding-right: 2rem;
}

#modalDesc {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(26,26,26,0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-content {
    width: 90%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.close-mobile-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.close-mobile-menu:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
}

.mobile-nav-list li {
    margin-bottom: 1.5rem;
}

.mobile-nav-list a {
    text-decoration: none;
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    transition: var(--transition);
}

.mobile-nav-list a:hover {
    color: var(--primary-color);
}

.mobile-actions {
    width: 100%;
}
/* Overhauled Services Card */
.service-card {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border: 1px solid rgba(227, 6, 19, 0.1);
    box-shadow: 10px 10px 20px #e6e6e6, -10px -10px 20px #ffffff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 15px 15px 30px #d9d9d9, -15px -15px 30px #ffffff;
}

.service-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    box-shadow: inset 5px 5px 10px #f0f0f0, inset -5px -5px 10px #ffffff;
}

@media (max-width: 768px) {
    /* Mobile Slider Redesign */
    .hero-slider {
        min-height: 85vh;
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, rgba(26,26,26,0.5) 0%, rgba(26,26,26,0.95) 100%);
    }
    
    .hero-text {
        text-align: center;
        padding: 0 1rem;
        margin-top: auto;
        padding-bottom: 5rem;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
        font-weight: 800;
        text-shadow: 0 4px 15px rgba(0,0,0,0.8);
        background: -webkit-linear-gradient(#fff, #e0e0e0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        opacity: 0.9;
        margin-bottom: 2rem;
    }
    
    .slider-btn {
        display: none !important; /* Hide arrows on mobile for cleaner look */
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .contact-details {
        padding: 1.5rem !important;
    }
    
    .contact-details h3 {
        font-size: 1.4rem !important;
    }
    
    .contact-details a {
        font-size: 1.2rem !important;
    }
    
    .map-container {
        border-radius: 16px !important;
        border: none !important;
    }
}
@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0 !important;
    }
}

/* --- PREMIUM OVERRIDES --- */
.hero-slider { height: 100vh; min-height: 700px; }
.slide { transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 10s ease-out; transform: scale(1.1); }
.slide.active { transform: scale(1); }
.hero-text h1 { font-size: clamp(2.5rem, 8vw, 5rem); letter-spacing: -2px; }
.hero-text h1 .highlight { background: linear-gradient(135deg, var(--primary-color) 0%, #ff4d4d 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block; }
.slider-btn { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); width: 60px; height: 60px; }
.slider-btn:hover { background: var(--primary-color); }
.dot.active { width: 30px; border-radius: 5px; }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--white); opacity: 0.7; }
.mouse { width: 26px; height: 42px; border: 2px solid var(--white); border-radius: 20px; position: relative; }
.mouse::before { content: ''; width: 4px; height: 8px; background-color: var(--white); position: absolute; top: 8px; left: 50%; transform: translateX(-50%); border-radius: 2px; animation: scrollWheel 2s infinite; }
@keyframes scrollWheel { 0% { transform: translate(-50%, 0); opacity: 1; } 100% { transform: translate(-50%, 20px); opacity: 0; } }
@media (max-width: 768px) { .hero-text h1 { font-size: 3rem; } .hero-buttons { flex-direction: column; width: 100%; } .hero-buttons .btn { width: 100%; } }

/* --- TESTIMONIALS SECTION --- */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 3rem; }
.testimonial-card { background: var(--bg-light); padding: 2rem; border-radius: 16px; border: 1px solid var(--border-color); transition: var(--transition); position: relative; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary-color); }
.stars { color: #ffc107; margin-bottom: 1rem; display: flex; gap: 2px; }
.testimonial-text { font-style: italic; color: var(--text-color); margin-bottom: 1.5rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-info h4 { margin: 0; color: var(--dark-color); font-size: 1.1rem; }
.author-info span { color: var(--text-light); font-size: 0.9rem; }
.google-badge { display: inline-flex; align-items: center; gap: 10px; background: #fff; padding: 10px 20px; border-radius: 50px; box-shadow: var(--shadow); margin-bottom: 2rem; border: 1px solid #eee; }
.google-icon { width: 20px; height: 20px; }
.write-review-btn { margin-top: 3rem; display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--primary-color); text-decoration: none; transition: var(--transition); }
.write-review-btn:hover { text-decoration: underline; transform: translateX(5px); }

/* --- MINIMAL HERO BUTTONS --- */
.hero-text { min-height: 320px; display: flex; flex-direction: column; justify-content: center; }
.hero-buttons { margin-top: auto; padding-top: 2rem; gap: 1rem !important; }
.hero-buttons .btn { padding: 0.6rem 1.4rem; font-size: 0.95rem; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; border-width: 1px; }
.hero-buttons .btn-primary { background: var(--primary-color); border-color: var(--primary-color); }
.hero-buttons .btn-outline { background: transparent; border-color: rgba(255,255,255,0.4); backdrop-filter: blur(5px); }
.hero-buttons .btn-outline:hover { background: var(--white); border-color: var(--white); color: var(--dark-color); }
@media (max-width: 768px) { .hero-text { min-height: 280px; } .hero-buttons { flex-direction: row !important; flex-wrap: wrap; justify-content: center; } .hero-buttons .btn { flex: 1; min-width: 140px; } }

/* --- LANGUAGE SELECTOR --- */
.lang-btn { background: transparent; border: 1px solid var(--border-color); color: var(--text-light); padding: 4px 8px; border-radius: 4px; font-size: 0.8rem; font-weight: 700; cursor: pointer; transition: var(--transition); }
.lang-btn.active { background: var(--primary-color); color: var(--white); border-color: var(--primary-color); }
.lang-btn:hover:not(.active) { background: #eee; }

/* --- MOBILE REFINEMENTS --- */
@media (max-width: 768px) {
    .btn-text-mobile { display: none; }
    .wa-btn { padding: 0.6rem !important; min-width: 44px; justify-content: center; }
    .header-actions { gap: 0.5rem !important; }
}

.mobile-lang-selector .lang-btn { flex: 1; padding: 12px; font-size: 1rem; }

/* --- CTA REDESIGN --- */
.cta-redesign { background: #fdfdfd; padding: 100px 0; }
.cta-card { background: var(--dark-color); border-radius: 30px; display: grid; grid-template-columns: 1.2fr 1fr; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.2); position: relative; }
.cta-content { padding: 80px; color: white; display: flex; flex-direction: column; justify-content: center; z-index: 2; }
.cta-content h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 900; margin-bottom: 2rem; line-height: 1.1; }
.cta-content p { font-size: 1.2rem; color: rgba(255,255,255,0.7); margin-bottom: 3rem; line-height: 1.6; max-width: 500px; }
.cta-actions { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.cta-image { position: relative; overflow: hidden; min-height: 400px; }
.cta-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.cta-card:hover .cta-image img { transform: scale(1.05); }
@media (max-width: 992px) { .cta-card { grid-template-columns: 1fr; } .cta-content { padding: 40px; text-align: center; align-items: center; } .cta-actions { justify-content: center; } }

/* --- IMMERSIVE MODAL --- */
.immersive-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 2000; display: none; align-items: center; justify-content: center; }
.immersive-modal.active { display: flex; }
.immersive-modal-bg { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.95); backdrop-filter: blur(20px); }
.immersive-modal-container { position: relative; width: 90%; max-width: 1000px; background: white; border-radius: 30px; overflow: hidden; animation: modalIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); }
@keyframes modalIn { from { opacity: 0; transform: scale(0.9) translateY(40px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.close-immersive-modal { position: absolute; top: 30px; right: 30px; background: #f0f0f0; border: none; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.3s; z-index: 10; }
.close-immersive-modal:hover { background: var(--primary-color); color: white; transform: rotate(90deg); }
.immersive-modal-content { display: grid; grid-template-columns: 1fr; padding: 60px; }
.modal-header-section { margin-bottom: 2rem; border-bottom: 1px solid #eee; padding-bottom: 2rem; }
.modal-category { color: var(--primary-color); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 1rem; display: block; }
.modal-main-title { font-size: 3rem; font-weight: 900; color: var(--dark-color); }
.modal-text-content { font-size: 1.25rem; line-height: 1.8; color: #444; margin-bottom: 3rem; }
.modal-actions { display: flex; gap: 1.5rem; }
@media (max-width: 768px) { .immersive-modal-content { padding: 30px; } .modal-main-title { font-size: 2rem; } .modal-actions { flex-direction: column; } .immersive-modal-container { height: 90vh; overflow-y: auto; } }

/* --- MOBILE REFINEMENTS 2 --- */
@media (max-width: 768px) {
    .btn-text-mobile { display: inline !important; }
    .wa-btn { padding: 0.8rem 1.5rem !important; }
}

/* --- FULL-SCREEN SERVICE DETAIL VIEW --- */
.service-detail-view { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--white); z-index: 9999; display: none; overflow-y: auto; animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.detail-header { padding: 1.5rem 0; border-bottom: 1px solid #eee; position: sticky; top: 0; background: var(--white); z-index: 10; }
.detail-nav { display: flex; justify-content: space-between; align-items: center; }
.back-btn { background: none; border: none; display: flex; align-items: center; gap: 8px; font-weight: 700; cursor: pointer; color: var(--dark-color); transition: var(--transition); }
.back-btn:hover { color: var(--primary-color); transform: translateX(-5px); }
.detail-content-wrapper { padding: 4rem 0; }
.detail-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: center; }
.detail-text h2 { font-size: 3.5rem; margin-bottom: 2rem; color: var(--dark-color); font-weight: 800; line-height: 1.1; }
.detail-description { font-size: 1.25rem; line-height: 1.8; color: #555; margin-bottom: 3rem; }
.detail-image { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.detail-image img { width: 100%; display: block; }
.detail-actions { display: flex; gap: 1.5rem; }
@media (max-width: 992px) { .detail-grid { grid-template-columns: 1fr; gap: 2rem; } .detail-text h2 { font-size: 2.5rem; } }

/* --- PREMIUM CTA SECTION --- */
.cta-premium { padding: 6rem 0; background: #f9f9f9; }
.cta-card { background: linear-gradient(135deg, var(--dark-color) 0%, #333 100%); border-radius: 30px; padding: 4rem; display: flex; justify-content: space-between; align-items: center; position: relative; overflow: hidden; box-shadow: 0 30px 60px -12px rgba(0,0,0,0.3); }
.cta-card::before { content: ''; position: absolute; top: -50%; left: -10%; width: 60%; height: 200%; background: rgba(227,6,19,0.05); transform: rotate(15deg); pointer-events: none; }
.cta-content { flex: 1; padding-right: 2rem; z-index: 1; }
.cta-content h2 { font-size: 3rem; color: var(--white); margin-bottom: 1rem; font-weight: 800; }
.cta-content p { font-size: 1.2rem; color: #ccc; max-width: 500px; }
.cta-actions { display: flex; gap: 1.5rem; z-index: 1; }
@media (max-width: 992px) { .cta-card { flex-direction: column; text-align: center; padding: 3rem 2rem; } .cta-content { padding-right: 0; margin-bottom: 2rem; } .cta-content h2 { font-size: 2.2rem; } .cta-actions { width: 100%; justify-content: center; } }

/* --- MOBILE NAVBAR WHATSAPP FIX --- */
@media (max-width: 768px) {
    .btn-text-mobile { display: inline-block !important; margin-left: 5px; }
    .wa-btn { padding: 0.6rem 1rem !important; width: auto !important; }
    .header-actions { display: none; } /* Hide buttons on mobile header to avoid clutter, keep only mobile menu */
    /* OR if user wants it, we make it smaller */
}

/* --- CTA REDESIGN (INDUSTRIAL DARK) --- */
.cta-premium { padding: 8rem 0; background: #0a0a0a; position: relative; overflow: hidden; }
.cta-premium::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 70% 30%, rgba(227,6,19,0.15) 0%, transparent 70%); }
.cta-full-width { display: flex; align-items: center; justify-content: space-between; gap: 4rem; position: relative; z-index: 2; }
.cta-text-side { flex: 1; }
.cta-text-side h2 { font-size: 4.5rem; color: var(--white); line-height: 1; margin-bottom: 2rem; font-weight: 900; text-transform: uppercase; letter-spacing: -2px; }
.cta-text-side p { font-size: 1.4rem; color: #888; max-width: 600px; line-height: 1.6; }
.cta-btn-side { display: flex; flex-direction: column; gap: 1rem; min-width: 300px; }
.cta-btn-side .btn { width: 100%; padding: 1.5rem; justify-content: center; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; }
@media (max-width: 992px) {
    .cta-full-width { flex-direction: column; text-align: center; gap: 2rem; }
    .cta-text-side h2 { font-size: 3rem; }
    .cta-btn-side { width: 100%; }
}

/* --- SIMPLIFIED MOBILE NAV --- */
@media (max-width: 992px) {
    .header { 
        height: 70px; 
        background: rgba(255, 255, 255, 0.95);
    }
    
    .header-inner {
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Hide ALL desktop-only buttons from the top bar on mobile */
    .header-actions {
        display: none !important;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block !important;
        background: none;
        border: none;
        color: var(--dark-color);
        padding: 10px;
    }

    /* Logo is always visible with text */
    .logo {
        display: flex !important;
        align-items: center;
    }
    .logo div {
        display: block !important;
    }
    .logo img {
        height: 38px !important;
    }
}

/* CTA Mobile Fix */
@media (max-width: 768px) {
    .cta-text-side h2 { 
        font-size: 1.8rem !important; 
        line-height: 1.4 !important; 
        margin-bottom: 1.5rem !important;
        text-align: center;
    }
    .cta-full-width { 
        flex-direction: column !important;
        text-align: center;
    }
}

/* --- GLOBAL MOBILE CENTER ALIGNMENT --- */
@media (max-width: 768px) {
    .info-text, .contact-details, .footer-col, .service-card, .section-header {
        text-align: center !important;
    }
    
    .info-list {
        display: inline-block !important;
        text-align: left !important; /* Liste içindeki tikler bozulmasin diye liste blogunu ortalayip içini sola yasliyoruz */
        margin: 0 auto !important;
    }
    
    .info-list li {
        justify-content: flex-start !important;
    }
    
    .contact-info li, .footer-contact li, .working-hours li {
        justify-content: center !important;
        text-align: center !important;
    }
    
    .working-hours li {
        flex-direction: column !important;
        gap: 5px !important;
    }
    
    .info-text h2::after, .section-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .footer-col h4::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .social-links {
        justify-content: center !important;
    }
}

/* --- SERVICE ICON CENTER FIX --- */
@media (max-width: 768px) {
    .service-icon {
        margin: 0 auto 1.5rem auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
}

/* --- SLIDESHOW & HERO BUTTONS MOBILE FIX --- */
@media (max-width: 768px) {
    .hero-text h1, .hero-text p {
        text-shadow: none !important;
        animation: none !important; /* Efektleri mobilde devre disi birakiyoruz */
        transform: none !important;
    }
    
    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
        margin-top: 2rem !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 !important;
    }
}

/* --- COMPACT SERVICE CARDS ON MOBILE --- */
@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .service-icon {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 1rem !important;
    }
    
    .service-icon svg {
        width: 24px !important;
        height: 24px !important;
    }
    
    .service-card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .service-card p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1rem !important;
    }
}

/* --- 3-PART SERVICE CARD DESIGN --- */
.service-card {
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
    height: 100% !important;
    padding: 2rem !important;
}

.service-card-header {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
}

.service-card-header .service-icon {
    margin: 0 !important;
    width: 45px !important;
    height: 45px !important;
    flex-shrink: 0 !important;
}

.service-card-header h3 {
    margin: 0 !important;
    font-size: 1.3rem !important;
    line-height: 1.2 !important;
}

.service-card-body {
    flex-grow: 1 !important;
    margin-bottom: 1.5rem !important;
}

.service-card-body p {
    margin: 0 !important;
    font-size: 1rem !important;
    color: #666 !important;
    line-height: 1.6 !important;
}

.service-card-footer {
    margin-top: auto !important;
}

/* Mobile adjustment for 3-part cards */
@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem !important;
    }
    .service-card-header h3 {
        font-size: 1.2rem !important;
    }
    .service-card-body p {
        font-size: 0.95rem !important;
    }
}

/* --- RESTORING SLIDE HIGHLIGHT EFFECTS --- */
@media (max-width: 768px) {
    .hero-text h1 .highlight {
        text-shadow: 0 0 20px rgba(227,6,19,0.4) !important;
        color: var(--primary-color) !important;
        font-weight: 800 !important;
    }
}

/* --- EXACT SYNC OF HIGHLIGHT FOR MOBILE --- */
@media (max-width: 768px) {
    .highlight {
        color: var(--primary-color) !important;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3), 0 0 20px rgba(227,6,19,0.5) !important;
        font-weight: 800 !important;
        display: inline !important;
    }
}

/* --- SLIDESHOW HIGHLIGHT PC-MOBILE SYNC --- */
.highlight {
    color: var(--primary-color) !important;
    font-weight: 800 !important;
    text-shadow: 0 0 15px rgba(227,6,19,0.3) !important;
    position: relative;
    display: inline-block;
}

@media (max-width: 768px) {
    .highlight {
        font-size: 1.1em !important; /* PC-like presence */
        text-shadow: 0 0 15px rgba(227,6,19,0.5) !important;
    }
}

/* --- PREMIUM CONTACT SECTION REDESIGN --- */
.contact-info-premium {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 24px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item-new {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(227,6,19,0.1);
    border: 1px solid rgba(227,6,19,0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.item-content h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 0.25rem;
}

.item-content p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #eee;
}

.hours-box {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.hours-box h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #aaa;
}

.hour-val {
    color: #eee;
    font-weight: 600;
}

.closed {
    color: var(--primary-color);
}

.map-container-premium {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    min-height: 450px;
}

/* --- MODERN CONTACT CARD REDESIGN --- */
.contact-info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    height: 100%;
}

.contact-method-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f5f5f5;
}

.contact-method-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: rgba(227,6,19,0.05);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-text h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

.method-text p, .method-text a {
    font-size: 1.15rem;
    color: var(--dark-color);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.method-text a:hover {
    color: var(--primary-color);
}

/* Sync Slideshow Highlights */
@media (max-width: 768px) {
    .hero-text h1 .highlight {
        font-size: inherit !important;
        color: var(--primary-color) !important;
        text-shadow: 0 10px 20px rgba(227,6,19,0.2) !important;
        display: inline-block !important;
        font-weight: 800 !important;
    }
    .contact-info-card { padding: 2rem; }
}
