/* ===================================
   MOBILE-FIRST CSS - REAL WOODWORK PTY LTD
   Base styles are for mobile devices
   Progressive enhancement for larger screens
   =================================== */

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

:root {
    --primary-brown: #5D4037;
    --secondary-brown: #795548;
    --dark-brown: #3E2723;
    --light-brown: #A1887F;
    --beige: #D7CCC8;
    --cream: #EFEBE9;
    --black: #1C1C1C;
    --white: #FFFFFF;
    --gold: #C9A961;
    --whatsapp: #25D366;
    --text-dark: #2C2C2C;
    --text-light: #6B6B6B;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 1rem;
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-brown);
}

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

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===================================
   Navigation - Mobile First
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    position: fixed;
    top: 68px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 68px);
    background: var(--white);
    flex-direction: column;
    padding: 2rem 1rem;
    transition: left 0.3s ease;
    box-shadow: 0 4px 10px var(--shadow);
    gap: 0;
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    width: 100%;
    border-bottom: 1px solid var(--cream);
}

.nav-menu a {
    display: block;
    padding: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.nav-menu a:not(.btn-whatsapp):hover,
.nav-menu a.active {
    color: var(--primary-brown);
    background: var(--cream);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

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

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

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

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

/* ===================================
   Hero Section - Mobile First
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('Gallery/wood1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 68px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(93, 64, 55, 0.7), rgba(62, 39, 35, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: var(--beige);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===================================
   Buttons - Mobile First
   =================================== */
.btn {
    display: inline-block;
    width: 100%;
    max-width: 280px;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-dark);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-brown);
}

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

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

.btn-whatsapp-large {
    background: var(--whatsapp);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    max-width: 280px;
}

.btn-whatsapp-large:hover {
    background: #1faa52;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* ===================================
   Sections - Mobile First
   =================================== */
.intro-section,
.services-section,
.gallery-section,
.why-choose-section,
.about-content-section,
.values-section,
.detailed-services-section,
.contact-section,
.faq-section {
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--dark-brown);
}

.section-header p {
    font-size: 1rem;
    color: var(--text-light);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-brown);
}

/* ===================================
   Introduction Section - Mobile First
   =================================== */
.intro-section {
    background: var(--white);
}

.intro-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.intro-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px var(--shadow);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   Services Section - Mobile First
   =================================== */
.services-section {
    background: var(--cream);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
}

.service-card:active {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px var(--shadow-dark);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-brown);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===================================
   Gallery Section - Mobile First
   =================================== */
.gallery-section {
    background: var(--white);
}

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

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem 1rem 1rem;
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.1rem;
}

.gallery-item:active img {
    transform: scale(1.05);
}

/* ===================================
   Why Choose Us Section - Mobile First
   =================================== */
.why-choose-section {
    background: var(--cream);
}

.why-choose-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-choose-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px var(--shadow);
    order: -1;
}

.why-choose-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    background: var(--primary-brown);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.feature-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    color: var(--primary-brown);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===================================
   CTA Section - Mobile First
   =================================== */
.cta-section {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, var(--primary-brown), var(--dark-brown));
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-content p {
    font-size: 1rem;
    color: var(--beige);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* ===================================
   Footer - Mobile First
   =================================== */
.footer {
    background: var(--dark-brown);
    color: var(--beige);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    max-width: 130px;
    margin-bottom: 0.75rem;
}

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

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col a {
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* ===================================
   Page Header - Mobile First
   =================================== */
.page-header {
    position: relative;
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('Gallery/wood4.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 68px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(93, 64, 55, 0.7), rgba(62, 39, 35, 0.8));
}

.page-header h1 {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    padding: 0 1rem;
}

.page-header p {
    position: relative;
    z-index: 2;
    font-size: 1rem;
    color: var(--beige);
    padding: 0 1rem;
}

/* ===================================
   About Page - Mobile First
   =================================== */
.about-content-section {
    background: var(--white);
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px var(--shadow);
    order: -1;
}

.values-section {
    background: var(--cream);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-brown);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.detailed-services-section {
    background: var(--white);
}

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

.service-detail {
    margin-bottom: 3rem;
}

.service-detail-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-detail-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-brown);
}

.service-detail-text p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.service-features li {
    padding: 0.6rem 0 0.6rem 1.75rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-brown);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-detail-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px var(--shadow);
    order: -1;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   Contact Page - Mobile First
   =================================== */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.form-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--beige);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-brown);
    box-shadow: 0 0 0 3px rgba(93, 64, 55, 0.1);
}

.btn-submit {
    margin-top: 0.5rem;
    cursor: pointer;
    border: none;
    width: 100%;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
    font-size: 0.95rem;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

.contact-info-wrapper p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-info-card {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.contact-icon {
    color: var(--primary-brown);
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
    color: var(--primary-brown);
}

.contact-info-card a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.whatsapp-card {
    background: linear-gradient(135deg, #25D366, #1faa52);
    color: var(--white);
}

.whatsapp-card .contact-icon,
.whatsapp-card h3,
.whatsapp-card a {
    color: var(--white);
}

.whatsapp-note {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.business-hours {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.business-hours h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-brown);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--beige);
    font-size: 0.9rem;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--text-dark);
}

.time {
    color: var(--text-light);
}

.contact-cta {
    background: var(--primary-brown);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.contact-cta h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-cta p {
    color: var(--beige);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

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

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
}

.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--primary-brown);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===================================
   TABLET BREAKPOINT (min-width: 640px)
   Progressive Enhancement
   =================================== */
@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }

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

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

    .hero-cta {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }

    .btn {
        width: auto;
    }

    .btn-whatsapp-large {
        width: auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

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

    .values-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .faq-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .page-header {
        height: 350px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.15rem;
    }
}

/* ===================================
   DESKTOP BREAKPOINT (min-width: 968px)
   Progressive Enhancement
   =================================== */
@media (min-width: 968px) {
    .container {
        max-width: 1200px;
        padding: 0 2rem;
    }

    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.75rem; }

    /* Desktop Navigation */
    .mobile-menu-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        height: auto;
        width: auto;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        gap: 2rem;
    }

    .nav-menu li {
        width: auto;
        border-bottom: none;
    }

    .nav-menu a {
        padding: 0.5rem 0;
        font-size: 1rem;
        position: relative;
    }

    .nav-menu a:not(.btn-whatsapp)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-brown);
        transition: width 0.3s ease;
    }

    .nav-menu a:not(.btn-whatsapp):hover::after,
    .nav-menu a.active::after {
        width: 100%;
    }

    .nav-menu a:not(.btn-whatsapp):hover,
    .nav-menu a.active {
        background: transparent;
    }

    .btn-whatsapp {
        margin-top: 0;
        padding: 0.6rem 1.5rem;
    }

    .logo img {
        height: 60px;
    }

    .nav-wrapper {
        padding: 1rem 0;
    }

    /* Desktop Hero */
    .hero {
        height: 100vh;
        min-height: 600px;
        margin-top: 80px;
    }

    .hero-title {
        font-size: 4rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .hero-scroll {
        bottom: 30px;
        font-size: 0.9rem;
    }

    /* Desktop Sections */
    .intro-section,
    .services-section,
    .gallery-section,
    .why-choose-section,
    .about-content-section,
    .values-section,
    .detailed-services-section,
    .contact-section,
    .faq-section {
        padding: 6rem 0;
    }

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

    .section-header h2 {
        font-size: 2.8rem;
    }

    .section-header p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.8rem;
        margin-bottom: 3rem;
    }

    /* Desktop Grid Layouts */
    .intro-grid,
    .why-choose-grid,
    .about-grid {
        flex-direction: row;
        gap: 4rem;
        align-items: center;
    }

    .intro-grid > *,
    .why-choose-grid > *,
    .about-grid > * {
        flex: 1;
    }

    .why-choose-image,
    .about-image {
        order: 0;
    }

    .intro-content h2,
    .why-choose-content h2,
    .about-text h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .intro-text,
    .about-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .feature-list {
        gap: 1.5rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-item h4 {
        font-size: 1.3rem;
    }

    .feature-item p {
        font-size: 1rem;
    }

    /* Desktop Services */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .service-card {
        padding: 2.5rem 2rem;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 25px var(--shadow-dark);
    }

    .service-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-card p {
        font-size: 1rem;
    }

    /* Desktop Gallery */
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .gallery-overlay {
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

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

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-overlay h4 {
        font-size: 1.3rem;
    }

    /* Desktop Values */
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .value-card {
        padding: 2.5rem 2rem;
    }

    .value-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .value-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .value-card p {
        font-size: 1rem;
    }

    /* Desktop Service Details */
    .service-detail {
        margin-bottom: 5rem;
    }

    .service-detail-content {
        flex-direction: row;
        gap: 4rem;
    }

    .service-detail-content > * {
        flex: 1;
    }

    .service-detail-image {
        order: 0;
    }

    .service-detail.reverse .service-detail-content {
        flex-direction: row-reverse;
    }

    .service-detail-text h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .service-detail-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .service-features li {
        font-size: 1.05rem;
        padding: 0.7rem 0 0.7rem 2rem;
    }

    .service-features li::before {
        font-size: 1.2rem;
    }

    /* Desktop Contact */
    .contact-grid {
        flex-direction: row;
        gap: 4rem;
    }

    .contact-form-wrapper {
        flex: 1.5;
    }

    .contact-info-wrapper {
        flex: 1;
    }

    .contact-form-wrapper h2,
    .contact-info-wrapper h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .form-description,
    .contact-info-wrapper p {
        font-size: 1.05rem;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
    }

    .btn-submit {
        width: auto;
        min-width: 200px;
    }

    .contact-info-card {
        padding: 2rem;
    }

    .contact-icon {
        margin-bottom: 1rem;
    }

    .contact-info-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .contact-info-card a,
    .contact-info-card p {
        font-size: 1rem;
    }

    .business-hours {
        padding: 2rem;
    }

    .business-hours h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .hours-item {
        font-size: 1rem;
    }

    .contact-cta {
        padding: 2rem;
    }

    .contact-cta h3 {
        font-size: 1.5rem;
    }

    .contact-cta p {
        font-size: 1rem;
    }

    /* Desktop FAQ */
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .faq-item {
        padding: 2rem;
    }

    .faq-item h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .faq-item p {
        font-size: 1rem;
    }

    /* Desktop CTA */
    .cta-section {
        padding: 5rem 0;
    }

    .cta-content h2 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }

    /* Desktop Footer */
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .footer-logo {
        max-width: 150px;
        margin-bottom: 1rem;
    }

    .footer-col h4 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .footer-col ul {
        gap: 0.8rem;
    }

    .footer-col a {
        font-size: 1rem;
    }

    .footer-bottom {
        padding-top: 2rem;
        font-size: 1rem;
    }

    /* Desktop Page Header */
    .page-header {
        height: 400px;
    }

    .page-header h1 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .page-header p {
        font-size: 1.3rem;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
