/* ========================================
   BRAND COLORS & VARIABLES
   ======================================== */

:root {
    --brand-blue: #2c3e50;
    --brand-blue-light: #4a5f7f;
    --brand-blue-dark: #1a252f;
    --brand-accent: #c9a961;
    --brand-accent-dark: #b89651;
    --text-dark: #1a1a1a;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-subtle: #e8e8e8;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

/* ========================================
   CONTAINERS
   ======================================== */

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.header-main {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-main:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    width: 280px;
    height: auto;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.85;
}

.btn-header {
    background: var(--brand-accent);
    padding: 0.875rem 1.75rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

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

.btn-header:hover::before {
    width: 300px;
    height: 300px;
}

.btn-header:hover {
    background: var(--brand-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.25);
}

.btn-header:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.2);
}

.btn-header-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-header-number {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

.hero {
    background: linear-gradient(135deg, var(--brand-blue-dark) 0%, var(--brand-blue) 100%);
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent);
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: white;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-title-accent {
    color: var(--brand-accent);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    font-weight: 300;
}

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

.btn-primary-large {
    background: var(--brand-accent);
    color: white;
    padding: 1.125rem 2.5rem;
    border-radius: 2px;
    font-weight: 500;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--brand-accent);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-primary-large::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-large:hover::after {
    width: 400px;
    height: 400px;
}

.btn-primary-large:hover {
    background: var(--brand-accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-primary-large:active {
    transform: translateY(-1px);
}

.btn-secondary-large {
    background: transparent;
    color: white;
    padding: 1.125rem 2.5rem;
    border-radius: 2px;
    font-weight: 500;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-secondary-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary-large:hover::before {
    transform: translateX(0);
}

.btn-secondary-large:hover {
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.btn-secondary-large:active {
    transform: translateY(-1px);
}

/* ========================================
   TRUST BAR
   ======================================== */

.trust-bar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-subtle);
    padding: 2rem 2rem;
}

.trust-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

.trust-icon {
    font-size: 1.5rem;
    color: var(--brand-accent);
    font-weight: 400;
}

.trust-text {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 400;
}

.trust-divider {
    width: 1px;
    height: 30px;
    background: var(--border-subtle);
}

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

.section-eyebrow,
.section-eyebrow-center {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-blue);
    margin-bottom: 1rem;
}

.section-eyebrow-center {
    text-align: center;
}

.section-title-large {
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
}

.section-title-center {
    font-size: 2.75rem;
    font-weight: 300;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-title-center-light {
    font-size: 2.75rem;
    font-weight: 300;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

/* ========================================
   INTRO SECTION
   ======================================== */

.section-intro {
    padding: 7rem 2rem;
    background: var(--bg-white);
}

.intro-content {
    margin-top: 2.5rem;
}

.intro-text-large {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.intro-text-emphasis {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--brand-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium);
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.section-services {
    padding: 7rem 2rem;
    background: var(--bg-light);
}

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

.service-card-large {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.service-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--brand-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-large:hover::before {
    transform: scaleX(1);
}

.service-card-large:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06), 
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: transparent;
}

.service-number {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--brand-accent);
    margin-bottom: 1.25rem;
    letter-spacing: 0.1em;
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-card-large:hover .service-number {
    transform: translateX(5px);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: 0;
    transition: color 0.3s ease;
}

.service-card-large:hover .service-title {
    color: var(--brand-accent);
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

/* ========================================
   PROJECTS SECTION
   ======================================== */

.section-projects {
    padding: 7rem 2rem;
    background: var(--bg-white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.project-card {
    background: var(--bg-white);
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-subtle);
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.project-image-placeholder {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.project-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-placeholder-text {
    text-align: center;
}

.project-placeholder-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.project-placeholder-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
}

.project-info {
    padding: 1.75rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.project-location {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */

.section-why {
    padding: 7rem 2rem;
    background: var(--bg-light);
}

.features-list {
    margin-top: 4rem;
    display: grid;
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon-elegant {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid var(--brand-accent);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brand-accent);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-icon-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brand-accent);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover .feature-icon-elegant::before {
    transform: translateY(0);
}

.feature-item:hover .feature-icon-elegant {
    color: white;
    border-color: var(--brand-accent);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.25);
}

.feature-icon-elegant > * {
    position: relative;
    z-index: 1;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-medium);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.section-testimonials {
    padding: 7rem 2rem;
    background: var(--bg-white);
}

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

.testimonial-card-elegant {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 2px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card-elegant:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.testimonial-quote {
    font-size: 4rem;
    line-height: 1;
    color: var(--brand-accent);
    opacity: 0.1;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: Georgia, serif;
    transition: opacity 0.3s ease;
}

.testimonial-card-elegant:hover .testimonial-quote {
    opacity: 0.2;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.25rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-location {
    font-size: 0.9375rem;
    color: var(--text-light);
}

/* ========================================
   SERVICE AREAS SECTION
   ======================================== */

.section-areas {
    padding: 4rem 2rem;
    background: var(--brand-blue);
    text-align: center;
}

.areas-title {
    font-size: 2rem;
    font-weight: 300;
    color: var(--brand-accent);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.areas-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.section-contact {
    padding: 7rem 2rem;
    background: var(--brand-blue-dark);
}

.contact-intro {
    text-align: center;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

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

.contact-method-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 2px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-method-card:hover::before {
    width: 400px;
    height: 400px;
}

.contact-method-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: var(--brand-accent);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.15);
}

.contact-method-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.contact-method-value {
    font-size: 1.25rem;
    font-weight: 400;
    color: white;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.contact-method-card:hover .contact-method-value {
    color: var(--brand-accent);
}

.contact-form-elegant {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

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

.form-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

.form-input-elegant {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    transition: all 0.3s ease;
}

.form-input-elegant::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input-elegant:focus {
    outline: none;
    border-color: var(--brand-accent);
    background: rgba(255, 255, 255, 0.12);
}

.btn-form-submit {
    background: var(--brand-accent);
    color: white;
    padding: 1.125rem 3rem;
    border: none;
    border-radius: 2px;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    letter-spacing: 0.02em;
}

.btn-form-submit:hover {
    background: var(--brand-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.2);
}

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

.footer {
    background: var(--brand-blue);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
}

.footer-badge {
    color: var(--brand-accent);
    font-weight: 400;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.footer-copyright {
    color: var(--brand-accent);
    font-size: 0.9375rem;
    margin-top: 1.5rem;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Staggered animation delays */
.service-card-large:nth-child(1) { transition-delay: 0.1s; }
.service-card-large:nth-child(2) { transition-delay: 0.2s; }
.service-card-large:nth-child(3) { transition-delay: 0.3s; }
.service-card-large:nth-child(4) { transition-delay: 0.4s; }
.service-card-large:nth-child(5) { transition-delay: 0.5s; }

.project-card:nth-child(1) { transition-delay: 0.1s; }
.project-card:nth-child(2) { transition-delay: 0.2s; }
.project-card:nth-child(3) { transition-delay: 0.3s; }

.testimonial-card-elegant:nth-child(1) { transition-delay: 0.1s; }
.testimonial-card-elegant:nth-child(2) { transition-delay: 0.2s; }
.testimonial-card-elegant:nth-child(3) { transition-delay: 0.3s; }

.feature-item:nth-child(1) { transition-delay: 0.1s; }
.feature-item:nth-child(2) { transition-delay: 0.2s; }
.feature-item:nth-child(3) { transition-delay: 0.3s; }
.feature-item:nth-child(4) { transition-delay: 0.4s; }

@media (max-width: 768px) {
    /* Header - Much Smaller on Mobile */
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        gap: 1rem;
    }
    
    .logo {
        width: 160px;
    }
    
    .btn-header {
        padding: 0.5rem 0.875rem;
        font-size: 0.875rem;
    }
    
    .btn-header-text {
        font-size: 0.625rem;
    }
    
    .btn-header-number {
        font-size: 0.9375rem;
    }
    
    /* Hero - More Compact */
    .hero {
        min-height: auto;
        padding: 3rem 1.25rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    /* Trust Bar - Compact */
    .trust-bar {
        padding: 1.25rem 1rem;
    }
    
    .trust-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .trust-item {
        gap: 0.5rem;
    }
    
    .trust-icon {
        font-size: 1.125rem;
    }
    
    .trust-text {
        font-size: 0.8125rem;
    }
    
    .trust-divider {
        display: none;
    }
    
    /* Sections - Better Spacing */
    .section-intro,
    .section-services,
    .section-projects,
    .section-why,
    .section-testimonials,
    .section-contact {
        padding: 3rem 1.25rem;
    }
    
    /* Typography - Mobile Sizes */
    .section-eyebrow,
    .section-eyebrow-center {
        font-size: 0.75rem;
    }
    
    .section-title-large {
        font-size: 1.75rem;
        margin-bottom: 1.75rem;
    }
    
    .section-title-center,
    .section-title-center-light {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .intro-text-large,
    .intro-text-emphasis {
        font-size: 1.0625rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .service-card-large {
        padding: 1.75rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .service-description {
        font-size: 0.9375rem;
    }
    
    /* Projects Grid */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        margin-top: 2.5rem;
    }
    
    .project-image-placeholder,
    .project-image {
        height: 240px;
    }
    
    .project-info {
        padding: 1.25rem;
    }
    
    .project-title {
        font-size: 1.125rem;
    }
    
    /* Features - Stack Vertically */
    .features-list {
        margin-top: 2.5rem;
        gap: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .feature-icon-elegant {
        margin: 0 auto;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .feature-text {
        font-size: 1rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        margin-top: 2.5rem;
    }
    
    .testimonial-card-elegant {
        padding: 1.75rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    /* Service Areas */
    .section-areas {
        padding: 2.5rem 1.25rem;
    }
    
    .areas-title {
        font-size: 1.5rem;
    }
    
    .areas-text {
        font-size: 1rem;
    }
    
    /* Contact Section */
    .contact-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }
    
    .contact-method-card {
        padding: 1.75rem;
    }
    
    .contact-method-icon {
        font-size: 2rem;
    }
    
    .contact-method-value {
        font-size: 1.0625rem;
        word-break: break-word;
    }
    
    .contact-form-elegant {
        padding: 1.75rem 1.25rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .btn-form-submit {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    /* Footer */
    .footer {
        padding: 2.5rem 1.25rem;
    }
    
    .footer-text {
        font-size: 0.875rem;
    }
}

/* Very Small Phones */
@media (max-width: 380px) {
    .logo {
        width: 140px;
    }
    
    .btn-header {
        padding: 0.5rem 0.75rem;
    }
    
    .btn-header-number {
        font-size: 0.875rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title-large,
    .section-title-center,
    .section-title-center-light {
        font-size: 1.5rem;
    }
}
