/* RF Davies & Son - Main Stylesheet */
/* Style Seed: SEED_01_Minimal_Premium */
/* Typography: TYPE_01_Modern_Premium (Playfair Display + Inter) */
/* Color Scheme: Based on logo - Orange (#FF6B1F) and Charcoal (#4A5056) */

/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
    background-color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #FF6B1F;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #E65A15;
}

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

ul {
    list-style: none;
}

/* ===== LAYOUT UTILITIES ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-primary {
    background-color: #FF6B1F;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #E65A15;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 31, 0.3);
}

.btn-secondary {
    background-color: #FFFFFF;
    color: #4A5056;
    border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
    background-color: #4A5056;
    color: #FFFFFF;
    border-color: #4A5056;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* ===== HEADER ===== */
.header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E5E5E5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #4A5056;
    transition: all 0.3s ease;
}

.nav {
    flex: 1;
}

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

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #4A5056;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #FF6B1F;
}

.header-cta {
    flex-shrink: 0;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: relative;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
}

.hero-content {
    color: #FFFFFF;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero-specific button overrides for visibility */
.hero-ctas .btn-secondary {
    background-color: #FFFFFF;
    color: #1A1A1A;
    border: 2px solid #FFFFFF;
    font-weight: 600;
}

.hero-ctas .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #1A1A1A;
    border-color: #FFFFFF;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background-color: #F8F8F8;
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0.75rem;
}

.page-header p {
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 0;
}

/* ===== SECTIONS ===== */
section {
    padding: 5rem 0;
}

.section-intro {
    font-size: 1.125rem;
    color: #666666;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
    background-color: #FFFFFF;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.service-card {
    background-color: #FAFAFA;
    padding: 2rem;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
    color: #FF6B1F;
    margin-bottom: 1.5rem;
}

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

.service-card p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== GALLERY PREVIEW ===== */
.gallery-preview {
    background-color: #F8F8F8;
}

.gallery-preview h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

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

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: #FFFFFF;
}

.gallery-caption h4 {
    color: #FFFFFF;
    margin-bottom: 0;
    font-size: 1.125rem;
}

/* ===== TESTIMONIALS PREVIEW ===== */
.testimonials-preview {
    background-color: #FFFFFF;
}

.testimonials-preview h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.testimonial-card {
    background-color: #FAFAFA;
    padding: 2rem;
    border-radius: 4px;
    border-left: 4px solid #FF6B1F;
}

.stars {
    color: #FF6B1F;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 0.25rem;
}

.testimonial-service {
    font-size: 0.875rem;
    color: #666666;
    margin-bottom: 0;
}

/* ===== TRUST INDICATORS ===== */
.trust-indicators {
    background-color: #4A5056;
    color: #FFFFFF;
    padding: 3rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.trust-item {
    padding: 1.5rem;
}

.trust-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #FF6B1F;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1.125rem;
    margin-bottom: 0;
    color: #FFFFFF;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background-color: #F8F8F8;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item svg {
    color: #FF6B1F;
    flex-shrink: 0;
}

.contact-item a {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1A1A1A;
}

.contact-item a:hover {
    color: #FF6B1F;
}

.contact-item span {
    font-size: 1rem;
    color: #666666;
}

.contact-cta-box {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-cta-box h3 {
    margin-bottom: 1rem;
}

.contact-cta-box p {
    margin-bottom: 2rem;
    color: #666666;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #1A1A1A;
    color: #CCCCCC;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-column h4 {
    color: #FFFFFF;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

.footer-column p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

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

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

.footer-links a {
    color: #CCCCCC;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF6B1F;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ===== SERVICES PAGE ===== */
.services-detailed {
    background-color: #FFFFFF;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.service-detail.reverse {
    margin-bottom: 5rem;
}

.service-detail-content h2 {
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-detail-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.75rem;
    color: #666666;
    line-height: 1.7;
}

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    max-height: 400px;
}

/* ===== GALLERY PAGE ===== */
.gallery-full {
    background-color: #FFFFFF;
}

.gallery-intro {
    font-size: 1.125rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 4rem;
}

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

.gallery-full-item {
    background-color: #FAFAFA;
    border-radius: 4px;
    overflow: hidden;
}

.gallery-full-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-full-caption {
    padding: 2rem;
}

.gallery-full-caption h3 {
    margin-bottom: 0.75rem;
}

.gallery-full-caption p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 0;
}

.quality-statement {
    background-color: #F8F8F8;
    text-align: center;
}

.quality-statement h2 {
    margin-bottom: 1.5rem;
}

.quality-statement > .container > p {
    font-size: 1.125rem;
    color: #666666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 3rem;
}

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

.quality-feature {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 4px;
}

.quality-feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #FF6B1F;
}

.quality-feature p {
    color: #666666;
    margin-bottom: 0;
}

/* ===== TESTIMONIALS PAGE ===== */
.trust-summary {
    background-color: #FFFFFF;
    padding: 3rem 0;
}

.trust-summary-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.trust-stat {
    padding: 1.5rem;
}

.trust-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #FF6B1F;
    margin-bottom: 0.5rem;
}

.trust-stat p {
    font-size: 1.125rem;
    color: #4A5056;
    margin-bottom: 0;
}

.testimonials-full {
    background-color: #F8F8F8;
}

.testimonials-full-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.testimonial-full-card {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 4px;
    border-left: 4px solid #FF6B1F;
}

.testimonial-rating {
    font-weight: 600;
    color: #4A5056;
    margin-bottom: 1rem;
}

.testimonial-full-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #1A1A1A;
}

.testimonial-full-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 1.5rem;
}

.testimonial-meta {
    border-top: 1px solid #E5E5E5;
    padding-top: 1rem;
}

.testimonial-meta p {
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.testimonial-location,
.testimonial-date {
    color: #666666;
}

.why-choose-us {
    background-color: #FFFFFF;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.reason-item {
    background-color: #FAFAFA;
    padding: 2rem;
    border-radius: 4px;
}

.reason-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.reason-item p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== ABOUT PAGE ===== */
.about-content {
    background-color: #FFFFFF;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
}

.about-values {
    margin-bottom: 5rem;
}

.about-values h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-card {
    background-color: #FAFAFA;
    padding: 2rem;
    border-radius: 4px;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #FF6B1F;
}

.value-card p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 0;
}

.about-experience,
.about-services-overview,
.about-area {
    margin-bottom: 4rem;
}

.about-experience h2,
.about-services-overview h2,
.about-area h2 {
    margin-bottom: 1.5rem;
}

.about-experience p,
.about-services-overview p,
.about-area p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 1.5rem;
}

.services-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.services-columns ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.services-columns li {
    margin-bottom: 0.75rem;
    color: #666666;
    line-height: 1.7;
}

.commitment-section {
    background-color: #F8F8F8;
}

.commitment-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.commitment-item {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
}

.commitment-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #FF6B1F;
}

.commitment-item p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-page-content {
    background-color: #FFFFFF;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.contact-info-section h2 {
    margin-bottom: 1rem;
}

.contact-info-section > p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 2rem;
}

.contact-details-list {
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E5E5E5;
}

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

.contact-icon {
    flex-shrink: 0;
}

.contact-icon svg {
    color: #FF6B1F;
}

.contact-detail-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-detail-text a {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1A1A1A;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-detail-text a:hover {
    color: #FF6B1F;
}

.contact-detail-text p {
    font-size: 0.9375rem;
    color: #666666;
    margin-bottom: 0.25rem;
}

.contact-why-choose {
    background-color: #FAFAFA;
    padding: 2rem;
    border-radius: 4px;
}

.contact-why-choose h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-why-choose ul {
    list-style: none;
}

.contact-why-choose li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #666666;
    position: relative;
}

.contact-why-choose li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF6B1F;
    font-weight: bold;
}

.contact-form-section h2 {
    margin-bottom: 1.5rem;
}

.contact-form {
    background-color: #FAFAFA;
    padding: 2.5rem;
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1A1A1A;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    border: 1px solid #D0D0D0;
    border-radius: 4px;
    background-color: #FFFFFF;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B1F;
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    font-size: 0.875rem;
    color: #666666;
    margin-top: 1rem;
    margin-bottom: 0;
}

.form-success {
    background-color: #E8F5E9;
    padding: 2rem;
    border-radius: 4px;
    border-left: 4px solid #4CAF50;
}

.form-success h3 {
    color: #2E7D32;
    margin-bottom: 0.75rem;
}

.form-success p {
    color: #333333;
    margin-bottom: 0;
}

.service-areas {
    background-color: #F8F8F8;
}

.service-areas h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.service-areas > .container > p {
    text-align: center;
    font-size: 1.0625rem;
    color: #666666;
    margin-bottom: 2.5rem;
}

.areas-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.areas-list ul {
    list-style: disc;
    margin-left: 1.5rem;
    columns: 1;
}

.areas-list li {
    margin-bottom: 0.75rem;
    color: #666666;
}

.areas-note {
    text-align: center;
    font-size: 0.9375rem;
    color: #666666;
    font-style: italic;
    margin-bottom: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background-color: #4A5056;
    color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets and up */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    .hero {
        height: 700px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

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

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

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

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

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

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

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

    .service-detail.reverse {
        direction: rtl;
    }

    .service-detail.reverse > * {
        direction: ltr;
    }

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

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

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

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

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

    .about-intro {
        grid-template-columns: 1fr 1fr;
    }

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

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

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

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

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

    .areas-list ul {
        columns: 1;
    }
}

/* Desktops and up */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

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

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

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

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

/* Mobile menu */
@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #FFFFFF;
        border-top: 1px solid #E5E5E5;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 1.25rem;
        border-bottom: 1px solid #F0F0F0;
    }

    .header-cta {
        display: none;
    }

    .hero {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .hero-ctas {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }
}

/* Print styles */
@media print {
    .header,
    .mobile-menu-toggle,
    .footer,
    .cta-section,
    .btn {
        display: none;
    }
}
