/* proyectos.css - Diseño moderno para proyectos inmobiliarios */

.josefin-sans-uniquifier {
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* Header ultra moderno */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 5%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(227, 140, 0, 0.12);
    position: sticky;
    top: 20px;
    z-index: 1000;
    margin: 20px 5% 0;
    border-radius: 60px;
    border: 1px solid rgba(227, 140, 0, 0.15);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo {
    max-height: 50px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 6px rgba(227, 140, 0, 0.1));
}

.logo:hover {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 8px 12px rgba(227, 140, 0, 0.25));
}

.navbar {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item-servicios,
.nav-item-galeria,
.nav-item-contactame {
    margin: 0;
    position: relative;
}

.navbar p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.navbar a {
    text-decoration: none;
    color: #1a1a1a;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 600;
    padding: 10px 18px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 30px;
    background: transparent;
    display: inline-block;
}

/* Efecto de fondo dinámico */
.navbar a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #E38C00 0%, #ffb347 100%);
    border-radius: 30px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

.navbar a:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(227, 140, 0, 0.4);
}

.navbar a:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Efecto de onda al hacer click */
.navbar a:active {
    transform: scale(0.95);
}

/* Indicador de página activa con animación */
.navbar a.active {
    color: white;
    background: linear-gradient(135deg, #E38C00 0%, #ffb347 100%);
    box-shadow: 0 10px 25px -5px rgba(227, 140, 0, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 25px -5px rgba(227, 140, 0, 0.5);
    }
    50% {
        box-shadow: 0 15px 35px -5px rgba(227, 140, 0, 0.8);
    }
    100% {
        box-shadow: 0 10px 25px -5px rgba(227, 140, 0, 0.5);
    }
}

/* Efecto de partículas en hover (super moderno) */
.nav-item-servicios:hover::after,
.nav-item-galeria:hover::after,
.nav-item-contactame:hover::after {
    content: '✦';
    position: absolute;
    font-size: 10px;
    color: #E38C00;
    animation: floatParticle 1s ease-out forwards;
    pointer-events: none;
}

@keyframes floatParticle {
    0% {
        opacity: 1;
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translate(20px, -20px) rotate(180deg);
    }
}

/* Línea decorativa animada */
.navbar::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E38C00, transparent);
    transition: width 0.4s ease;
}

.navbar:hover::after {
    width: 60%;
}

/* Responsive con animaciones */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 15px 20px;
        top: 10px;
        margin: 10px 3% 0;
        border-radius: 30px;
    }
    
    .logo {
        margin-bottom: 12px;
        max-height: 45px;
        animation: bounce 2s ease-in-out infinite;
    }
    
    @keyframes bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-3px); }
    }
    
    .navbar {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .navbar p {
        font-size: 14px;
    }
    
    .navbar a {
        padding: 8px 14px;
    }
}

@media (max-width: 480px) {
    .header {
        border-radius: 25px;
        padding: 12px 15px;
    }
    
    .navbar {
        gap: 8px;
    }
    
    .navbar p {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .navbar a {
        padding: 6px 10px;
    }
}

/* Efecto de brillo en los bordes */
.header::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #E38C00, 
        transparent 20%, 
        transparent 80%, 
        #E38C00
    );
    border-radius: 62px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderGlow 3s linear infinite;
}

.header:hover::before {
    opacity: 0.5;
}

@keyframes borderGlow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 300% 0%;
    }
}

/* Efecto de scroll dinámico */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(227, 140, 0, 0.2);
    padding: 8px 5%;
}

/* Partículas flotantes (super moderno) */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

.nav-item-servicios {
    animation: float 4s ease-in-out infinite;
    animation-delay: 0s;
}

.nav-item-galeria {
    animation: float 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.nav-item-contactame {
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
}

/* Estilo para el body (manteniendo tu fondo) */
body {
    background-color: #E8E8E3;
    margin: 0;
    padding: 0;
    font-family: "Josefin Sans", sans-serif;
}

/* Smooth scroll para toda la página */
html {
    scroll-behavior: smooth;
}

/* ===== HEADER ===== */
.proyectos-header {
    padding: 40px 5% 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.title-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.line {
    width: 5px;
    height: 80px;
    background: linear-gradient(180deg, #E38C00 0%, #ffb347 100%);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(227, 140, 0, 0.3);
}

.title-section {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.slogan-section {
    font-size: 24px;
    color: #E38C00;
    font-weight: 500;
    margin: 5px 0 0 0;
}

/* ===== FILTROS ===== */
.filter-tabs {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(227, 140, 0, 0.2);
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #555;
}

.filter-btn:hover {
    background: rgba(227, 140, 0, 0.1);
    border-color: #E38C00;
    color: #E38C00;
}

.filter-btn.active {
    background: linear-gradient(135deg, #E38C00 0%, #ffb347 100%);
    color: white;
    border-color: transparent;
}

/* ===== SECCIÓN DESTACADOS ===== */
.destacados-section {
    padding: 60px 5%;
    background: white;
}

.section-subtitle {
    margin-bottom: 40px;
}

.section-subtitle h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 10px 0 5px;
}

.premium-badge {
    background: linear-gradient(135deg, #E38C00 0%, #ffb347 100%);
    color: white;
    padding: 5px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
}

.destacados-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Featured Banner (igual al que me diste pero mejorado) */
.featured-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(227, 140, 0, 0.1);
    transition: all 0.4s ease;
}

.featured-banner.reverse {
    direction: rtl;
}

.featured-banner.reverse .featured-content {
    direction: ltr;
}

.featured-banner:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(227, 140, 0, 0.15);
    border-color: #E38C00;
}

.featured-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-tag {
    display: inline-block;
    background: rgba(227, 140, 0, 0.1);
    color: #E38C00;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    width: fit-content;
}

.featured-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.featured-desc {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.featured-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.featured-stats span {
    background: white;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 15px;
    color: #555;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-stats i {
    color: #E38C00;
}

.price-tag {
    background: linear-gradient(135deg, #E38C00 0%, #ffb347 100%) !important;
    color: white !important;
    font-weight: 700;
}

.featured-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.featured-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #555;
}

.featured-features i {
    color: #E38C00;
    font-size: 12px;
}

.featured-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.featured-btn {
    background: linear-gradient(135deg, #E38C00 0%, #ffb347 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(227, 140, 0, 0.3);
}

.featured-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(227, 140, 0, 0.4);
}

.contact-btn {
    background: transparent;
    color: #E38C00;
    border: 2px solid #E38C00;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #E38C00;
    color: white;
    transform: translateY(-3px);
}

.featured-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}

.featured-banner:hover .featured-image img {
    transform: scale(1.1);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #E38C00 0%, #ffb347 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ===== PROYECTOS NORMALES ===== */
.normales-section {
    padding: 60px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.proyectos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.proyecto-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(227, 140, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.proyecto-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(227, 140, 0, 0.15);
    border-color: #E38C00;
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}

.proyecto-card:hover .card-image img {
    transform: scale(1.1);
}

.card-status {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #E38C00 0%, #ffb347 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.card-status.status-next {
    background: #3498db;
}

.card-status.status-sold {
    background: #95a5a6;
}

.card-content {
    padding: 25px;
}

.card-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.card-location {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-location i {
    color: #E38C00;
}

.card-details {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.card-details span {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-details i {
    color: #E38C00;
}

.card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(227, 140, 0, 0.1);
    padding-top: 20px;
}

.card-price {
    font-size: 20px;
    font-weight: 700;
    color: #E38C00;
}

.card-price.price-sold {
    color: #95a5a6;
    font-size: 16px;
}

.card-btn {
    background: transparent;
    color: #E38C00;
    border: 2px solid #E38C00;
    padding: 8px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-btn:hover {
    background: #E38C00;
    color: white;
    transform: scale(1.05);
}

/* ===== BOTÓN VER MÁS ===== */
.load-more {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    background: transparent;
    border: 2px solid #E38C00;
    color: #E38C00;
    padding: 15px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #E38C00;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(227, 140, 0, 0.3);
}

/* ===== SECCIÓN PROMOCIONAL ===== */
.promo-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #0a1929 0%, #1a2a3a 100%);
    color: white;
}

.promo-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.promo-content h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.promo-content > p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 50px;
}

.promo-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plan-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 40px 30px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: #E38C00;
    background: rgba(255,255,255,0.1);
}

.plan-card.premium {
    background: rgba(227, 140, 0, 0.1);
    border-color: #E38C00;
    transform: scale(1.05);
}

.plan-card.premium:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #E38C00 0%, #ffb347 100%);
    color: white;
    padding: 5px 25px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.plan-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: #E38C00;
    margin-bottom: 25px;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.plan-card ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
}

.plan-card ul li i {
    color: #E38C00;
}

.plan-btn {
    background: transparent;
    color: white;
    border: 2px solid #E38C00;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.plan-btn:hover {
    background: #E38C00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(227, 140, 0, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .featured-banner {
        grid-template-columns: 1fr;
    }
    
    .featured-banner.reverse {
        direction: ltr;
    }
    
    .featured-image {
        min-height: 300px;
    }
    
    .plan-card.premium {
        transform: scale(1);
    }
    
    .plan-card.premium:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .title-section {
        font-size: 36px;
    }
    
    .slogan-section {
        font-size: 20px;
    }
    
    .featured-content {
        padding: 30px;
    }
    
    .featured-title {
        font-size: 28px;
    }
    
    .featured-stats {
        gap: 10px;
    }
    
    .featured-stats span {
        width: 100%;
    }
    
    .proyectos-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-plans {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .title-section {
        font-size: 28px;
    }
    
    .line {
        height: 60px;
    }
    
    .featured-buttons {
        flex-direction: column;
    }
    
    .featured-btn,
    .contact-btn {
        width: 100%;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    padding: 60px 5% 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #E38C00, #ffb347, #E38C00);
    animation: slide 10s linear infinite;
    background-size: 200% 100%;
}

@keyframes slide {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #E38C00;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #E38C00, #ffb347);
    border-radius: 2px;
}

.footer-col p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-col ul li a:hover {
    color: #E38C00;
    padding-left: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(227, 140, 0, 0.2);
}

.social-links a:hover {
    background: #E38C00;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(227, 140, 0, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    color: #E38C00;
    font-size: 18px;
}

.contact-item p {
    margin: 0;
    color: #aaa;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #aaa;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -12px;
    color: #E38C00;
}

.footer-links a:hover {
    color: #E38C00;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-left {
        order: 2;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-right {
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .who-grid {
        grid-template-columns: 1fr;
    }
    
    .who-content {
        padding-right: 0;
        order: 2;
    }
    
    .who-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-title .highlight {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 15px 20px;
        top: 10px;
        margin: 10px 3% 0;
        border-radius: 30px;
    }
    
    .logo {
        margin-bottom: 12px;
    }
    
    .navbar {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .navbar p {
        font-size: 14px;
    }
    
    .navbar a {
        padding: 8px 14px;
    }
    
    .hero-section {
        margin: 10px 3% 30px;
    }
    
    .hero-content {
        padding: 30px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-title .highlight {
        font-size: 42px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-image-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image-item.large {
        grid-row: auto;
    }
    
    .section {
        padding: 60px 5%;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header {
        border-radius: 25px;
        padding: 12px 15px;
    }
    
    .navbar {
        gap: 8px;
    }
    
    .navbar p {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .navbar a {
        padding: 6px 10px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-title .highlight {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .who-quote {
        font-size: 24px;
    }
}

/* Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');