/* ===================================
   GREENLIGHT CONTRACTING - STYLES
   Modern Contractor Website
   =================================== */

/* ===================================
   RESET & BASE STYLES
   =================================== */

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

:root {
    --green-primary: #2d8045;
    --green-dark: #1f5a30;
    --green-light: #3a9b56;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --white: #ffffff;
    --black: #000000;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-900);
    line-height: 1.6;
    background-color: var(--white);
    font-size: 16px;
}

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

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

ul, ol {
    list-style: none;
}

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

.hidden {
    display: none;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-700);
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

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

.btn-secondary {
    background-color: var(--white);
    color: var(--green-primary);
    border: 2px solid var(--green-primary);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--green-primary);
    color: var(--green-primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ===================================
   HEADER
   =================================== */

.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 0 0 auto;
}

.logo img {
    width: 70px;
    height: 70px;
}

.logo-text {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--gray-900);
    white-space: nowrap;
}

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

.nav-link {
    color: var(--gray-700);
    font-weight: 500;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--green-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    font-weight: 600;
    white-space: nowrap;
    font-size: 0.95rem;
}

.phone-link:hover {
    color: var(--green-primary);
}

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

.mobile-toggle span {
    width: 24px;
    height: 3px;
    background-color: var(--gray-900);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.nav {
    transition: all 0.3s ease;
}

.nav.active {
    display: block !important;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
    color: var(--white);
    padding: 5rem 0;
}

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

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    flex: 0 1 auto;
}

.trust-item svg {
    flex-shrink: 0;
}

/* ===================================
   SECTION STYLES
   =================================== */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--green-primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--green-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    color: var(--white);
}

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

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

.service-link {
    color: var(--green-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

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

/* Service Area Section */
.service-area {
    padding: 5rem 0;
    background-color: var(--gray-50);
}

.area-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.area-content h2 {
    margin-bottom: 1rem;
}

.area-content > p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    text-align: left;
}

.area-column h3 {
    color: var(--green-primary);
    margin-bottom: 1rem;
}

.area-column ul li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 1.5rem;
}

.area-column ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-primary);
    font-weight: bold;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--green-primary);
    margin-bottom: 0.5rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.feature-icon svg {
    color: var(--green-primary);
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-600);
}

/* Process Section */
.process {
    padding: 5rem 0;
    background-color: var(--gray-50);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.process-step h3 {
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.process-arrow {
    font-size: 2rem;
    color: var(--green-primary);
    text-align: center;
    display: none;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.testimonial-card {
    background-color: var(--gray-50);
    padding: 2rem;
    border-radius: 8px;
}

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

.testimonial-text {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--gray-900);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

/* ===================================
   PAGE HEADER
   =================================== */

.page-header {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* ===================================
   SERVICE DETAIL PAGES
   =================================== */

.service-detail {
    padding: 4rem 0;
}

.service-detail.alt {
    background-color: var(--gray-50);
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background-color: var(--green-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon-large svg {
    color: var(--white);
}

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

.service-intro {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.service-detail h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--green-primary);
}

.service-list {
    margin: 1.5rem 0;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-700);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-primary);
    font-weight: bold;
}

/* ===================================
   ABOUT PAGE
   =================================== */

.about-content {
    padding: 4rem 0;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-story {
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.credentials {
    padding: 3rem 0;
    background-color: var(--gray-50);
    margin: 4rem 0;
}

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

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.credential-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.credential-icon {
    margin: 0 auto 1.5rem;
}

.credential-icon svg {
    color: var(--green-primary);
}

.our-approach {
    max-width: 800px;
    margin: 4rem auto;
}

.approach-intro {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.approach-steps {
    display: grid;
    gap: 2rem;
}

.approach-step h3 {
    color: var(--green-primary);
    margin-bottom: 0.75rem;
}

.service-areas {
    max-width: 800px;
    margin: 4rem auto;
}

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

.areas-served h3 {
    color: var(--green-primary);
    margin-bottom: 1rem;
}

.why-local {
    max-width: 800px;
    margin: 4rem auto;
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-section {
    padding: 4rem 0;
}

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

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

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.method-icon svg {
    color: var(--green-primary);
}

.contact-method h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-link {
    color: var(--green-primary);
    font-weight: 600;
}

.method-note {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.trust-badges {
    background-color: var(--gray-50);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.trust-badges h3 {
    margin-bottom: 1rem;
}

.badges-list {
    display: grid;
    gap: 0.75rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-item svg {
    color: var(--green-primary);
    flex-shrink: 0;
}

/* Contact Form */
.contact-form-container h2 {
    margin-bottom: 0.75rem;
}

.form-intro {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

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

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

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

.form-note {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 1rem;
}

/* Service Area Contact */
.service-area-contact {
    padding: 4rem 0;
    background-color: var(--gray-50);
}

.area-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--gray-600);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.area-list h3 {
    color: var(--green-primary);
    margin-bottom: 1rem;
}

.area-list ul li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 1.5rem;
}

.area-list ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--green-primary);
    font-weight: bold;
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you {
    padding: 5rem 0;
    min-height: 60vh;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.success-icon svg {
    color: var(--green-primary);
}

.thank-you-message {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 3rem;
}

.next-steps {
    margin: 4rem 0;
}

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

.step {
    text-align: center;
}

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

.urgent-need {
    background-color: var(--gray-50);
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.urgent-need h3 {
    margin-bottom: 0.75rem;
}

.urgent-need p {
    margin-bottom: 1.5rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 55px;
    height: 55px;
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.125rem;
}

.footer-column p {
    color: var(--gray-300);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-trust {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer-trust span {
    font-size: 0.875rem;
    color: var(--gray-300);
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-column ul li a {
    color: var(--gray-300);
}

.footer-column ul li a:hover {
    color: var(--green-light);
}

.footer-phone {
    color: var(--green-light);
    font-weight: 600;
}

.footer-phone:hover {
    color: var(--white);
}

.service-area-footer {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* ===================================
   PORTFOLIO / GALLERY
   =================================== */

.portfolio-section {
    padding: 4rem 0;
}

.portfolio-category {
    margin-bottom: 4rem;
}

.portfolio-category h2 {
    color: var(--green-primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.portfolio-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.portfolio-item-content {
    padding: 1.5rem;
}

.portfolio-item-content h3 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.portfolio-location {
    color: var(--green-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.portfolio-description {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-tags span {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.portfolio-cta {
    background: var(--gray-50);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 4rem;
}

.portfolio-cta h2 {
    margin-bottom: 1rem;
}

.portfolio-cta p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

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

@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-arrow {
        display: block;
        transform: rotate(90deg);
    }
}

@media (max-width: 640px) {
    /* Medium mobile optimization */
    .hero {
        padding: 3.5rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 1.35rem;
    }
    
    .hero-subtitle {
        font-size: 1.075rem;
        line-height: 1.65;
    }
    
    .container {
        padding: 0 22px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        line-height: 1.4;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    /* Mobile Header Spacing */
    .header {
        padding: 1rem 0;
    }
    
    .header-content {
        gap: 1rem;
        padding: 0.5rem 0;
    }
    
    /* Hero Section Spacing */
    .hero {
        padding: 4rem 0;
    }
    
    .hero-content {
        padding-top: 1rem;
    }
    
    .hero-title {
        font-size: 1.85rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        margin-bottom: 2.5rem;
    }
    
    .hero-trust {
        gap: 1.25rem;
        margin-top: 0.5rem;
    }
    
    .trust-item {
        font-size: 0.9rem;
        min-width: 45%;
        padding: 0.25rem 0;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        padding: 1rem 0;
        z-index: 999;
        margin-top: 0.5rem;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .mobile-toggle {
        display: flex;
        order: 3;
        margin-left: 0.5rem;
    }
    
    .header {
        position: relative;
    }
    
    .logo {
        order: 1;
        flex: 0 0 auto;
        margin-right: auto;
    }
    
    .header-actions {
        order: 2;
        gap: 0.75rem;
        flex: 0 0 auto;
        justify-content: flex-end;
        min-width: 0;
    }
    
    .phone-link {
        font-size: 0.85rem;
        padding: 0.6rem 0.75rem;
    }
    
    .logo-text {
        font-size: 1.15rem;
    }
    
    .btn {
        padding: 0.65rem 1.1rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-actions,
    .cta-actions,
    .thank-you-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
    }
    
    .areas-list,
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 24px;
    }
    
    /* Generous Header Spacing */
    .header {
        padding: 1.25rem 0;
    }
    
    .header-content {
        padding: 0.5rem 0;
        gap: 1rem;
    }
    
    /* Spacious Hero Section */
    .hero {
        padding: 3rem 0 3.5rem;
    }
    
    .hero-content {
        padding-top: 0.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.45;
        margin-bottom: 1.25rem;
        letter-spacing: -0.02em;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.65;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-trust {
        gap: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 0.75rem;
    }
    
    .trust-item {
        font-size: 0.9rem;
        width: 100%;
        min-width: 100%;
        padding: 0.35rem 0;
    }
    
    /* Sections Spacing */
    .services,
    .why-choose,
    .process,
    .testimonials,
    .cta-section {
        padding: 3.5rem 0;
    }
    
    .service-card,
    .feature-card {
        padding: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-lg {
        padding: 1rem 1.75rem;
        font-size: 1.05rem;
    }
    
    /* Header Elements */
    .logo {
        margin-bottom: 0.25rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo img {
        width: 52px;
        height: 52px;
    }
    
    .header-actions {
        gap: 0.65rem;
    }
    
    .phone-link {
        font-size: 0.8rem;
        padding: 0.6rem 0.65rem;
    }
    
    .header-actions .btn-primary {
        padding: 0.6rem 0.85rem;
        font-size: 0.85rem;
    }
    
    .mobile-toggle {
        padding: 0.5rem;
        margin-left: 0.25rem;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header h2 {
        margin-bottom: 1rem;
    }
    
    .section-header p {
        line-height: 1.6;
    }
}
