/* Josefin Sans Font */
.josefin-sans-uniquifier {
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* Base Styles */
body {
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    font-family: "Josefin Sans", sans-serif;
    color: #1e1e1e;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: #E38C00;
    color: white;
}

/* ===== HEADER STYLES (Modern Navbar) ===== */
.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;
}

.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);
}

.navbar a:active {
    transform: scale(0.95);
}

.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);
    }
}

.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);
    }
}

.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%;
}

.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%;
    }
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(227, 140, 0, 0.2);
    padding: 8px 5%;
}

@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;
}

/* ===== HERO SECTION - NUEVO DISEÑO MODERNO ===== */
.hero-section {
    position: relative;
    min-height: 85vh;
    margin: 20px 5% 60px;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a1929 0%, #1a2a3a 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    background-image: url("{{ url_for('static', filename='images/pattern.png') }}");
    background-size: cover;
    animation: slowZoom 30s ease-in-out infinite;
}

@keyframes slowZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(227, 140, 0, 0.2);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border: 1px solid rgba(227, 140, 0, 0.3);
    color: #ffb347;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: #E38C00;
    display: block;
    font-size: 72px;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #E38C00;
    margin-bottom: 5px;
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, #E38C00 0%, #ffb347 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(227, 140, 0, 0.3);
}

.hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(227, 140, 0, 0.4);
}

.hero-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-cta .btn-secondary:hover {
    border-color: #E38C00;
    background: rgba(227, 140, 0, 0.1);
    transform: translateY(-3px);
}

.hero-right {
    position: relative;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hero-image-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}

.hero-image-item:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(227, 140, 0, 0.3);
}

.hero-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}

.hero-image-item:hover img {
    transform: scale(1.2);
}

.hero-image-item.large {
    grid-row: span 2;
    aspect-ratio: auto;
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.hero-image-item:hover .hero-image-overlay {
    transform: translateY(0);
}

.hero-image-overlay h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.hero-image-overlay p {
    margin: 5px 0 0;
    font-size: 14px;
    opacity: 0.8;
}

/* ===== SECTION COMMON STYLES ===== */
.section {
    padding: 80px 5%;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    color: #E38C00;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: inline-block;
    background: rgba(227, 140, 0, 0.1);
    padding: 5px 20px;
    border-radius: 40px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* ===== WHO WE ARE SECTION ===== */
.who-section {
    background: white;
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.who-content {
    padding-right: 40px;
}

.who-quote {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 30px;
    position: relative;
}

.who-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 80px;
    color: #E38C00;
    opacity: 0.3;
    font-family: serif;
}

.who-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.who-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.who-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.who-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(227, 140, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E38C00;
    font-size: 20px;
}

.who-feature-text {
    font-weight: 600;
    color: #1a1a1a;
}

.who-image {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.who-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.who-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid #E38C00;
    border-radius: 30px;
    z-index: 2;
    pointer-events: none;
}

/* ===== MISSION/VISION SECTION ===== */
.mv-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mv-card {
    background: white;
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(227, 140, 0, 0.1);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(227, 140, 0, 0.1);
    border-color: #E38C00;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E38C00 0%, #ffb347 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: white;
    font-size: 40px;
}

.mv-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.mv-card p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(227, 140, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #E38C00, #ffb347);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(227, 140, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(227, 140, 0, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 30px;
    color: #E38C00;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #E38C00 0%, #ffb347 100%);
    color: white;
    transform: rotate(5deg) scale(1.1);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-tag {
    display: inline-block;
    background: rgba(227, 140, 0, 0.1);
    color: #E38C00;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

/* ===== SUCCESS INDICATORS SECTION ===== */
.success-section {
    background: linear-gradient(135deg, #0a1929 0%, #1a2a3a 100%);
    color: white;
}

.success-section .section-title {
    color: white;
}

.success-section .section-description {
    color: rgba(255,255,255,0.8);
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.success-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 40px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
}

.success-card:hover {
    transform: translateY(-10px);
    background: rgba(227, 140, 0, 0.1);
    border-color: #E38C00;
}

.success-number {
    font-size: 64px;
    font-weight: 800;
    color: #E38C00;
    margin-bottom: 15px;
    line-height: 1;
}

.success-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.success-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* ===== TRANSPARENCY SECTION ===== */
.transparency-section {
    background: white;
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.transparency-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(227, 140, 0, 0.1);
    transition: all 0.4s ease;
}

.transparency-card:hover {
    transform: translateY(-5px);
    border-color: #E38C00;
    box-shadow: 0 20px 40px rgba(227, 140, 0, 0.1);
}

.transparency-icon {
    width: 80px;
    height: 80px;
    background: #E38C00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.transparency-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.transparency-card p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ===== AFFILIATES SECTION ===== */
.affiliates-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.affiliates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.affiliate-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(227, 140, 0, 0.1);
    transition: all 0.4s ease;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.affiliate-card:hover {
    transform: scale(1.05);
    border-color: #E38C00;
    box-shadow: 0 20px 40px rgba(227, 140, 0, 0.1);
}

.affiliate-card span {
    font-size: 24px;
    font-weight: 700;
    color: rgba(227, 140, 0, 0.3);
    letter-spacing: 2px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #E38C00 0%, #ffb347 100%);
    padding: 80px 5%;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: #E38C00;
    border: none;
    padding: 18px 60px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* ===== 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');