@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Brand Colors */
    --clr-duramos-red: #DC2626;
    --clr-duramos-red-dark: #991B1B;
    --clr-duramos-red-light: #FEF2F2;
    --clr-duramos-red-glow: rgba(220, 38, 38, 0.25);
    
    --clr-dark: #0B0F19;
    --clr-dark-surface: #111827;
    --clr-dark-border: #1F2937;
    
    --clr-transporte-blue: #0284C7;
    --clr-transporte-blue-glow: rgba(2, 132, 199, 0.25);
    
    --clr-ambiental-green: #059669;
    --clr-ambiental-green-glow: rgba(5, 150, 105, 0.25);
    
    --clr-plis-orange: #D97706;
    --clr-plis-orange-glow: rgba(217, 119, 6, 0.25);
    
    /* Neutrals */
    --clr-bg: #F8FAFC;
    --clr-surface: #FFFFFF;
    --clr-surface-muted: #F1F5F9;
    --clr-border: #E2E8F0;
    
    /* Typography */
    --clr-text-main: #0F172A;
    --clr-text-muted: #475569;
    --clr-text-light: #94A3B8;
    
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    /* Radius & Transitions */
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 9999px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 4px 10px -2px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, 0.15), 0 10px 20px -5px rgba(15, 23, 42, 0.06);
}

/* Reset & Core Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--clr-text-main);
}

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

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

/* Top Announcement Bar */
.top-bar {
    background: var(--clr-dark);
    color: var(--clr-text-light);
    font-size: 0.84rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--clr-dark-border);
    white-space: nowrap;
    overflow: hidden;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-info, .top-bar-social {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    flex-shrink: 0;
}

.top-bar-info span, .top-bar-social span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.top-bar-info i {
    color: var(--clr-duramos-red);
}

.top-bar-social a {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}

.top-bar-social a:hover {
    color: white;
}

/* Navbar - PROMINENT & LARGE LOGO DISPLAY */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition-smooth);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 105px; /* Expanded header height for large crisp logo */
}

.nav-brand {
    display: flex;
    align-items: center;
    padding: 0.4rem 0;
}

.nav-brand img {
    height: 76px; /* PROMINENT LARGE LOGO */
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-fast);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.06));
}

.nav-brand:hover img {
    transform: scale(1.04);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
}

.nav-links a {
    font-weight: 700;
    font-size: 0.94rem;
    color: var(--clr-text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.6rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3.5px;
    background: var(--clr-duramos-red);
    border-radius: var(--radius-pill);
    transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--clr-duramos-red);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    padding: 0.85rem 1.8rem !important;
    background: var(--clr-duramos-red);
    color: white !important;
    border-radius: var(--radius-pill);
    font-size: 0.9rem !important;
    box-shadow: 0 6px 18px var(--clr-duramos-red-glow);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--clr-duramos-red-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--clr-duramos-red-glow);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--clr-dark);
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.45) 0%, rgba(11, 15, 25, 0.88) 100%),
                radial-gradient(circle at center, transparent 0%, rgba(11, 15, 25, 0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 5rem 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 1.4rem;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.hero-badge i {
    color: #F87171;
}

.hero-content h1 {
    font-size: 4.2rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 1.6rem;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
    background: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.35rem;
    font-weight: 400;
    color: #E2E8F0;
    margin-bottom: 2.8rem;
    line-height: 1.75;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 1.4rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.15rem 2.4rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.98rem;
    letter-spacing: 0.03em;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
    box-shadow: 0 10px 25px -5px var(--clr-duramos-red-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px -5px var(--clr-duramos-red-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Stats Counter Bar */
.stats-bar {
    background: var(--clr-dark-surface);
    color: white;
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--clr-dark-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 0.6rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #CBD5E1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.92rem;
    color: var(--clr-text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

/* Section Styling */
.section {
    padding: 7.5rem 0;
    position: relative;
}

.bg-light {
    background-color: var(--clr-surface-muted);
}

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 5rem;
}

.section-header .tag {
    display: inline-block;
    padding: 0.45rem 1.2rem;
    background: var(--clr-duramos-red-light);
    color: var(--clr-duramos-red);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-pill);
    margin-bottom: 1.25rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.35rem;
    color: var(--clr-text-main);
    line-height: 1.18;
}

.section-header p {
    color: var(--clr-text-muted);
    font-size: 1.18rem;
    line-height: 1.75;
}

/* Cards Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.card {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid var(--clr-border);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(220, 38, 38, 0.35);
}

.card-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card-img {
    transform: scale(1.08);
}

.card-tag {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(11, 15, 25, 0.82);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-content {
    padding: 2.4rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.7rem;
    margin-bottom: 1.1rem;
    color: var(--clr-text-main);
}

.card-content p {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
    line-height: 1.65;
    flex-grow: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 800;
    font-size: 0.98rem;
    color: var(--clr-duramos-red);
    transition: var(--transition-fast);
}

.card-link i {
    transition: transform var(--transition-fast);
}

.card-link:hover i {
    transform: translateX(6px);
}

/* Feature Icon Box Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.2rem;
}

.feature-box {
    background: var(--clr-surface);
    padding: 2.8rem 2.2rem;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--clr-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(220, 38, 38, 0.25);
}

.feature-icon {
    width: 68px;
    height: 68px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.6rem;
}

/* Industry Chips */
.industry-chip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
}

.industry-card {
    background: var(--clr-surface);
    border-radius: var(--radius-md);
    padding: 2.2rem 1.8rem;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.industry-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.industry-card ul {
    list-style: none;
}

.industry-card ul li {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 1.25rem;
}

.industry-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--clr-duramos-red);
    font-weight: bold;
}

/* Step Process Component (For Ambiental) */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    background: var(--clr-surface);
    padding: 2.4rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--clr-duramos-red-light);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.step-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--clr-text-main);
}

.step-card p {
    font-size: 0.98rem;
    color: var(--clr-text-muted);
}

/* Contact Page Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-card {
    background: var(--clr-dark);
    color: white;
    padding: 3.8rem 3.2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-info-card h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.4rem;
    margin-bottom: 2.2rem;
}

.contact-item-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-duramos-red);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-form-wrapper {
    background: var(--clr-surface);
    padding: 3.8rem 3.2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--clr-border);
}

.form-group {
    margin-bottom: 1.7rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.94rem;
    color: var(--clr-text-main);
    margin-bottom: 0.55rem;
}

.form-control {
    width: 100%;
    padding: 1.1rem 1.35rem;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--clr-text-main);
    background: var(--clr-bg);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--clr-duramos-red);
    background: var(--clr-surface);
    box-shadow: 0 0 0 4px var(--clr-duramos-red-glow);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

/* Footer - PROMINENT LARGE LOGOS */
.footer {
    background: var(--clr-dark);
    color: var(--clr-text-light);
    padding: 6rem 0 2.5rem;
    border-top: 1px solid var(--clr-dark-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4.5rem;
}

.footer-brand img {
    height: 82px; /* PROMINENT LARGE FOOTER LOGO */
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--clr-text-light);
    font-size: 1rem;
    max-width: 360px;
    line-height: 1.7;
}

.footer-col h4 {
    color: white;
    font-size: 1.18rem;
    margin-bottom: 1.8rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: var(--clr-text-light);
    font-size: 0.98rem;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2.8rem;
    border-top: 1px solid var(--clr-dark-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
    color: var(--clr-text-muted);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 34px;
    right: 34px;
    width: 66px;
    height: 66px;
    background: #25D366;
    color: white;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 16px 35px rgba(37, 211, 102, 0.65);
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Theme Themes */
.theme-transporte .btn-primary { background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%); box-shadow: 0 10px 25px -5px var(--clr-transporte-blue-glow); }
.theme-transporte .btn-primary:hover { background: linear-gradient(135deg, #0369A1 0%, #075985 100%); }
.theme-transporte .nav-links a:hover, .theme-transporte .nav-links a.active { color: var(--clr-transporte-blue); }
.theme-transporte .nav-links a::after { background: var(--clr-transporte-blue); }

.theme-ambiental .btn-primary { background: linear-gradient(135deg, #10B981 0%, #059669 100%); box-shadow: 0 10px 25px -5px var(--clr-ambiental-green-glow); }
.theme-ambiental .btn-primary:hover { background: linear-gradient(135deg, #059669 0%, #047857 100%); }
.theme-ambiental .nav-links a:hover, .theme-ambiental .nav-links a.active { color: var(--clr-ambiental-green); }
.theme-ambiental .nav-links a::after { background: var(--clr-ambiental-green); }

.theme-plis .btn-primary { background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%); box-shadow: 0 10px 25px -5px var(--clr-plis-orange-glow); }
.theme-plis .btn-primary:hover { background: linear-gradient(135deg, #D97706 0%, #B45309 100%); }
.theme-plis .nav-links a:hover, .theme-plis .nav-links a.active { color: var(--clr-plis-orange); }
.theme-plis .nav-links a::after { background: var(--clr-plis-orange); }

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .top-bar-social { display: none; }
    .top-bar .container { justify-content: center; }
}

@media (max-width: 1024px) {
    .navbar .container { height: 95px; }
    .nav-brand img { height: 64px; }
    .hero-content h1 { font-size: 3.4rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 1.5rem; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .navbar .container { height: 85px; }
    .nav-brand img { height: 56px; }
    
    .nav-links {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition-smooth);
        padding: 2rem;
    }

    .nav-links.active { left: 0; }
    .nav-toggle { display: block; }
    
    .hero-content h1 { font-size: 2.6rem; }
    .hero-content p { font-size: 1.15rem; }
    .section-header h2 { font-size: 2.3rem; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* FAQ Accordion Styling */
.faq-container {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: var(--clr-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-question {
    padding: 1.5rem 2rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question i {
    color: var(--clr-duramos-red);
    transition: transform var(--transition-fast);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding: 0 2rem;
    color: var(--clr-text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

.faq-item.active {
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.8rem;
}

/* Lightbox Modal & Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    height: 220px;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    background: rgba(11, 15, 25, 0.5);
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.gallery-item:hover::after {
    opacity: 1;
}

.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(11, 15, 25, 0.92);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 2rem;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    color: white;
    font-size: 2.8rem;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.lightbox-close:hover {
    transform: scale(1.2);
}

