/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-red: #dc2626;
    --brand-black: #111827;
    --brand-grey: #6b7280;
    --brand-bg: #f9fafb;
    --brand-white: #ffffff;
    --brand-light-red: #fef2f2;
    --brand-dark-red: #b91c1c;
    --brand-light-grey: #f3f4f6;
    --brand-border: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 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);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--brand-black);
    background-color: var(--brand-white);
    overflow-x: hidden;
}

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

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--brand-grey);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--brand-white) 0%, var(--brand-light-grey) 100%);
    border-bottom: 1px solid var(--brand-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    padding: 0.1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.1rem 0;
    gap: 1.5rem;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

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

.nav-link {
    font-weight: 500;
    color: var(--brand-black);
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-red);
    background-color: var(--brand-light-red);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    gap: 6px;
    z-index: 10000;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--brand-black);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--brand-black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Logo Responsive */
@media (max-width: 768px) {
    .logo-image {
        height: 45px;
        max-width: 160px;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 100%);
    backdrop-filter: blur(20px);
    z-index: 9999;
    padding: 0;
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.mobile-menu.active {
    transform: translateY(0);
    display: block;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.mobile-menu-logo {
    height: 40px;
    width: auto;
}

.mobile-nav {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.5s ease forwards;
}

.mobile-nav-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-link:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-link:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-link:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--brand-red), transparent);
    transition: width 0.3s ease;
    z-index: -1;
}

.mobile-nav-link:hover::before {
    width: 100%;
}

.mobile-nav-link:hover {
    color: white;
    padding-left: 1rem;
    transform: translateX(5px);
}

.mobile-nav-link::after {
    content: '→';
    font-size: 1.2rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.mobile-nav-link:hover::after {
    opacity: 1;
    transform: translateX(8px);
}

.mobile-menu-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    text-align: center;
}

.mobile-contact-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.mobile-social-link {
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-social-link:hover {
    background: var(--brand-red);
    transform: translateY(-2px);
}

.mobile-nav-list {
    list-style: none;
    margin-top: 4rem;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.25rem;
    font-weight: 500;
    border-bottom: 1px solid var(--brand-border);
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    min-width: 110px;
    font-size: 0.9rem;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-dark-red) 100%);
    color: var(--brand-white);
    box-shadow: var(--shadow-md);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background: var(--brand-black);
    color: var(--brand-white);
}

.cta-button.secondary:hover {
    background: var(--brand-grey);
    transform: translateY(-2px);
}

.cta-button.outline {
    background: transparent;
    color: var(--brand-red);
    border-color: var(--brand-red);
}

.cta-button.outline:hover {
    background: var(--brand-red);
    color: var(--brand-white);
}

.cta-button.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 160px;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

/* Services Page Hero */
.services .hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('images/9.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gallery Page Hero */
.gallery .hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('images/4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Contact Page Hero */
.contact .hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('images/7.jpg');
    background-size: cover;
    background-position: 30% 40%;
    background-attachment: fixed;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.services .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 3;
}

.gallery .hero-content,
.contact .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 3;
}

.services .hero-title {
    color: var(--brand-white) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services .hero-subtitle {
    color: var(--brand-white) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery .hero-title,
.gallery .hero-subtitle,
.contact .hero-title,
.contact .hero-subtitle {
    color: var(--brand-white) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.hero .container {
    max-width: 100%;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}



.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--brand-white);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--brand-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    color: var(--brand-red);
    font-weight: bold;
    font-size: 1.2rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2rem;
    box-shadow: var(--shadow-sm);
    font-weight: 500;
    color: var(--brand-black);
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.25rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-black);
    margin-bottom: 3rem;
}

.services-preview,
.why-choose-us,
.faq-section {
    padding: 4rem 0;
}

.services-preview {
    padding: 6rem 0 4rem 0;
}

.services-preview {
    background: var(--brand-white);
}

.why-choose-us {
    background: var(--brand-bg);
}

.faq-section {
    background: var(--brand-white);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    background: var(--brand-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--brand-border);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-card.compact {
    padding: 1.5rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    color: var(--brand-black);
    margin-bottom: 1rem;
}

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

.service-link {
    color: var(--brand-red);
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--brand-dark-red);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--brand-white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: var(--brand-black);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--brand-white);
    border: 1px solid var(--brand-border);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--brand-light-grey);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--brand-red);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--brand-light-grey);
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: var(--brand-grey);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-dark-red) 100%);
    color: var(--brand-white);
    text-align: center;
    padding: 4rem 0;
}

.final-cta h2 {
    color: var(--brand-white);
    margin-bottom: 1rem;
}

.final-cta p {
    color: var(--brand-light-red);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.final-cta .cta-button.outline {
    color: var(--brand-white);
    border-color: var(--brand-white);
}

.final-cta .cta-button.outline:hover {
    background: var(--brand-white);
    color: var(--brand-red);
}

/* Footer */
.footer {
    background: var(--brand-black);
    color: var(--brand-white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--brand-white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--brand-grey);
    margin-bottom: 0.5rem;
}

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

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

.footer-links a {
    color: var(--brand-grey);
    transition: color 0.3s ease;
}

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

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--brand-grey);
    transition: color 0.3s ease;
}

.contact-method:hover {
    color: var(--brand-white);
}

.contact-icon {
    font-size: 1.25rem;
}

.footer-bottom {
    border-top: 1px solid var(--brand-grey);
    padding-top: 1rem;
    text-align: center;
    color: var(--brand-grey);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: none;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.whatsapp-icon {
    font-size: 1.5rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 10000;
    }
    
    .mobile-menu {
        z-index: 9999;
    }
    
    .mobile-menu-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .mobile-nav {
        padding: 1.5rem;
    }
    
    .mobile-nav-link {
        font-size: 1.3rem;
        padding: 1.25rem 0;
    }
    
    .mobile-menu-footer {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-whatsapp {
        display: block;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        background-attachment: scroll;
        min-height: 60vh;
        padding: 3rem 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .hero .container {
        padding: 0 1rem;
    }
    
    .services .hero {
        background-attachment: scroll;
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .services .hero-content {
        padding: 0 1rem;
    }
    
    .gallery .hero,
    .contact .hero {
        background-attachment: scroll;
        min-height: 60vh;
        padding: 2rem 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .contact .hero {
        background-position: 30% 40%;
    }
    
    .gallery .hero-content,
    .contact .hero-content {
        padding: 0 1rem;
    }
    

    
    .services .hero .container {
        padding: 0 1rem;
    }
    
    .services-preview,
    .why-choose-us,
    .faq-section,
    .final-cta {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-button.large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-width: 140px;
    }
    
    .service-card,
    .feature-card {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-content,
.service-card,
.feature-card {
    animation: fadeIn 0.8s ease-out;
}

.services-grid,
.features-grid {
    animation: slideUp 1s ease-out;
}

/* Focus styles for accessibility */
button:focus,
a:focus {
    outline: 2px solid var(--brand-red);
    outline-offset: 2px;
}

/* Additional Styles for Services Page */
.service-card.detailed {
    text-align: left;
    padding: 2.5rem;
}

.service-features {
    margin: 2rem 0;
}

.service-features h4 {
    color: var(--brand-black);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--brand-grey);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    color: var(--brand-red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-cta {
    margin-top: 2rem;
    text-align: center;
}

/* Service Process */
.service-process {
    background: var(--brand-bg);
    padding: 4rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--brand-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: var(--brand-black);
    margin-bottom: 1rem;
}

/* Service Areas */
.service-areas {
    background: var(--brand-white);
    padding: 4rem 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.area-card {
    background: var(--brand-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--brand-border);
}

.area-card h3 {
    color: var(--brand-red);
    margin-bottom: 1rem;
    text-align: center;
}

.area-card ul {
    list-style: none;
    padding: 0;
}

.area-card li {
    padding: 0.5rem 0;
    color: var(--brand-grey);
    border-bottom: 1px solid var(--brand-light-grey);
}

.area-card li:last-child {
    border-bottom: none;
}

/* Gallery Page Styles */
.coming-soon {
    background: var(--brand-light-grey);
    padding: 4rem 0;
    text-align: center;
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.coming-soon h2 {
    color: var(--brand-black);
    margin-bottom: 1rem;
}

.coming-soon p {
    color: var(--brand-grey);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

.gallery-grid {
    background: var(--brand-white);
    padding: 4rem 0;
}

.section-subtitle {
    text-align: center;
    color: var(--brand-grey);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.gallery-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-filter {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--brand-border);
    background: var(--brand-white);
    color: var(--brand-grey);
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-filter:hover,
.category-filter.active {
    border-color: var(--brand-red);
    color: var(--brand-red);
    background: var(--brand-light-red);
}

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

.gallery-item {
    background: var(--brand-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--brand-border);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.gallery-cta {
    background: var(--brand-light-grey);
    padding: 4rem 0;
    text-align: center;
}

/* Contact Page Styles */
.contact-methods-section {
    background: var(--brand-white);
    padding: 4rem 0;
}

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

.contact-method-card {
    background: var(--brand-white);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--brand-border);
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-method-card h3 {
    color: var(--brand-black);
    margin-bottom: 1rem;
}

.contact-method-card p {
    color: var(--brand-grey);
    margin-bottom: 2rem;
}

.contact-form-section {
    background: var(--brand-bg);
    padding: 4rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    background: var(--brand-white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--brand-black);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--brand-border);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-red);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.form-note {
    margin-top: 1rem;
    color: var(--brand-grey);
    font-size: 0.9rem;
}

.form-info {
    background: var(--brand-white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.form-info h3 {
    color: var(--brand-black);
    margin-bottom: 2rem;
}

.info-steps {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-step .step-number {
    width: 40px;
    height: 40px;
    background: var(--brand-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.info-step h4 {
    color: var(--brand-black);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    margin-top: 0;
    line-height: 1.2;
}

.info-step p {
    color: var(--brand-grey);
    margin-bottom: 0;
    font-size: 0.9rem;
    margin-top: 0;
    line-height: 1.4;
}

.contact-details h4 {
    color: var(--brand-black);
    margin: 1.5rem 0 0.5rem;
    font-size: 1rem;
}

.contact-details p {
    color: var(--brand-grey);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.emergency-contact {
    color: var(--brand-red);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.emergency-contact:hover {
    color: var(--brand-dark-red);
}

/* About Us Section */
.about-us-section {
    background: var(--brand-white);
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.about-text h3 {
    color: var(--brand-black);
    margin-bottom: 1rem;
}

.about-text h4 {
    color: var(--brand-black);
    margin: 1.5rem 0 0.5rem;
    font-size: 1.1rem;
}

.about-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.about-text li {
    margin-bottom: 0.5rem;
    color: var(--brand-grey);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--brand-light-grey);
    border-radius: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--brand-black);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-categories {
        justify-content: center;
    }
    
    .category-filter {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* Smooth transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
