/* =============================================
   PRIMEROS CONSTRUCTION - MAIN STYLESHEET
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #1e3a5f;
    --primary-dark: #0f2744;
    --primary-light: #e8eef5;
    --accent: #d97706;
    --accent-dark: #b45309;
    --accent-light: #fef3c7;
    --dark: #0f172a;
    --gray-800: #1e293b;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
    --success: #10b981;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
    --shadow-xl: 0 25px 60px rgba(0,0,0,0.18);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-700);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
    width: 100%;
    max-width: 100vw;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ---------- Typography ---------- */
.section-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-light);
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.section-title {
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 620px;
    line-height: 1.7;
}

.section-text {
    color: var(--gray-600);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.text-accent {
    color: var(--accent);
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    padding: 0.75rem 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    z-index: 1050;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo {
    height: 48px;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-600) !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent) !important;
}

.nav-cta {
    font-size: 0.9rem !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    white-space: nowrap;
}

.navbar-toggler {
    padding: 4px 8px;
    color: var(--dark);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 1rem;
}

.btn-accent:hover {
    background: linear-gradient(135deg, var(--accent-dark) 0%, #92400e 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(217,119,6,0.35);
}

.btn-outline-light {
    border-width: 2px;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(15,23,42,0.88) 0%, rgba(30,58,95,0.80) 50%, rgba(15,39,68,0.75) 100%),
        url('../pictures/IMG_2192.JPG') center/cover no-repeat;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--white) 0%, transparent 100%);
    z-index: 1;
}

.hero .container {
    z-index: 2;
}

.min-vh-hero {
    min-height: calc(100vh - 200px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    margin-bottom: 0.5rem;
}

.hero-trust {
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
    background: var(--white);
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.stat-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.stat-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.about-images {
    position: relative;
    padding: 20px;
}

.about-img-main img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -20px;
    right: -10px;
    width: 55%;
    z-index: 2;
}

.about-img-secondary img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--white);
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.about-experience-badge {
    position: absolute;
    top: 10px;
    left: -10px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 10px 30px rgba(217,119,6,0.3);
    z-index: 3;
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.about-values {
    margin-top: 1.5rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-weight: 500;
    color: var(--gray-700);
}

.value-item i {
    color: var(--success);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.service-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #dbeafe 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.service-text {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.service-features li {
    padding: 4px 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217,119,6,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.cta-text {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.cta-btn {
    font-weight: 700;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    color: var(--primary-dark) !important;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-btn.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gallery-card-large {
    height: 360px;
}

.gallery-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.9) 0%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Before / After */
.ba-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    gap: 3px;
    background: var(--gray-200);
}

.ba-image {
    position: relative;
    overflow: hidden;
}

.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-card:hover .ba-image img {
    transform: scale(1.05);
}

.ba-label {
    position: absolute;
    top: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.ba-label-before {
    left: 12px;
    background: rgba(239,68,68,0.9);
    color: white;
}

.ba-label-after {
    right: 12px;
    background: rgba(16,185,129,0.9);
    color: white;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(217,119,6,0.08);
    transform: translateY(-4px);
}

.testimonial-stars {
    margin-bottom: 1rem;
    display: flex;
    gap: 2px;
}

.testimonial-stars i {
    color: var(--accent);
    font-size: 1rem;
}

.testimonial-text {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

.author-detail {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.process-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.process-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.process-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.process-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-100);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
    transition: var(--transition);
}

.process-card:hover .process-number {
    color: var(--accent-light);
}

.process-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    transition: var(--transition);
}

.process-card:hover .process-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
}

.process-card h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.process-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    height: 100%;
    color: var(--white);
}

.contact-info-title {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.contact-info-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--accent);
}

.contact-item-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item-value {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    word-break: break-word;
}

a.contact-item-value:hover {
    color: var(--accent);
}

.contact-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.contact-form-title {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 0.4rem;
}

.form-control,
.form-select {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: var(--gray-50);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(217,119,6,0.12);
    background-color: var(--white);
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--dark) 100%);
    color: var(--gray-400);
    padding: 80px 0 40px;
}

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

.footer-tagline {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.07);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-heading {
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--gray-400);
    transition: var(--transition);
    word-break: break-all;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-divider {
    border-color: rgba(255,255,255,0.08);
    margin: 3rem 0 1.5rem;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

/* =============================================
   BACK TO TOP
   ============================================= */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(217,119,6,0.3);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1000;
}

.btn-back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-back-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(217,119,6,0.4);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero {
        padding: 100px 0 80px;
    }

    .min-vh-hero {
        min-height: auto;
        padding: 40px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-section,
    .services-section,
    .gallery-section,
    .testimonials-section,
    .process-section,
    .contact-section {
        padding: 80px 0;
    }

    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 1rem;
    }

    .about-img-secondary img {
        height: 200px;
    }

    .about-experience-badge {
        position: relative;
        top: auto;
        left: auto;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .navbar-collapse {
        background: var(--white);
        border-radius: var(--radius-md);
        padding: 1rem;
        margin-top: 0.5rem;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--gray-200);
    }

    .gallery-card,
    .gallery-card-large {
        height: 260px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .hero {
        padding: 30px 0 40px;
        min-height: auto;
    }

    .min-vh-hero {
        min-height: auto;
        padding: 0;
    }

    .hero .container,
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    section,
    .site-footer,
    .stats-bar,
    .cta-banner {
        overflow-x: hidden;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }

    .gallery-card {
        height: 220px;
    }

    .gallery-card-large {
        height: 240px;
    }

    .about-section,
    .services-section,
    .gallery-section,
    .testimonials-section,
    .process-section,
    .contact-section {
        padding: 60px 0;
    }

    .hero-trust {
        flex-direction: column;
        gap: 8px !important;
    }

    .btn-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 575px) {
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    .ba-container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }
}
