/* Reset y Variables Premium */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #1a4d2e;
    --secondary-green: #2d5a3d;
    --accent-green: #4f7942;
    --light-green: #95c986;
    --dark: #0f1419;
    --dark-alt: #1a1f26;
    --gray: #6b7280;
    --light-gray: #e5e7eb;
    --white: #ffffff;
    --cream: #fafaf9;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar Premium */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition);
}

.brand-initial {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    transition: var(--transition);
}

.nav-brand a:hover .brand-initial {
    transform: rotate(10deg) scale(1.05);
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: var(--transition);
}

.nav-menu a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    padding: 0.6rem 1.5rem !important;
    border-radius: 25px;
    color: var(--white) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 121, 66, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Ultra Premium */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 50%, var(--primary-green) 100%);
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(79, 121, 66, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(45, 90, 61, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 1;
    color: var(--white);
    max-width: 900px;
    padding: 0 2rem;
}

.hero-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--light-green);
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-greeting {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.hero-name {
    display: block;
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--white), var(--light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(79, 121, 66, 0.3);
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(79, 121, 66, 0.5);
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary-hero:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--light-green);
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--light-green), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* Stats Section */
.stats-section {
    background: var(--cream);
    padding: 4rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

/* Section Headers Modern */
.section-header {
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--accent-green);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.section-subtitle-light {
    color: var(--light-green);
}

.section-title-modern {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-title-modern-light {
    color: var(--white);
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section Premium */
.about {
    padding: 8rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image-frame:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(26, 77, 46, 0.8), transparent);
    opacity: 0;
    transition: var(--transition);
}

.about-image-frame:hover .image-overlay {
    opacity: 1;
}

.about-text-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.about-qualities {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--dark);
    font-weight: 500;
}

.quality-item i {
    color: var(--accent-green);
    font-size: 1.25rem;
}

.btn-primary-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Projects Section Premium */
.projects {
    padding: 8rem 0;
    background: var(--cream);
}

.projects-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.project-card-modern {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.project-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.project-image-modern {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.project-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card-modern:hover .project-image-modern img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.9), rgba(45, 90, 61, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card-modern:hover .project-overlay {
    opacity: 1;
}

.project-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transform: scale(0);
    transition: var(--transition);
}

.project-card-modern:hover .project-icon {
    transform: scale(1);
}

.project-content-modern {
    padding: 2rem;
}

.project-content-modern h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.project-content-modern p {
    color: var(--gray);
    line-height: 1.7;
}

.btn-outline-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--dark);
    text-decoration: none;
    border: 2px solid var(--primary-green);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-modern:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Gallery Carousel Premium */
.gallery-section {
    padding: 8rem 0;
    background: var(--white);
}

.carousel-modern {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
    scroll-behavior: smooth;
}

.carousel-wrapper::-webkit-scrollbar {
    display: none;
}

/* Indicadores de scroll m¨®vil */
.scroll-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-indicator.left {
    left: 10px;
}

.scroll-indicator.right {
    right: 10px;
}

.scroll-indicator.show {
    display: flex;
    opacity: 0.8;
}

.scroll-indicator.left.show {
    animation: pulseLeft 1.5s infinite;
}

.scroll-indicator.right.show {
    animation: pulseRight 1.5s infinite;
}

@keyframes pulseLeft {
    0%, 100% { opacity: 0.6; transform: translateY(-50%) translateX(0); }
    50% { opacity: 1; transform: translateY(-50%) translateX(-5px); }
}

@keyframes pulseRight {
    0%, 100% { opacity: 0.6; transform: translateY(-50%) translateX(0); }
    50% { opacity: 1; transform: translateY(-50%) translateX(5px); }
}

.carousel-track {
    display: flex;
}

.carousel-item-modern {
    min-width: 100%;
    width: 100%;
    height: 600px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    flex-shrink: 0;
}

.carousel-item-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-btn-modern {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    color: var(--primary-green);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-btn-modern:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-modern.prev {
    left: -30px;
}

.carousel-btn-modern.next {
    right: -30px;
}

/* Contact Section Premium */
.contact {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-green) 100%);
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-method i {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--light-green);
    flex-shrink: 0;
}

.method-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-value {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
}

a[href^="tel"] {
    color: var(--white) !important;
    text-decoration: none !important;
}

.contact-form-wrapper {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 3rem;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-modern label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.form-group-modern input,
.form-group-modern textarea {
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    outline: none;
    background: rgba(255,255,255,0.15);
    border-color: var(--light-green);
}

.btn-submit-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--light-green), var(--accent-green));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(149, 201, 134, 0.3);
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(149, 201, 134, 0.5);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(149, 201, 134, 0.2);
    border: 1px solid var(--light-green);
    color: var(--white);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: var(--white);
    display: block;
}

/* Social & Footer */
.social-footer {
    padding: 5rem 0;
    background: var(--dark);
}

.social-content {
    text-align: center;
}

.social-content h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.social-links-modern {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon-modern {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.1);
}

.social-icon-modern:hover {
    transform: translateY(-5px);
    border-color: transparent;
}

.social-icon-modern.facebook:hover {
    background: #1877f2;
}

.social-icon-modern.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon-modern.linkedin:hover {
    background: #0077b5;
}

.social-icon-modern.twitter:hover {
    background: #1da1f2;
}

.footer-modern {
    background: var(--dark-alt);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--light-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-signature {
    padding: 1rem 0;
}

.signature-logo {
    height: 15px;
    width: auto;
}


/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utilities */
.text-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .carousel-btn-modern.prev {
        left: 10px;
    }
    
    .carousel-btn-modern.next {
        right: 10px;
    }
    
    .hero-name {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(15, 20, 25, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 8rem 0 4rem;
    }

    .hero-label {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }

    .hero-greeting {
        font-size: 1rem;
    }

    .hero-name {
        font-size: 2.2rem;
        letter-spacing: 0;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        justify-content: center;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .carousel-item-modern {
        height: 300px;
    }

    .section-title-modern {
        font-size: 1.8rem;
    }

    .about-text-lead {
        font-size: 1.1rem;
    }
} 

@media (max-width: 480px) {
    .hero-label {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .hero-greeting {
        font-size: 1.2rem;
    }

    .hero-name {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-scroll {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .projects-grid-modern {
        grid-template-columns: 1fr;
    }

    .carousel-item-modern {
        height: 400px;
    }

    .carousel-btn-modern {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title-modern {
        font-size: 2.2rem;
    }

    .about,
    .projects,
    .gallery-section,
    .contact {
        padding: 5rem 0;
    }
}