:root {
    --primary: #2c6fbb;
    --primary-dark: #1a5aa2;
    --secondary: #e74c3c;
    --accent: #f39c12;
    --text: #333;
    --text-light: #666;
    --text-dark: #111;
    --bg: #f8f9fa;
    --bg-card: #fff;
    --bg-header: #fff;
    --bg-footer: #1e2833;
    --border: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --bg-stripe: #f8fafd;
    --table-header-bg: linear-gradient(65deg, #3498db 0%, #2c3e50 100%);
    --note-bg: #f0f8ff;
    --note-border: #3498db;
    --tr-hover: #e6f2ff;
}

.dark-mode {
    --primary: #4a90e2;
    --primary-dark: #3a7bc8;
    --secondary: #e74c3c;
    --text: #e0e0e0;
    --text-light: #aaa;
    --text-dark: #f5f5f5;
    --bg: #121212;
    --bg-card: #1e1e1e;
    --bg-header: #1a1a1a;
    --bg-footer: #0d0d0d;
    --border: #333;
    --shadow: rgba(0, 0, 0, 0.3);
    --bg-stripe: #1a1a1a;
    --table-header-bg: linear-gradient(65deg, #4a90e2 0%, #1a1a1a 100%);
    --note-bg: #1a1a1a;
    --note-border: #4a90e2;
    --tr-hover: rgba(74, 144, 226, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    transition: var(--transition);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    font-weight: 600;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: var(--bg-header);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    height: 80px;
}

.logo {
    display: flex;
    align-items: left;
    gap: 10px;
    z-index: 1001;
    position: absolute;
    
    transform: translateX(-50%);
}

.logo i {
    color: var(--primary);
    font-size: 28px;
}

.logo h1 {
    font-size: 22px;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}
/* Main Navigation Styles */
.mainNav {
    display: flex;
    justify-content: center; /* Center horizontally */
    width: 100%;
}

.mainNav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
    justify-content: center; /* Center the list items */
}

.mainNav li {
    display: flex;
    align-items: center;
}

.mainNav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mainNav a i {
    font-size: 18px;
}

.mainNav a:hover {
    color: var(--primary);
}

.mainNav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.mainNav a:hover::after {
    width: 100%;
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .mainNav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(50vh - 80px);
        background: var(--bg-header);
        box-shadow: -5px 0 15px var(--shadow);
        transition: var(--transition);
        z-index: 1000;
        padding-top: 30px;
        justify-content: flex-start;
    }

    .mainNav.active {
        right: 0;
    }

    .mainNav ul {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
        gap: 0;
    }

    .mainNav li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .mainNav li:last-child {
        border-bottom: none;
    }

    .mainNav a {
        padding: 15px 0;
        width: 100%;
    }
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    margin-left: auto;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a i {
    font-size: 18px;
}

nav a:hover {
    color: var(--primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.theme-toggle-container {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.theme-toggle {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    width: 60px;
    height: 30px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-circle {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: black;
    border-radius: 50%;
    transition: var(--transition);
}

.dark-mode .toggle-circle {
    left: 33px;
    background: #ffffff;
}

.emergency-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    animation: pulse 1.5s infinite;
}

.emergency-btn:hover {
    background: #c0392b;
    transform: scale(1.05);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(231, 76, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

/* Hero Section */
.hero {
   background: linear-gradient(135deg, rgba(106, 110, 116, 0.85) 0%, rgba(88, 90, 92, 0.85) 10%),  url('../images/slide01.jpg') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    height: 25vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
}

.btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Services Section */
.services {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}


.section-title p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
    text-align: center;
    padding: 35px 20px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px var(--shadow);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(44, 111, 187, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary);
    font-size: 36px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    min-height: 80px;
}

/* How It Works */
.process {
    padding: 60px 0;
    background: var(--bg);
}

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.step {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 0 15px;
    position: relative;
    margin-bottom: 40px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    margin: 0 auto 25px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.step p {
    color: var(--text-light);
}

/* Coverage Area */
.coverage {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(44, 111, 187, 0.1) 0%, rgba(25, 65, 112, 0.1) 100%);
}

.map-container {
    height: 400px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    
}

.map-overlay h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.city-list {
    columns: 2;
    column-gap: 20px;
}

.city-list li {
    margin-bottom: 8px;
    list-style-type: none;
    font-size: 15px;
}

.city-list li::before {
    content: '✓';
    color: var(--primary);
    margin-right: 8px;
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 70px;
    color: var(--primary);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.rating {
    color: #f1c40f;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
}

.client {
    display: flex;
    align-items: center;
}

.client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: bold;
}

.client-info h4 {
    margin-bottom: 5px;
}

.client-info p {
    color: var(--text-light);
    font-size: 14px;
}

/* Call to Action */
.cta {
    padding: 80px 0;
   background: linear-gradient(135deg, rgba(106, 110, 116, 0.85) 0%, rgba(88, 90, 92, 0.85) 10%),  url('../images/slide03.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.cta p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.phone-number {
    font-size: 32px;
    font-weight: 700;
    margin: 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Footer */
footer {
    background: var(--bg-footer);
    color: #aaa;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.contact-info i {
    color: var(--primary);
    font-size: 18px;
    min-width: 20px;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #2c3e50;
    color: white;
    transition: var(--transition);
    text-decoration: none;
    font-size: 18px;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #2c3e50;
    font-size: 14px;
}

/* Gallery Section */
.section {
    padding: 80px 0;
    background-color: var(--bg);
}

.gallery {
    background-color: var(--bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    height: 250px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 152, 219, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.gallery-overlay:hover i {
    transform: scale(1.2);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    text-align: center;
    font-size: 1.2rem;
    margin-top: 15px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0 20px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Price Section */
.price {
    padding: 60px 40px 50px;
    position: relative;
    background-color: var(--bg);
}

.price h1 {
    text-align: center;
    color: var(--text-dark);
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-shadow: 0 2px 10px var(--shadow);
    position: relative;
}

.price h1::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.price p.lead {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 30px 0 50px;
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.price thead {
    background: var(--table-header-bg);
    color: white;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price th {
    padding: 22px 20px;
    text-align: left;
    font-weight: 600;
}

.price th:first-child {
    border-top-left-radius: 15px;
}

.price th:last-child {
    border-top-right-radius: 15px;
}

.price tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border);
}

.price tbody tr:nth-child(even) {
    background-color: var(--bg-stripe);
}

.price tbody tr:hover {
    background-color: var(--tr-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.15);
}

.price td {
    padding: 20px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.price td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.price td:nth-child(2) {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.2rem;
}

.price .note {
    background: var(--note-bg);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--note-border);
    margin-top: 30px;
    box-shadow: 0 5px 15px var(--shadow);
    position: relative;
    overflow: hidden;
    color: var(--text);
}

.price .note::before {
    content: "!";
    position: absolute;
    top: -30px;
    left: -30px;
    font-size: 12rem;
    font-weight: 800;
    color: rgba(52, 152, 219, 0.05);
    z-index: 0;
}

.price .note strong {
    color: var(--text-dark);
    font-weight: 600;
}

.price .price-tag {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-left: 8px;
    vertical-align: middle;
}

/* Mobile Menu Styling */
@media (max-width: 992px) {
     .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0 15px;
    }
    
    .theme-toggle-container {
        order: 1;
        margin-right: 0;
    }
    
    .logo {
        position: static;
        order: 2;
        transform: none;
        margin: 0 auto;
    }
    
  
    
    .menu-toggle {
        display: flex;
        order: 4;
        margin-left: 15px;
        transform: none;
    }
    
    nav {
        position: fixed;
        top: 80px;
        right: -300px;
        width: 280px;
        height: calc(100vh - 80px);
        background: var(--bg-header);
        box-shadow: -5px 0 15px var(--shadow);
        transition: var(--transition);
        z-index: 1000;
        padding-top: 30px;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 10px;
        gap: 0;
    }
    
    nav ul li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav a {
        padding: 15px 0;
        width: 100%;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
     .header-container {
        padding: 0 10px;
        height: 70px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .emergency-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .theme-toggle {
        margin-bottom: 0;
    }
    
    .hero {
        height: 30vh;
        min-height: 350px;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 17px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .phone-number {
        font-size: 26px;
        flex-direction: column;
        gap: 10px;
    }
    
    .map-overlay {
        max-width: 250px;
        padding: 15px;
    }
    
    .city-list {
        columns: 1;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .price {
        padding: 40px 20px;
    }
    
    .price h1 {
        font-size: 2.2rem;
    }
    
    .price table {
        display: block;
        overflow-x: auto;
    }
    
    .price th, .price td {
        padding: 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 18px;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .cta h2 {
        font-size: 30px;
    }
    
    .phone-number {
        font-size: 22px;
    }
    
    .footer-column h3 {
        font-size: 18px;
    }
    
    .price h1 {
        font-size: 1.8rem;
    }
    
    .price p.lead {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-nav {
        font-size: 2rem;
    }
}

/* Tablet Optimization */
@media (min-width: 577px) and (max-width: 992px) {
    .header-container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 22px;
    }
    
    .hero h2 {
        font-size: 38px;
    }
    
    .hero p {
        font-size: 19px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps {
        gap: 20px;
    }
    
    .step {
        min-width: calc(50% - 20px);
    }
}

.brandtitle h1 {
   font-size: 2.2rem;
   font-weight: bold;
   color: white;
   margin: 0;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
   .brandtitle h1 {
      font-size: 1.6rem;
   }
}

.sticky-button {
  position: fixed;
  bottom: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: white;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.call-btn {
  left: 20px;
  background-color: var(--secondary);
}

.whatsapp-btn {
  right: 20px;
  background-color: #25D366;
}

.sticky-button:hover {
  opacity: 0.9;
}
