/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: inherit;
}
:root {
    --red-900: #7f1d1d;
    --red-800: #991b1b;
    --red-700: #b91c1c;
    --red-500: #ef4444;
    --red-300: #fca5a5;
    --red-200: #fecaca;
    --gray-950: #030712;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--gray-900);
    background: var(--gray-50);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    height: 80px;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.header-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo-section {
    display: flex;
    align-items: center;
}

.logo-section a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: transform 0.3s;
}

.logo-section:hover .logo-image {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .logo-image {
        height: 60px;
    }
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-button {
    position: relative;
    background: none;
    border: none;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    font-weight: bold;
    color: var(--gray-900);
    cursor: pointer;
    transition: color 0.3s;
    padding: 0.5rem 0;
    text-decoration: none;
    display: block;
}

.nav-button:hover {
    color: var(--red-900);
}

.nav-button.active {
    color: var(--red-900);
}

.nav-indicator {
    position: absolute;
    bottom: -8px;
    left: 0;
    height: 3px;
    background: var(--red-900);
    border-radius: 9999px;
    width: 0;
    transition: width 0.3s;
}

.nav-button.active .nav-indicator {
    width: 100%;
}

.nav-button:hover .nav-indicator {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .header-actions {
        display: flex;
    }
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-900);
    transition: color 0.3s;
}

.icon-phone {
    color: var(--red-900);
    width: 16px;
    height: 16px;
}

.phone-info span {
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.05em;
}

.btn-portal {
    background: var(--red-900);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 2px;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 10px;
    cursor: pointer;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.btn-portal:hover {
    background: var(--red-800);
    transform: translateY(-2px);
}

.btn-portal:active {
    transform: scale(0.95);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--gray-900);
    cursor: pointer;
    transition: color 0.3s;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 40;
    padding: 2rem;
    display: none;
    flex-direction: column;
    gap: 2rem;
    overflow-y: auto;
    animation: slideInFromRight 0.3s ease-out;
}

.mobile-menu.active {
    display: flex;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.mobile-nav-button {
    font-size: 1.875rem;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 1rem;
    text-align: left;
    width: 100%;
    background: none;
    cursor: pointer;
    color: var(--gray-900);
    transition: color 0.3s;
    text-decoration: none;
    display: block;
}

.mobile-nav-button:hover {
    color: var(--red-900);
}

.mobile-menu-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-900);
    font-weight: bold;
}

.mobile-phone svg {
    color: var(--red-900);
}

.btn-portal.mobile {
    width: 100%;
    padding: 1.25rem;
    font-size: 14px;
}

/* Main Content */
main {
    padding-top: 80px;
}

.page {
    display: none;
}

.page.active {
    display: block;
    animation: fadeIn 0.7s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 80px);
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 30s infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4), transparent);
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 20;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-text {
    max-width: 48rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    background: rgba(127, 29, 29, 0.4);
    border: 1px solid rgba(127, 29, 29, 0.5);
    color: #fecaca;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pulse-dot {
    display: flex;
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: var(--red-500);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: 3.75rem;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 0.95;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 6rem;
    }
}

.hero-title .text-red {
    color: var(--red-700);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-200);
    margin-bottom: 3rem;
    line-height: 1.75;
    font-weight: 300;
    text-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    max-width: 42rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: var(--red-900);
    color: white;
    border: none;
    border-radius: 2px;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--red-800);
    transform: translateY(-4px);
}

.btn-primary svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.play-icon {
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    transition: transform 0.3s;
}

.btn-secondary:hover .play-icon {
    transform: scale(1.1);
}

.play-icon svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.hero-eagle {
    position: absolute;
    bottom: -80px;
    right: -80px;
    opacity: 0.07;
    pointer-events: none;
    display: none;
    transform: rotate(12deg);
}

@media (min-width: 1024px) {
    .hero-eagle {
        display: block;
    }
}

.hero-eagle svg {
    width: 800px;
    height: auto;
    fill: white;
}

/* Tracking Section */
.tracking-section {
    position: relative;
    z-index: 10;
    margin-top: -64px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.tracking-widget {
    background: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .tracking-widget {
        flex-direction: row;
    }
}

.tracking-tabs {
    background: var(--gray-900);
    display: flex;
    flex-direction: row;
    overflow-x: auto;
}

@media (min-width: 768px) {
    .tracking-tabs {
        flex-direction: column;
        width: 256px;
    }
}

.tracking-tab {
    flex: 1;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.tracking-tab:hover {
    color: white;
    background: var(--gray-800);
}

.tracking-tab.active {
    background: var(--red-900);
    color: white;
}

.tracking-tab svg {
    width: 20px;
    height: 20px;
}

.tracking-tab span {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: bold;
}

.tracking-content {
    flex: 1;
    padding: 2rem 2.5rem;
}

.tab-panel {
    display: none;
    animation: fadeInSlide 0.3s ease-out;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-16px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tab-panel h3 {
    font-size: 1.25rem;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.tab-panel p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.track-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .track-form {
        flex-direction: row;
    }
}

.input-with-icon {
    position: relative;
    flex: 1;
}

.input-with-icon svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    width: 20px;
    height: 20px;
}

.input-with-icon input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: var(--gray-50);
    border: 2px solid var(--gray-100);
    border-radius: 4px;
    transition: all 0.3s;
    outline: none;
}

.input-with-icon input:focus {
    border-color: var(--red-900);
}

.btn-track {
    padding: 1rem 2.5rem;
    background: var(--red-900);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.btn-track:hover {
    background: var(--red-800);
}

.btn-track:active {
    transform: scale(0.95);
}

/* Quote Form */
.quote-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .quote-form {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .quote-form {
        grid-template-columns: repeat(4, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--gray-500);
}

.form-group select {
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border: 2px solid var(--gray-100);
    border-radius: 4px;
    outline: none;
    transition: all 0.3s;
    appearance: none;
}

.form-group select:focus {
    border-color: var(--red-900);
}

.span-2 {
    grid-column: span 1;
}

.span-3 {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .span-2 {
        grid-column: span 2;
    }
    .span-3 {
        grid-column: span 3;
    }
}

.btn-continue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--red-900);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-continue:hover {
    background: var(--red-800);
}

.btn-continue svg {
    width: 18px;
    height: 18px;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--gray-50);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--red-900);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 14px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--red-900);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-title .text-gray {
    color: var(--gray-400);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--red-900);
    margin: 1.5rem auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    position: relative;
    background: white;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.5s;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 192px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*filter: grayscale(100%);*/
    transition: all 0.7s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.3s;
}

.service-card:hover .service-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.service-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    transition: transform 0.5s;
}

.service-card:hover .service-icon {
    transform: translate(-50%, -50%) scale(1.25);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h4 {
    font-size: 1.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--red-900);
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.service-card:hover .service-content h4 {
    color: var(--red-900);
}

.service-content p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.75;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s;
}

.service-card:hover .service-link {
    color: var(--red-900);
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--red-900);
    transition: width 0.5s;
}

.service-card:hover::after {
    width: 100%;
}

/* Consultation Section */
.consultation-section {
    padding: 6rem 0;
    background: var(--red-900);
    color: white;
    position: relative;
    overflow: hidden;
}

.consultation-watermark {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: -80px;
    margin-top: -80px;
    opacity: 0.05;
    pointer-events: none;
}

.consultation-watermark svg {
    width: 800px;
    height: auto;
    fill: white;
}

.consultation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .consultation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.consultation-subtitle {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 1.5rem;
    color: var(--red-200);
}

.consultation-title {
    font-size: 2.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 2rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .consultation-title {
        font-size: 3rem;
    }
}

.text-light-red {
    color: var(--red-300);
}

.consultation-text {
    font-size: 1.25rem;
    color: rgba(254, 202, 202, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .stats-grid {
        flex-direction: row;
    }
}

.stat-card {
    background: rgba(153, 27, 27, 0.5);
    padding: 1.5rem;
    border-radius: 2px;
    border: 1px solid rgba(185, 28, 28, 0.5);
}

.stat-value {
    font-size: 1.875rem;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--red-200);
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    padding: 2.5rem 3rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    color: var(--gray-800);
}

.quote-icon {
    color: var(--red-900);
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.testimonial-author img {
    width: 64px;
    height: 64px;
    border-radius: 9999px;
    filter: grayscale(100%);
}

.author-name {
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-900);
}

.author-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray-500);
}

.btn-consultation {
    width: 100%;
    padding: 1.25rem;
    background: var(--red-900);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.btn-consultation:hover {
    background: var(--red-800);
}

/* Efficiency Section */
.efficiency-section {
    padding: 5rem 0;
    background: white;
}

.efficiency-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .efficiency-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.efficiency-title {
    font-size: 1.875rem;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--red-900);
    padding-left: 1rem;
}

.efficiency-text {
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.efficiency-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.efficiency-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 9999px;
    background: var(--red-900);
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon svg {
    width: 20px;
    height: 15px;
    fill: white;
}

.efficiency-list li span:last-child {
    color: var(--gray-700);
    font-weight: 500;
}

.efficiency-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.7s;
}

.efficiency-image:hover {
    transform: scale(1.05);
}

.efficiency-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.image-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: white;
}

.caption-subtitle {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--red-300);
    margin-bottom: 0.5rem;
}

.caption-title {
    font-size: 1.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
}

/* Footer */
.footer {
    background: var(--gray-950);
    color: white;
    padding: 6rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo-image {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
}

.footer-logo:hover .footer-logo-image {
    transform: scale(1.05);
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.75;
    font-size: 14px;
    font-weight: 300;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    border: 1px solid var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.3s;
}

.social-links a:hover {
    color: white;
    background: var(--red-900);
    border-color: var(--red-900);
}

.social-links svg {
    width: 16px;
    height: 16px;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: bold;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(127, 29, 29, 0.3);
    padding-bottom: 0.75rem;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-column ul li a {
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-column ul li a svg {
    width: 14px;
    height: 14px;
    color: var(--red-900);
    opacity: 0;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover svg {
    opacity: 1;
}

.expertise-list li {
    color: var(--gray-400);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: color 0.3s;
}

.expertise-list li:hover {
    color: white;
}

.contact-list {
    gap: 1.5rem !important;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-list li svg {
    color: var(--red-900);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 4px;
}

.contact-list li span {
    color: var(--gray-400);
    font-size: 12px;
    line-height: 1.75;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid var(--gray-900);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    font-size: 10px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: bold;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}



/* Utility Classes */
.text-red {
    color: var(--red-700);
}

.text-gray {
    color: var(--gray-400);
}

.text-light-red {
    color: var(--red-300);
}

/* Language Dropdown*/
.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-selected {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 12px;
  background: white;
  border-radius: 4px;
  transition: all 0.3s;
}

.lang-selected:hover {
  border-color: var(--red-900);
  background: var(--gray-50);
}

.lang-flag {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
}

.arrow {
  /* width: 15px;
  height: 15px; */
  transition: transform 0.3s;
}

.lang-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 120px;
}

.lang-options.show {
  display: block;
  animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lang-option {
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.lang-option:hover {
  background: var(--gray-100);
}

.lang-option:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.lang-option:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lang-option img {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .lang-dropdown {
    position: static;
  }
  
  .lang-options {
    right: 0;
    left: auto;
  }
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 2.5rem;
}

/* Prevent text overflow issues */
.compliance-grid .stat-card {
    min-height: 120px; /* keeps visual balance */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
    .compliance-grid {
        grid-template-columns: 1fr;
    }
}

.efficiency-list span {
    display: inline-block;
    max-width: 90%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.right-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

/* IMPORTANT */
@media (max-width: 768px) {

    .desktop-nav {
        display: none;
    }

    .right-section {
        gap: 12px;
    }

    .phone-info span {
        display: none; /* hide number text on mobile */
    }

    .phone-info {
        display: flex;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* MOBILE */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    h1 {
        font-size: 2rem !important;
    }

    h4 {
        font-size: 1.5rem !important;
    }

    section {
        padding: 3rem 0 !important;
    }
}

@media (max-width: 768px) {

    section {
        padding: 3rem 0 !important;
    }

    .container {
        padding: 0 20px;
    }
}