/* ===== CSS VARIABLES ===== */
:root {
    /* Core Colors */
    --primary-red: #C73E3A;
    --dark-red: #A32F2C;
    --black: #0A0A0A;
    --off-black: #141414;
    --white: #FFFFFF;
    --off-white: #F5F5F5;
    --light-gray: #A0A0A0;
    --border-gray: rgba(255, 255, 255, 0.1);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    --gradient-dark: linear-gradient(135deg, var(--black), #2A2A2A);
    --gradient-overlay: linear-gradient(180deg, rgba(10, 10, 20, 0.95), rgba(10, 10, 20, 0.7));

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Orbitron', 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(199, 62, 58, 0.4);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}


/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: var(--black);
    color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(199, 62, 58, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: 2px;
    transition: color var(--transition-normal);
}

.scrolled .logo-text {
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-red);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

/* Mobile Menu Active State */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        width: 80%;
        height: 100vh;
        padding-top: 100px;
        transition: 0.5s;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
    }
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    position: relative;
    padding: 0.5rem 0;
}

.scrolled .nav-link {
    color: var(--white);
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--white);
}

/* Button Global Base */
.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    text-decoration: none;
}

/* Global Button Fix for New Palette */
.primary-btn {
    background: var(--primary-red);
    color: var(--white) !important;
}

.primary-btn:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-normal);
}

.primary-btn:hover .btn-icon {
    transform: translateX(5px);
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

/* ===== HERO SECTION (Business Card Aesthetic) ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    color: var(--black);
}

.hero-main-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 8rem 2rem 4rem;
}

.hero-card-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.hero-logo-large {
    width: 280px;
    margin-bottom: 2rem;
}

.hero-company-name {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--black);
    letter-spacing: 5px;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--black) !important;
    margin: 3rem 0 1.5rem;
    text-transform: uppercase;
}

.hero-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    color: var(--black) !important;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ===== VISION DIVIDER ===== */
.vision-divider {
    z-index: 5;
    position: relative;
    background: var(--white);
}

.vision-image-container {
    height: 400px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.vision-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: brightness(0.7);
    transition: transform 1s ease;
}

.vision-image-container:hover .vision-img {
    transform: scale(1.05);
}

.vision-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: center;
    padding-left: 10%;
}

.vision-text h3 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.vision-text p {
    font-size: 1.2rem;
    color: var(--primary-red);
    font-weight: 600;
}

/* ===== SECTORS FOCUS ===== */
.sectors-focus {
    margin-top: 6rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(199, 62, 58, 0.1);
    padding: 4rem;
    border-radius: 20px;
}

.sectors-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.sectors-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    list-style: none;
    margin-top: 2rem;
}

.sectors-list li {
    padding-left: 1.5rem;
    position: relative;
    font-weight: 500;
}

.sectors-list li::before {
    content: '•';
    color: var(--primary-red);
    position: absolute;
    left: 0;
    font-weight: 900;
}

.sectors-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.sector-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.sectors-image:hover .sector-img {
    transform: scale(1.02);
}

/* ===== ABOUT VISUAL REFRESH ===== */
.about-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--gradient-primary);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(199, 62, 58, 0.4);
    animation: fadeInUp 0.8s ease-out;
}

.experience-badge .years {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.experience-badge .exp-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ===== RETAIL ALERT SECTION ===== */
.retail-alert-section {
    padding: 6rem 0;
    background: #050505;
}

.retail-alert-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #111;
    border: 3px solid var(--primary-red);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(199, 62, 58, 0.2);
}

.retail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.retail-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.alert-icon {
    font-size: 2.5rem;
}

.alert-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #fff;
    letter-spacing: 2px;
}

.retail-content p {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.alert-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.alert-features span {
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--primary-red);
}

@media (max-width: 992px) {

    .sectors-content,
    .retail-alert-card {
        grid-template-columns: 1fr;
    }

    .retail-image {
        height: 300px;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: var(--spacing-xl) 0;
    background: var(--black);
    position: relative;
}

.section-title {
    color: var(--off-white);
}

.section-subtitle {
    color: var(--light-gray);
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(199, 62, 58, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(199, 62, 58, 0.2);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(199, 62, 58, 0.05), rgba(199, 62, 58, 0.02));
    border-color: var(--primary-red);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(199, 62, 58, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon-wrapper {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(-5deg);
}

.service-icon {
    width: 35px;
    height: 35px;
    color: var(--primary-red);
    stroke-width: 2;
    transition: color var(--transition-normal);
}

.service-card:hover .service-icon {
    color: var(--white);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-description {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--light-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-features li::before {
    content: '✓';
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-link {
    background: none;
    border: none;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: var(--font-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 1rem;
    color: var(--accent-light);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--spacing-xl) 0;
    background: var(--off-black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-subtitle-text {
    font-size: 0.5em;
    letter-spacing: 12px;
    display: block;
    margin-top: 0.5rem;
    font-weight: 400;
    color: var(--light-gray);
    text-shadow: none;
}

/* Bottom Operational Bar (Exact Image Replica) */
.hero-bottom-area {
    background: #1A1A1A;
    height: 140px;
    position: relative;
    padding: 2rem 5%;
    display: flex;
    align-items: flex-end;
}

.hero-bottom-accents {
    width: 100%;
    height: 60px;
    position: relative;
}

.accent-slanted-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 35px;
    background: var(--primary-red);
    clip-path: polygon(0 0, 93% 0, 100% 100%, 0% 100%);
    z-index: 2;
}

.accent-line-white {
    position: absolute;
    bottom: 45px;
    left: 0;
    width: 65%;
    height: 4px;
    background: var(--white);
    clip-path: polygon(0 0, 93% 0, 96% 100%, 0% 100%);
    z-index: 2;
    opacity: 0.9;
}

/* Section Standardizing */
.section-badge {
    background: rgba(155, 27, 30, 0.05);
    color: var(--primary-red);
    border: 1px solid rgba(155, 27, 30, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.about-description {
    color: var(--light-gray);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}



.about-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(199, 62, 58, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-red);
    stroke-width: 2;
}

.about-feature h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.about-feature p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

.about-visual {
    position: relative;
    height: 500px;
}

.visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(199, 62, 58, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all var(--transition-normal);
}

.visual-card:hover {
    transform: scale(1.05);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(199, 62, 58, 0.3);
}

.card-1 {
    top: 0;
    left: 0;
    width: 280px;
    animation: float 3s ease-in-out infinite;
}

.card-2 {
    top: 150px;
    right: 0;
    width: 260px;
    animation: float 3s ease-in-out 1s infinite;
}

.card-3 {
    bottom: 0;
    left: 80px;
    width: 300px;
    animation: float 3s ease-in-out 2s infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-label {
    font-size: 0.85rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(199, 62, 58, 0.7);
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(199, 62, 58, 0);
    }
}

.card-metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: var(--black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(199, 62, 58, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition-normal);
}

.contact-card:hover {
    border-color: var(--primary-red);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(199, 62, 58, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-red);
    stroke-width: 2;
}

.contact-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(199, 62, 58, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--off-white);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(199, 62, 58, 0.2);
    border-radius: 10px;
    padding: 1rem;
    color: var(--off-white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(199, 62, 58, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    display: block;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    margin-top: 8rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-gray);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid var(--border-gray);
    transition: all var(--transition-normal);
}

.process-step:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.process-step p {
    color: var(--light-gray);
    font-size: 1rem;
}

.sectors-focus {
    margin-top: 8rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-gray);
    padding: 4rem;
    border-radius: 20px;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #111 0%, #050505 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(199, 62, 58, 0.3);
}

.quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(199, 62, 58, 0.05), transparent);
}

.quote-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.quote-content p {
    font-size: 1.15rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
}


/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(199, 62, 58, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(199, 62, 58, 0.1);
    border: 1px solid rgba(199, 62, 58, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-section h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-section a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(199, 62, 58, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        height: 400px;
    }

    .visual-card {
        width: 250px !important;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        transition: left var(--transition-normal);
    }

    .nav-menu.active {
        left: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}