/* --- VARIABLES & RESET --- */
:root {
    --primary: #D32F2F;      /* Rojo Corporativo */
    --primary-dark: #b71c1c; /* Rojo Oscuro */
    
    /* Paleta Base (Colores fijos) */
    --dark: #1a1a1a;         /* Negro Suave */
    --gray: #f4f6f8;         /* Fondo Gris Muy Claro */
    --white: #ffffff;
    --text: #4a4a4a;
    
    /* Variables Semánticas (Estas cambiarán en modo oscuro) */
    --bg-body: var(--white);
    --bg-card: var(--white);
    --bg-secondary: var(--gray);
    --text-main: #4a4a4a;
    --text-muted: #666666;
    --border-color: rgba(0, 0, 0, 0.05);
    
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- DEFINICIÓN MODO OSCURO --- */
[data-theme="dark"] {
    --bg-body: #121212;       /* Fondo casi negro */
    --bg-card: #1e1e1e;       /* Tarjetas gris oscuro */
    --bg-secondary: #252525;  /* Secciones secundarias */
    --text-main: #e0e0e0;     /* Texto claro */
    --text-muted: #a0a0a0;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Sombra más fuerte en oscuro */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    background-color: var(--bg-body);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    color: inherit; /* Heredar para que cambie con --text-main */
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- UTILIDADES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* --- BOTONES --- */
.btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--primary);
    color: var(--white);
    color: #ffffff; /* El texto del botón siempre blanco */
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--white);
    background-color: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-outline:hover {
    background-color: var(--white);
    background-color: #ffffff;
    color: var(--dark);
}

/* --- TOPBAR --- */
.topbar {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: var(--transition);
    color: #ccc;
}

.topbar-link:hover {
    color: var(--white);
}

.topbar-link i {
    color: var(--primary);
    font-size: 1rem;
}

.topbar-social {
    display: flex;
    gap: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 20px;
    margin-left: 10px;
}

.social-icon-sm {
    color: #fff;
    transition: 0.3s;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.social-icon-sm:hover {
    color: var(--primary);
    transform: scale(1.2);
}

/* --- HEADER & NAV --- */
header {
    background: var(--white);
    background: var(--bg-card);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo span {
    font-family: 'Montserrat';
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark);
    color: var(--text-main);
    line-height: 1;
}

.logo span span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: var(--dark);
    color: var(--text-main);
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
}

.mobile-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--dark);
    color: var(--text-main);
    cursor: pointer;
}

/* --- HERO SLIDER --- */
.hero-slider {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background: #000;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    opacity: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    pointer-events: auto;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* --- SECCIÓN PERSIANA (HOME) --- */
.services-section {
    background-color: var(--gray);
    background-color: var(--bg-secondary);
    padding: 100px 0;
    overflow: hidden;
}

.shutter-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 600px;
    gap: 15px;
    margin-top: 50px;
}

.shutter-panel {
    position: relative;
    background: var(--white);
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    flex: 1;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.shutter-panel.active {
    flex: 6;
    cursor: default;
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.panel-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--white);
    background: var(--bg-card);
    height: 100%;
    width: 100%;
    transition: 0.4s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.shutter-panel.active .panel-header {
    height: auto;
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    padding: 20px 40px;
    border-bottom: 1px solid #f0f0f0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.panel-header i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: 0.3s;
    background: rgba(211, 47, 47, 0.05);
    padding: 15px;
    border-radius: 50%;
}

.shutter-panel.active .panel-header i {
    font-size: 1.8rem;
    margin-bottom: 0;
    margin-right: 15px;
    background: transparent;
    padding: 0;
}

.panel-header h3 {
    font-size: 1rem;
    color: var(--dark);
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin: 0;
    transition: 0.3s;
    writing-mode: horizontal-tb;
    transform: none;
}

.shutter-panel.active .panel-header h3 {
    font-size: 1.4rem;
    text-align: left;
}

.panel-content {
    flex: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.4s ease;
    padding: 0 40px 40px 40px;
    overflow-y: auto;
}

.shutter-panel.active .panel-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    height: 100%;
    align-items: start;
}

.text-col h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--dark);
    color: var(--text-main);
    font-weight: 600;
}

.feature-list i {
    color: var(--primary);
    font-size: 0.9rem;
}

.visual-col {
    display: grid;
    grid-template-rows: 2fr 1fr;
    gap: 15px;
    height: 100%;
    max-height: 400px;
}

.visual-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.visual-col img:hover {
    transform: scale(1.02);
}

/* --- PÁGINAS INTERNAS HEADER --- */
.page-header {
    background: var(--dark);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    clip-path: ellipse(150% 100% at 50% 100%);
    margin-bottom: 60px;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 3rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* --- ESTILOS SECTORES (2x4) --- */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding-bottom: 60px;
    align-items: start;
}

.sector-card {
    background: var(--white);
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.sector-card:not(.active):hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.sector-card.active {
    box-shadow: 0 25px 60px rgba(211, 47, 47, 0.15);
    border-color: var(--primary);
    z-index: 5;
}

.sector-img-wrap {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.sector-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.sector-card:hover .sector-img-wrap img,
.sector-card.active .sector-img-wrap img {
    transform: scale(1.1);
}

.sector-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0.6;
    transition: 0.3s;
}

.sector-toggle-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: var(--white);
    background: var(--bg-card);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    z-index: 10;
    font-size: 1.2rem;
}

.sector-card.active .sector-toggle-btn {
    background: var(--primary);
    color: var(--white);
    transform: rotate(180deg);
}

.sector-info {
    padding: 30px 40px;
    position: relative;
    background: var(--white);
    background: var(--bg-card);
    z-index: 2;
    flex-grow: 1;
}

.sector-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
    color: var(--text-main);
}

.sector-desc-short {
    font-size: 1rem;
    color: #666;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.7;
}

.sector-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease;
    opacity: 0;
    background: #fafafa;
    border-top: 1px solid #eee;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.sector-card.active .sector-details {
    opacity: 1;
}

.details-content {
    padding: 30px 40px;
}

.sector-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sector-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #555;
    color: var(--text-muted);
}

.sector-list li i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 0.9rem;
}

.cta-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 2px solid var(--primary);
    transition: 0.2s;
}

/* --- SECTOR SLIDER --- */
.slider-track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.slider-track img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.sector-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.sector-card.active .sector-img-wrap:hover .sector-nav {
    opacity: 1;
    pointer-events: auto;
}

.sector-nav:hover {
    background: var(--primary);
    color: white;
}

.sector-nav.prev {
    left: 15px;
}

.sector-nav.next {
    right: 15px;
}

/* --- ESTILOS NOSOTROS (CORREGIDO Y REFORZADO) --- */
.minimal-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.minimal-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    letter-spacing: 5px;
    color: var(--dark);
    color: var(--text-main);
}

.minimal-hero h2 {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.minimal-hero p {
    font-size: 1.1rem;
    color: #555;
    color: var(--text-muted);
    line-height: 1.8;
}

.visual-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    margin-bottom: 100px;
}

/* Imagen Principal Grande */
.story-block-main {
    position: relative;
    height: 500px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-block-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.2, 1, 0.2, 1);
}

.story-block-main:hover img {
    transform: scale(1.05);
}

/* Filas de Texto + Imagen */
.story-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
    color: var(--text-main);
    border-left: 5px solid var(--primary);
    padding-left: 20px;
}

.story-text p {
    font-size: 1rem;
    color: #555;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.8;
}

.story-img-tall {
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.story-img-tall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.story-img-tall:hover img {
    transform: scale(1.05);
}

/* --- CONTACTO --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-box {
    background: var(--gray);
    background: var(--bg-secondary);
    padding: 50px;
    border-radius: 20px;
}

.map-box {
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #eee;
    border: 1px solid var(--border-color);
}

.info-item {
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-item div {
    word-break: break-word;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    background: white;
    background: var(--bg-card);
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 54px;
    text-align: center;
}

.contact-form {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    border-top: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-main);
    border-radius: 8px;
    font-family: inherit;
    transition: 0.3s;
}

.form-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: white;
    background: var(--bg-card);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.social-btn.facebook:hover {
    background: #1877F2;
}

/* --- FOOTER & ANIMACIONES --- */
footer {
    background: var(--dark);
    color: #bbb;
    padding: 80px 0 30px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-links li {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.9rem;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    .contact-info-box {
        padding: 30px 20px;
    }

    .info-item {
        align-items: flex-start;
        gap: 15px;
    }

    .info-item i {
        min-width: 45px;
        padding: 12px;
        font-size: 1.2rem;
    }
}
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: 0.3s;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    padding: 12px 18px;
    background: var(--dark);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    display: none;
    z-index: 99;
    transition: 0.3s;
    border: none;
}

/* --- RESPONSIVE FINAL --- */
@media (max-width: 992px) {
    .contact-grid,
    .about-top-grid,
    .story-row,
    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-box {
        height: 400px;
    }

    .story-row.reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .story-img-tall {
        height: 400px;
    }

    .minimal-hero h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .shutter-container {
        flex-direction: column;
        height: auto;
    }

    .shutter-panel {
        width: 100%;
        height: 100px;
        flex: none;
    }

    .shutter-panel.active {
        height: auto;
        flex: none;
    }

    .panel-header {
        flex-direction: row;
        justify-content: flex-start;
        padding: 0 30px;
    }

    .panel-header h3 {
        font-size: 1.2rem;
        text-align: left;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .visual-col {
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .topbar-content {
        flex-direction: column;
        text-align: center;
    }

    .topbar-left,
    .topbar-right {
        justify-content: center;
    }

    .topbar-social {
        margin-left: 0;
        border-left: none;
        padding-left: 0;
        margin-top: 5px;
    }

    .mobile-btn {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        background: var(--bg-card);
        flex-direction: column;
        padding: 30px;
        display: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #eee;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-slider {
        clip-path: none;
        height: 75vh;
    }

    .scroll-top {
        right: 20px;
        bottom: 100px;
    }
}
