@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;500;600&display=swap');

:root {
    --brand-red: #8B0000;
    --brand-red-dark: #6B0000;
    --white: #FFFFFF;
    --dark-grey: #333333;
    --light-grey: #F5F5F5;
    --muted-grey: #A9A9A9;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    --transition-fast: 0.15s ease;
    --transition-normal: 0.2s ease;
    --transition-slow: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    transition: all var(--transition-normal);
    box-shadow: none;
}

.header.sticky {
    box-shadow: var(--shadow-sm);
    transform: translateY(0);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    transition: padding var(--transition-normal);
}

.header.sticky .header-inner {
    padding: 10px 0;
}

.logo {
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-grey);
    letter-spacing: -0.5px;
}

.logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: var(--muted-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-grey);
    position: relative;
    padding: 5px 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand-red);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.header-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-grey);
    transition: color var(--transition-fast);
}

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

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--brand-red);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background-color: var(--brand-red-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-block;
    padding: 10px 22px;
    background-color: transparent;
    color: var(--brand-red);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--brand-red);
    border-radius: 4px;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--brand-red);
    color: var(--white);
}

/* Mobile Header */
.mobile-header {
    display: none;
    padding: 10px 0;
}

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

.mobile-nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--light-grey);
    color: var(--dark-grey);
    transition: all var(--transition-fast);
}

.phone-icon:hover {
    background-color: var(--brand-red);
    color: var(--white);
}

.hamburger {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark-grey);
    transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 999;
    transition: right var(--transition-slow);
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
}

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

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark-grey);
}

.mobile-nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-grey);
    padding: 15px 0;
    border-bottom: 1px solid var(--light-grey);
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--brand-red);
}

.mobile-menu-cta {
    margin-top: 30px;
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 40px 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 400;
}

.hero .btn-primary {
    padding: 15px 35px;
    font-size: 1rem;
}

@keyframes pulse-cta {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.hero .btn-primary {
    animation: pulse-cta 3s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .hero .btn-primary {
        animation: none;
    }
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-dark {
    background-color: var(--dark-grey);
    color: var(--white);
}

.section-light {
    background-color: var(--light-grey);
}

.section-title {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-grey);
}

.section-title-white {
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--muted-grey);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--dark-grey);
}

.about-content .btn-secondary {
    margin-top: 10px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    display: block;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    text-align: center;
}

.service-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
    background: linear-gradient(to top, rgba(139,0,0,0.03) 0%, transparent 100%);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card:hover .service-icon {
    transform: translateY(-2px) scale(1.05);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark-grey);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--muted-grey);
}

/* Testimonials Carousel */
.testimonials-section {
    background-color: var(--light-grey);
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 40px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark-grey);
}

.testimonial-author {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--brand-red);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-grey);
    transition: all var(--transition-fast);
}

.carousel-nav:hover {
    background-color: var(--brand-red);
    color: var(--white);
}

.carousel-nav.prev {
    left: -60px;
}

.carousel-nav.next {
    right: -60px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--muted-grey);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-dot.active,
.carousel-dot:hover {
    background-color: var(--brand-red);
}

/* CTA Section */
.cta-section {
    background-color: var(--brand-red);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--brand-red);
}

.cta-section .btn-primary:hover {
    background-color: var(--light-grey);
    box-shadow: var(--shadow-md);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--light-grey);
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.contact-form-container h2 {
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-grey);
}

.form-group label .required {
    color: var(--brand-red);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--muted-grey);
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 2px rgba(139,0,0,0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.recaptcha-notice {
    font-size: 0.8rem;
    color: var(--muted-grey);
    margin-top: 10px;
}

.recaptcha-notice a {
    color: var(--brand-red);
    text-decoration: underline;
}

.contact-form-container .btn-primary {
    width: 100%;
    margin-top: 10px;
}

/* Footer Styles */
.footer {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-main {
    color: var(--white);
}

.footer-logo .logo-sub {
    color: var(--muted-grey);
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.footer-info a {
    color: rgba(255,255,255,0.8);
    transition: color var(--transition-fast);
}

.footer-info a:hover {
    color: var(--brand-red);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    transition: color var(--transition-fast);
}

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

.footer-newsletter p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: var(--brand-red);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: background-color var(--transition-fast);
}

.newsletter-form button:hover {
    background-color: var(--brand-red-dark);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--brand-red);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--brand-red);
}

/* Mobile Footer Accordion */
.footer-mobile-accordion {
    display: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--brand-red);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: scale(1.1);
    background-color: var(--brand-red-dark);
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

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

@media (prefers-reduced-motion: reduce) {
    .fade-in-up {
        opacity: 1;
        transform: none;
        transition: opacity 0.5s ease;
    }
}

/* About Page Styles */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding-top: 80px;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
}

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

.philosophy-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
}

.philosophy-content > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--dark-grey);
}

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

.values-list li {
    padding: 20px;
    margin-bottom: 15px;
    background-color: var(--light-grey);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.values-list li strong {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-red);
    min-width: 120px;
}

/* Why Choose Us */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-choose-card {
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-choose-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-grey);
}

.why-choose-card p {
    font-size: 0.9rem;
    color: var(--muted-grey);
}

/* Services Page */
.service-detail-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--light-grey);
}

.service-detail-section:last-of-type {
    border-bottom: none;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    align-items: flex-start;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-grey);
}

.service-detail-content > p {
    margin-bottom: 20px;
    color: var(--dark-grey);
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 15px;
}

.service-detail-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--dark-grey);
}

.service-detail-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--brand-red);
    border-radius: 50%;
}

/* Process Steps */
.process-section {
    padding: 80px 0;
    background-color: var(--light-grey);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -20px;
    width: 40px;
    height: 2px;
    background-color: var(--brand-red);
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--brand-red);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.process-step h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--dark-grey);
}

.process-step p {
    font-size: 0.85rem;
    color: var(--muted-grey);
}

/* Contact Page */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    background-color: var(--light-grey);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark-grey);
}

.contact-info-card p {
    color: var(--muted-grey);
    font-size: 0.9rem;
}

.contact-info-card a {
    color: var(--brand-red);
    font-weight: 500;
}

.map-section {
    padding: 80px 0;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.get-directions-btn {
    display: inline-block;
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 1023px) {
    .nav-desktop,
    .header-cta-group {
        display: none;
    }

    .mobile-header {
        display: block;
    }

    .header {
        position: fixed;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-col:first-child {
        grid-column: span 2;
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-step:nth-child(4)::after,
    .process-step:nth-child(5)::after {
        display: none;
    }

    .carousel-nav.prev {
        left: 10px;
    }

    .carousel-nav.next {
        right: 10px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-col:first-child {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-slide {
        padding: 30px 20px;
    }

    .about-grid,
    .services-grid,
    .footer-grid {
        gap: 30px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }
}

/* Custom Scrollbar (Desktop Only) */
@media (min-width: 1024px) {
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: var(--light-grey);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--muted-grey);
        border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--dark-grey);
    }
}
