/*
Theme Name: YLS-Security & Service
Description: Professional security services theme - DARK MODE
Version: 1.0
Author: YLS-Security
Text Domain: yls-security
*/

/* Reset & Base Styles - DARK MODE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0; /* Light text on dark background */
    background-color: #1a1a1a; /* Dark background */
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #c39b4d;
    transition: color 0.3s ease;
}

a:hover {
    color: #d4af37;
}

/* Form Messages - Dark Mode */
.form-message {
    position: fixed;
    top: 100px;
    right: 20px;
    max-width: 400px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    z-index: 10001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideInRight 0.5s ease-out;
}

.form-message.success {
    background: #2d5a2d;
    color: #90ee90;
    border: 1px solid #4caf50;
}

.form-message.error {
    background: #5a2d2d;
    color: #ff9999;
    border: 1px solid #f44336;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Auto-hide messages after 5 seconds */
.form-message {
    animation: slideInRight 0.5s ease-out, fadeOut 0.5s ease-out 4.5s forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

@media (max-width: 768px) {
    .form-message {
        right: 10px;
        left: 10px;
        max-width: none;
        top: 90px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Domine', serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff; /* White headings */
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #e0e0e0;
}

/* Container & Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6 {
    flex: 0 0 50%;
    padding: 0 15px;
}

.col-md-12 {
    flex: 0 0 100%;
    padding: 0 15px;
}

/* Header - DARK */
.site-header {
    background: #1a1a1a; /* Dark background */
    border-bottom: 1px solid #333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.2rem 0;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    max-height: 80px;
    width: auto;
    filter: brightness(1.2); /* Make logo brighter on dark background */
}

/* Navigation - DARK */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 0.5rem;
    position: relative;
}

.nav-menu a {
    color: #e0e0e0; /* Light text */
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: block;
}

.nav-menu a:hover {
    background: #c39b4d;
    color: #fff;
}

/* Dropdown Menu - DARK */
.nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #2c2c2c; /* Dark dropdown background */
    min-width: 220px;
    padding: 0.5rem 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    border: 1px solid #444;
    border-radius: 4px;
    z-index: 1001;
}

.nav-menu .sub-menu li {
    margin: 0;
}

.nav-menu .sub-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #e0e0e0;
    white-space: nowrap;
    border-radius: 0;
}

.nav-menu .sub-menu a:hover {
    background: #3a3a3a;
    color: #c39b4d;
}

.menu-item-has-children > a {
    position: relative;
    padding-right: 1.5rem;
}

.dropdown-icon {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.menu-item-has-children:hover .dropdown-icon {
    transform: translateY(-50%) rotate(180deg);
}

/* Show dropdown on hover (desktop) */
@media (min-width: 769px) {
    .menu-item-has-children:hover > .sub-menu {
        display: block;
    }
}

/* Mobile Menu - DARK */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #e0e0e0;
    padding: 0.5rem;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    margin-left: 2rem;
}

/* Mobile Menu Styles - DARK */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a; /* Dark mobile menu */
        border-top: 1px solid #333;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .main-navigation.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .nav-menu a {
        padding: 1rem;
        border-bottom: 1px solid #333;
        color: #e0e0e0;
    }
    
    .nav-menu .sub-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: #2c2c2c;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
    }
    
    .menu-item-has-children.active > .sub-menu {
        display: block;
    }
    
    .nav-menu .sub-menu a {
        padding: 0.75rem 1.5rem;
        background: #2c2c2c;
        border-bottom: 1px solid #444;
        color: #ccc;
    }
    
    .header-buttons {
        flex-direction: column;
        gap: 0.5rem;
        margin: 1rem 0;
        width: 100%;
    }
    
    .header-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* Buttons - DARK */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #c39b4d;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background: #d4af37;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #c39b4d;
    border: 2px solid #c39b4d;
}

.btn-outline:hover {
    background: #c39b4d;
    color: #fff;
}

/* Hero Section - ECHTE DARK MODE MIT BILD */
.hero-section {
    background: linear-gradient(
                  rgba(0, 0, 0, 0.75), /* Stärkeres dunkles Overlay */
                  rgba(0, 0, 0, 0.65)
                ),
                url('<?php echo get_template_directory_uri(); ?>/assets/images/hero-bg.png') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    margin-top: 80px;
}

.hero-content h1 {
    font-size: 6rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 4px 8px rgba(0,0,0,0.8);
    font-weight: 700;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.hero-contact {
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-info svg {
    width: 24px;
    height: 24px;
    fill: #c39b4d;
}

.contact-info a {
    color: #f0f0f0;
    font-weight: 500;
    font-size: 1.2rem;
}

/* Sections - DARK */
.section {
    padding: 4rem 0;
    background: #1a1a1a;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #fff;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #c39b4d, transparent);
    margin: 2rem 0;
}

/* About Section - DARK */
.about-section {
    background: #2c2c2c;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-box {
    text-align: center;
    padding: 2rem;
    background: #3a3a3a;
    border: 1px solid #444;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    background: #444;
    border-color: #c39b4d;
}

.feature-box h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.feature-box p {
    color: #ccc;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: #c39b4d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

/* Services Section - DARK */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #2c2c2c;
    border: 1px solid #444;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #c39b4d;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8); /* Slightly darken images for consistency */
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    color: #c39b4d;
    margin-bottom: 1rem;
}

.service-content p {
    color: #ccc;
}

.service-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #c39b4d;
    color: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-button:hover {
    background: #d4af37;
    color: #fff;
}

/* Contact Section - DARK */
.contact-section {
    background: #0f0f0f; /* Even darker for contrast */
    color: #fff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid #333;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: #c39b4d;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #c39b4d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.contact-details h4 {
    color: #c39b4d;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #fff;
}

/* Service Pages - DARK */
.service-page {
    margin-top: 60px;
    background: #1a1a1a;
    min-height: 100vh;
}

.hero-logo {
    margin-bottom: 5px; /* Abstand zwischen Logo und "Sicherheit..." */
    text-align: center;  /* falls du es mittig haben willst */
}
.hero-logo img {
    max-width: 500px; /* Logo kleiner machen */
    height: auto;
    display: block;
    margin: 0 auto; /* zentrieren */
}

.custom-logo-link {
    margin: 0; /* überschreibt WP-Standard-Abstand */
    display: inline-block;
}

.service-hero {
    height: 400px;
    background: linear-gradient(
                  rgba(0, 0, 0, 0.75),
                  rgba(0, 0, 0, 0.65)
                ),
                url('<?php echo get_template_directory_uri(); ?>/assets/images/hero-bg.png') center/cover no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.service-hero-content h1 {
    font-size: 6rem;
    margin-bottom: 1rem;
    color: #d4af37;
    text-shadow: 
        0 0 10px rgba(255,255,255,0.5),
        0 4px 8px rgba(0,0,0,0.8);
    font-weight: 700;
}

.service-hero-content p {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.service-details-section {
    padding: 2rem 0;  /* 2rem oben und unten */
    background: #1a1a1a;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.service-main-content {
    padding-right: 2rem;
}
/* Mobile Optimization Updates for index.php */

/* Hero Section Mobile Improvements */
@media (max-width: 768px) {
    .hero-section {
        min-height: 90vh; /* Reduce height on mobile */
        padding: 2rem 0;
    }
    
    .hero-content h2 {
        font-size: 1.8rem; /* Reduce from 2.5rem */
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1.1rem; /* Reduce from 1.3rem */
        margin-bottom: 1.5rem;
    }
    
    /* Hero Logo Mobile */
    .hero-logo img {
        max-width: 280px; /* Much smaller on mobile */
        height: auto;
    }
    
    /* Hero Services Overview Mobile */
    .hero-services-overview {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .service-highlight {
        padding: 1.5rem;
    }
    
    .service-highlight h3 {
        font-size: 1.1rem;
    }
    
    .service-highlight p {
        font-size: 0.9rem;
    }
    
    /* Hero Contact Mobile */
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-info a {
        font-size: 1rem; /* Smaller on mobile */
    }
}

/* About Section Mobile */
@media (max-width: 768px) {
    .about-intro {
        padding: 0 1rem;
    }
    
    .about-intro p {
        font-size: 1rem; /* Reduce from 1.2rem and 1.1rem */
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-box {
        padding: 1.5rem;
    }
}

/* Services Section Mobile */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
    
    .service-image {
        height: 180px; /* Slightly smaller on mobile */
    }
    
    .service-content {
        padding: 1rem;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Cleaning Services Mobile */
@media (max-width: 768px) {
    .cleaning-overview-card {
        margin: 0 1rem;
    }
    
    .cleaning-hero {
        padding: 2rem 1rem;
    }
    
    .cleaning-hero-content h3 {
        font-size: 1.6rem; /* Reduce from 2.2rem */
    }
    
    .cleaning-hero-content p {
        font-size: 1rem; /* Reduce from 1.2rem */
    }
    
    .service-badge-large {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .cleaning-services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 1rem;
    }
    
    .cleaning-service-item {
        padding: 1rem;
    }
    
    .cleaning-service-item h4 {
        font-size: 1rem;
    }
    
    .cleaning-service-item p {
        font-size: 0.85rem;
    }
    
    .cleaning-cta {
        padding: 1.5rem 1rem;
    }
    
    .cleaning-button {
        padding: 0.8rem 1.5rem !important;
        font-size: 1rem !important;
        width: 100%;
        max-width: 300px;
    }
}

/* CTA Section Mobile */
@media (max-width: 768px) {
    .service-cta-section {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin: 1rem 0 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
    }
}

/* Contact Section Mobile */
@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-section p {
        font-size: 1rem;
        margin: 0 auto 2rem;
        padding: 0 1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .contact-details h4 {
        margin-bottom: 0.3rem;
        margin-top: 0.5rem;
    }
    
    .contact-details a {
        font-size: 1rem;
        word-break: break-all; /* Ensures long email addresses break properly */
    }
}

/* Map Section Mobile */
@media (max-width: 768px) {
    .map-container {
        height: 300px;
        margin: 0 1rem;
        border-radius: 4px;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-logo img {
        max-width: 240px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .service-highlight {
        padding: 1rem;
    }
    
    .service-highlight .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-highlight .service-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .cleaning-hero-content h3 {
        font-size: 1.4rem;
    }
    
    .cleaning-hero-content p {
        font-size: 0.95rem;
    }
    
    .feature-box {
        padding: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Viewport Meta Fix - Add this to your HTML head */
/* <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0"> */

/* Touch Targets - Ensure buttons are large enough on mobile */
@media (max-width: 768px) {
    .btn, .service-button, .cleaning-button {
        min-height: 44px; /* iOS recommended touch target size */
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Text Readability */
@media (max-width: 768px) {
    body {
        font-size: 16px; /* Ensure minimum 16px font to prevent zoom on iOS */
    }
    
    p {
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}

/* Prevent horizontal scroll */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
}
.service-main-content h2,
.service-main-content h3 {
    color: #fff;
}

.service-main-content p {
    color: #ccc;
}

.service-sidebar {
    background: #2c2c2c;
    border: 1px solid #444;
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
}

.service-contact-card {
    background: #3a3a3a;
    border: 1px solid #555;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-contact-card h4 {
    color: #c39b4d;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #2c2c2c;
    border: 1px solid #555;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #444;
    border-color: #c39b4d;
}

.contact-method.whatsapp:hover {
    background: #25d366;
    color: #fff;
}

.service-info-card {
    background: #3a3a3a;
    border: 1px solid #555;
    padding: 1.5rem;
    border-radius: 8px;
}

.service-info-card h4 {
    color: #c39b4d;
    margin-bottom: 1rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #ccc;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c39b4d;
    font-weight: bold;
}

.service-areas ul {
    list-style: none;
    padding: 0;
}

.service-areas li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #333;
    color: #ccc;
}

.service-areas li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #c39b4d;
    font-weight: bold;
}

.service-cta-section {
    background: linear-gradient(135deg, #c39b4d, #d4af37);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

/* Footer - DARK */
.site-footer {
    background: #0f0f0f;
    color: #ccc;
    padding: 2rem 0 1rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 80px;
    width: auto;
    filter: brightness(1.2);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c39b4d;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .service-hero-content h1 {
        font-size: 3rem;
    }
    
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-main-content {
        padding-right: 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .service-hero-content h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f0f0f;
    color: #fff;
    padding: 1rem;
    z-index: 10000;
    border-top: 1px solid #333;
}

.cookie-notice-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-notice-actions {
    display: flex;
    gap: 1rem;
    margin-left: 2rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-accept {
    background: #c39b4d;
    color: #fff;
}

.cookie-decline {
    background: #666;
    color: #fff;
}

/* Map Container */
.map-container {
    height: 400px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(0.9) hue-rotate(180deg); /* Dark mode for Google Maps */
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading States */
.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn.loading:after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

/* Focus Indicators */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #c39b4d;
    outline-offset: 2px;
}