/* CMR LLC Website - Professional Design with Advanced Interactions */

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

:root {
    --primary-color: #1A1A1A;
    --secondary-color: #2C2C2C;
    --accent-color: #C8102E;
    --masonry-red: #8B3A3A;
    --masonry-gray: #4A4A4A;
    --masonry-tan: #D4C4B5;
    --light-color: #FAFAFA;
    --dark-color: #1A1A1A;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #C8102E 0%, #8B3A3A 100%);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Typography */
html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    background-color: var(--light-color);
    font-weight: 400;
    overflow-x: hidden;
    width: 100%;
    min-width: 100%;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
}

/* Loading Animation */
/* Removed to prevent blank page if CSS loads slowly */

/* Navigation */
header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    max-width: 100vw;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid var(--accent-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-x: hidden;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 45px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.65)), 
                url('159004539550256638.jpeg') center/cover no-repeat;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 120px 5% 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(200, 16, 46, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 58, 58, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    max-width: 1000px;
    padding: 2rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    animation: slideInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.95;
    font-family: 'Work Sans', sans-serif;
    animation: slideInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

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

.cta-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.3rem 3.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(200, 16, 46, 0.4);
    position: relative;
    overflow: hidden;
    animation: slideInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s backwards;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(200, 16, 46, 0.5);
}

/* Section Styles */
section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll within sections */
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--masonry-gray);
    font-size: 1.15rem;
    margin-bottom: 4rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--secondary-color);
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--accent-color);
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
}

@media (max-width: 768px) {
    .about-image::before {
        display: none; /* Remove decorative border on mobile to prevent overflow */
    }
}

.about-image img {
    width: 100%;
    box-shadow: var(--shadow-strong);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.about-image:hover img {
    transform: translate(10px, 10px);
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--light-color) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: var(--white);
    padding: 3rem 2.5rem;
    border-top: 4px solid var(--accent-color);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card.revealed {
    animation: revealCard 0.6s cubic-bezier(0.4, 0, 0.2, 1) var(--delay) forwards;
}

@keyframes revealCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(200, 16, 46, 0.03) 0%, transparent 100%);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    border-top-width: 6px;
}

.service-icon {
    width: 56px;
    height: 56px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.service-card p {
    color: var(--masonry-gray);
    font-size: 0.98rem;
    line-height: 1.8;
}

/* Portfolio Section */
.portfolio {
    background-color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 400px;
}

.portfolio-item.revealed {
    animation: revealCard 0.6s cubic-bezier(0.4, 0, 0.2, 1) var(--delay) forwards;
}

.portfolio-item:hover {
    box-shadow: var(--shadow-hover);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.7) 70%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    color: var(--white);
    transform: translateY(0);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-overlay {
    padding: 2.5rem 2rem 2rem;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.98) 0%, rgba(26, 26, 26, 0.8) 70%, transparent 100%);
}

.portfolio-overlay h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-overlay p {
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Service Areas Section */
.service-areas {
    background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
    color: var(--white);
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}

.service-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(200, 16, 46, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(139, 58, 58, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.service-areas .section-title,
.service-areas .section-subtitle {
    color: var(--white);
}

.coverage-map {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.primary-region {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 3.5rem;
    margin-bottom: 3rem;
    border: 2px solid rgba(200, 16, 46, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.primary-region::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

@media (max-width: 768px) {
    .primary-region {
        padding: 2rem;
    }
}

.primary-region:hover::before {
    opacity: 0.1;
}

.region-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.region-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-color);
}

.region-header h3 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.city-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.city-tag {
    background: var(--gradient-primary);
    padding: 0.7rem 1.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.city-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--white);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.city-tag:hover::after {
    transform: scaleX(1);
}

.region-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
}

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

.highlight-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-left: 4px solid var(--accent-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-item.revealed {
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) var(--delay) forwards;
}

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

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-left-width: 8px;
}

.highlight-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.highlight-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.98rem;
    line-height: 1.7;
}

.service-note {
    background: rgba(200, 16, 46, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem 2.5rem;
    border-left: 4px solid var(--accent-color);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.note-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.service-note p {
    font-size: 1.08rem;
    margin: 0;
    line-height: 1.6;
}

.service-note a {
    color: var(--white);
    font-weight: 700;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.service-note a:hover {
    opacity: 0.7;
}

/* Why Choose Us Section */
.why-choose {
    background: linear-gradient(135deg, var(--masonry-tan) 0%, #E5D5C5 100%);
    padding: 6rem 5%;
}

.why-choose .section-title {
    color: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.benefit-item {
    text-align: center;
    padding: 3rem 2.5rem;
    background: var(--white);
    border: 3px solid var(--accent-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-item.revealed {
    animation: scaleUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) var(--delay) forwards;
}

@keyframes scaleUp {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(200, 16, 46, 0.05) 0%, transparent 100%);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover::before {
    height: 100%;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--masonry-red);
}

.benefit-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-color);
    margin: 0 auto 1.5rem;
    display: block;
}

.benefit-item h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-item p {
    color: var(--masonry-gray);
    font-size: 0.98rem;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background-color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--secondary-color);
}

.contact-info strong {
    color: var(--primary-color);
    font-weight: 700;
}

.contact-form {
    background-color: var(--light-color);
    padding: 3rem;
    border: 3px solid var(--accent-color);
    box-shadow: var(--shadow);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid rgba(200, 16, 46, 0.2);
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 2rem;
    }
    
    .contact-form::before {
        display: none; /* Remove decorative border on mobile to prevent overflow */
    }
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--masonry-tan);
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--white);
    transition: all 0.3s ease;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

.submit-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.2rem 3rem;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 16, 46, 0.4);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 5% 2rem;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content h3 {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-content p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    /* Prevent horizontal overflow on mobile */
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Ensure all containers stay within viewport */
    *, *::before, *::after {
        max-width: 100%;
    }
    
    .nav-links { 
        display: none; 
    }
    
    .mobile-menu-btn { 
        display: block; 
    }
    
    .hero {
        padding: 120px 5% 60px;
        min-height: 600px;
        height: 100vh;
    }
    
    .hero h1 { 
        font-size: 2.5rem; 
        letter-spacing: 2px;
    }
    
    .hero p { 
        font-size: 1.1rem; 
    }
    
    .about-content { 
        grid-template-columns: 1fr; 
        gap: 3rem; 
    }
    
    .contact-container { 
        grid-template-columns: 1fr; 
        gap: 3rem; 
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-info {
        padding: 0 0.5rem;
    }
    
    section { 
        padding: 4rem 5%;
        width: 100%;
    }
    
    .section-title { 
        font-size: 2.2rem; 
    }
    
    .portfolio-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .primary-region {
        padding: 2rem;
        margin-left: 0;
        margin-right: 0;
    }
    
    .city-tags {
        gap: 0.8rem;
        margin-left: 0;
        margin-right: 0;
    }
    
    .city-tag {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .region-highlights {
        grid-template-columns: 1fr;
    }
    
    .service-note {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Accessibility */
:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

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