:root {
    --bg-dark: #000000;
    /* Pure Black overall background */
    --bg-card: #0a0a0a;
    --bg-card-hover: #141414;
    --text-white: #f5f5f5;
    /* ~47% White text & elements */
    --text-muted: #a3a3a3;
    --accent-red: #ff1a1a;
    /* ~6% Red accents */
    --accent-red-hover: #cc0000;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 15% 50%, rgba(255, 26, 26, 0.03), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.02), transparent 25%);
    background-attachment: fixed;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1440px;
    /* Increased for better large desktop experience */
    margin: 0 auto;
}

.highlight {
    color: var(--accent-red);
}

/* Typography Utilities */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    /* Reduced from 3rem */
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    border: none;
    outline: none;
}

.btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-primary {
    background-color: var(--accent-red);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(255, 26, 26, 0.3);
}

.btn-primary:hover,
.btn-primary:active {
    background-color: var(--accent-red-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 26, 26, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--text-white);
}

.btn-secondary:hover,
.btn-secondary:active {
    background-color: var(--text-white);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    /* Reduced from 20px */
    transition: var(--transition-fast);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    /* Reduced from 15px */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-white);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-red);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a:active {
    color: var(--accent-red);
}

.nav-links a:hover::after,
.nav-links a:active::after {
    width: 100%;
}

.nav-links a.btn-nav::after {
    display: none;
}

.btn-nav {
    border: 1px solid var(--accent-red);
    padding: 8px 16px;
    border-radius: 4px;
    color: var(--accent-red) !important;
}

.btn-nav:hover {
    background-color: var(--accent-red);
    color: var(--text-white) !important;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-white);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Make it above the background but below text */
}

/* Adjust glow z-index just in case */

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 10s infinite alternate ease-in-out;
}

.red-glow {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.15) 0%, rgba(7, 7, 7, 0) 70%);
    top: -10%;
    right: -10%;
}

.white-glow {
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, rgba(245, 245, 245, 0.08) 0%, rgba(7, 7, 7, 0) 70%);
    bottom: -5%;
    left: -5%;
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-30px, 30px);
    }
}

.hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    z-index: 1;
    width: 100%;
}

.hero-logo-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-logo {
    max-width: 100%;
    height: auto;
    max-height: 500px;

    object-fit: cover;
    mix-blend-mode: screen;
    /* Crops out the outer background edges (Top Right Bottom Left) */
    clip-path: inset(3% 15% 3% 15%);
    /* Makes sure the surrounding greyish background turns pure black so it drops out completely */
    filter: contrast(1.3) brightness(0.9);
    transition: transform 0.4s ease, filter 0.4s ease, clip-path 0.4s ease;
    animation: float-logo 6s infinite alternate ease-in-out;
}

.hero-main-logo:hover {
    transform: scale(1.3) translateY(-5px);
    clip-path: inset(0% 12% 0% 12%);
    /* Reveals slightly more when hovered */
    filter: drop-shadow(0 15px 30px rgba(255, 26, 26, 0.4)) contrast(1.3) brightness(0.9);
}

@keyframes float-logo {
    0% {
        transform: translateY(0) scale(1.2);
    }

    100% {
        transform: translateY(-15px) scale(1.2);
    }
}

.hero-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Hero Pagination Dots */
.hero-pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    z-index: 10;
    width: 100%;
}

.hero-pagination .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 26, 26, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 26, 26, 0.3);
}

.hero-pagination .dot:hover {
    background-color: rgba(255, 26, 26, 0.5);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 26, 26, 0.3);
}

.hero-pagination .dot.active {
    width: 38px;
    height: 10px;
    border-radius: 20px;
    background-color: var(--accent-red);
    box-shadow: 0 0 20px rgba(255, 26, 26, 0.8);
    border-color: transparent;
    transform: scale(1.1);
}

/* Sections Global */
section {
    padding: clamp(50px, 8vh, 100px) 0;
    /* Reduced from 60px-120px */
}

/* Services Section */
.services {
    background-color: #ffffff;
    color: #121212;
    background-image:
        radial-gradient(rgba(255, 26, 26, 0.03) 1px, transparent 1px),
        radial-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 80%, #ffffff 100%);
    pointer-events: none;
    z-index: 0;
}

.services .section-header h2 {
    color: #121212;
}

.services .section-header p {
    color: #555555;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.service-card h3 {
    color: #121212;
    transition: color 0.4s ease;
}

.service-card p {
    color: #666666;
    transition: color 0.4s ease;
}

.service-card:hover,
.service-card:active {
    background-color: var(--accent-red);
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(255, 26, 26, 0.3);
    border-color: transparent;
}

.service-card:hover h3,
.service-card:hover p {
    color: #ffffff;
}

.service-image {
    width: 100%;
    height: 180px;
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.15);
}

/* About Section */
.about {
    background-color: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 20px;
    text-align: justify;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    cursor: default;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-red);
    line-height: 1;
    transition: text-shadow 0.3s ease;
}

.stat-item:hover .stat-number {
    text-shadow: 0 0 20px rgba(255, 26, 26, 0.6);
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 5px;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: var(--text-white);
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-red);
    border-radius: 16px;
    z-index: 0;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover::before {
    transform: translate(10px, 10px);
}

.about-slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 26, 26, 0.1);
}

.about-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    filter: grayscale(100%) contrast(1.1) brightness(0.9);
    transition: opacity 1s ease, visibility 1s ease, filter 0.5s ease, transform 0.5s ease;
}

.about-image.active {
    opacity: 1;
    visibility: visible;
}

.about-slideshow:hover .about-image.active {
    filter: grayscale(0%) contrast(1) brightness(1);
    transform: scale(1.02);
}

.about-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.about-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s ease;
}

.about-dot:hover {
    background-color: rgba(255, 26, 26, 0.6);
    transform: scale(1.2);
}

.about-dot.active {
    width: 30px;
    border-radius: 20px;
    background-color: var(--accent-red);
    box-shadow: 0 0 15px rgba(255, 26, 26, 0.8);
    border-color: transparent;
}

/* Partners Section */
.partners {
    background-color: #fcfcfc;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background-image:
        repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.01) 0px, rgba(0, 0, 0, 0.01) 1px, transparent 1px, transparent 20px),
        repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.01) 0px, rgba(0, 0, 0, 0.01) 1px, transparent 1px, transparent 20px);
}

.partners h2 {
    color: #121212;
}

.partners p {
    color: #555555;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    opacity: 0.9;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
    filter: grayscale(100%) opacity(0.6);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    min-width: 220px;
}

.partner-logo img {
    width: 160px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.partner-logo:hover,
.partner-logo:active {
    color: var(--accent-red);
    background: #ffffff;
    border-color: rgba(255, 26, 26, 0.2);
    transform: translateY(-5px);
    filter: grayscale(0%) opacity(1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.partner-dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.partner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.partner-dot.active {
    background: var(--accent-red);
    width: 30px;
    border-radius: 10px;
    border-color: transparent;
}

@media (max-width: 768px) {
    .partner-dots {
        display: flex;
    }

    .partner-logos {
        min-height: 350px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 15px;
        padding: 10px 0;
    }

    .partner-logo {
        width: 220px;
        height: 100px;
        padding: 15px;
        min-width: unset;
        flex: none;
        /* Keep size consistent */
    }

    .partner-logo img {
        width: 140px;
        max-height: 50px;
    }
}

/* Contact Section */
.contact {
    background-color: #ffffff;
    background-image:
        radial-gradient(at 0% 0%, rgba(255, 26, 26, 0.02) 0, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 26, 26, 0.02) 0, transparent 50%);
}

.contact h2 {
    color: #121212;
}

.contact p {
    color: #555555;
}

.contact {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.contact-info {
    padding: 60px 50px;
    background: linear-gradient(180deg, #121212 0%, #1a1a1a 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-info h4 {
    color: #ffffff;
}

.contact-info p {
    color: #a3a3a3;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--accent-red);
    flex-shrink: 0;
}

.contact-icon {
    background: rgba(255, 26, 26, 0.1);
    padding: 15px;
    border-radius: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem !important;
    transition: var(--transition-fast);
}

.info-item:hover .contact-icon {
    background: var(--accent-red);
    color: white !important;
    transform: scale(1.1);
}

.contact-social a:hover {
    background: var(--accent-red) !important;
    border-color: var(--accent-red) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 26, 26, 0.3);
}

.contact-form {
    padding: 60px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
    justify-content: center;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    background-color: #f8f8f8;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    color: #121212;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(255, 26, 26, 0.05);
}

.submit-btn {
    align-self: flex-start;
    padding: 18px 35px;
    border-radius: 8px;
}

/* Footer */
footer {
    background-color: #000000;
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 8px solid var(--accent-red);
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-brand-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 350px;
}

.footer-links-column h4,
.footer-info-column h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-column ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-column ul li a:hover {
    color: var(--accent-red);
    transform: translateX(5px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-info-item i {
    color: var(--accent-red);
    font-size: 1.1rem;
    margin-top: 4px;
}

.footer-info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 26, 26, 0.3);
}

.footer-bottom {
    background-color: #050505;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: #666;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-red);
}

@media screen and (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    footer {
        padding-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand-column,
    .footer-logo,
    .social-links,
    .footer-info-item {
        justify-content: center;
        align-items: center;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Responsive Variables */
@media screen and (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin-top: 20px;
    }

    .hero-logo-wrapper {
        margin-bottom: 10px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        margin-top: 30px;
        order: -1;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 30px 0;
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.5s ease-in-out;
    }

    .nav-links.active {
        clip-path: circle(150% at 100% 0);
    }

    .mobile-menu-btn {
        display: block;
    }

    .stats {
        flex-wrap: wrap;
    }
}

/* Animations/Interactions setup */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll to Top Button - Professional Tech Style */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    border: 1.5px solid rgba(255, 26, 26, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: rgba(255, 26, 26, 0.2);
    border-color: var(--accent-red);
    box-shadow: 0 0 20px rgba(255, 26, 26, 0.4);
    transform: translateY(-5px);
}

.scroll-to-top i {
    font-size: 1.1rem;
    color: var(--accent-red);
    transition: all 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-2px);
    color: #ffffff;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .scroll-to-top i {
        font-size: 1rem;
    }
}

/* --- Large Display Optimization --- */

/* Laptops/Small Monitors (1440px+) */
@media screen and (min-width: 1440px) {
    .container {
        max-width: 1300px;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .service-image {
        height: 200px;
    }
}

/* Standard Monitors (1920px+) - 21" to 24" */
@media screen and (min-width: 1920px) {
    html {
        font-size: 115%;
    }

    .container {
        max-width: 1600px;
    }

    .hero-main-logo {
        max-height: 550px;
    }

    .service-image {
        height: 240px;
    }

    .brand-logo {
        height: 54px;
    }

    .footer-brand-logo {
        height: 75px;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem !important;
    }

    .partner-logo img {
        width: 180px;
        max-height: 70px;
    }
}

/* Large Monitors (2560px+) - 27" and above */
@media screen and (min-width: 2560px) {
    html {
        font-size: 125%;
    }

    .container {
        max-width: 2000px;
    }

    .hero-main-logo {
        max-height: 700px;
    }

    .service-image {
        height: 300px;
    }

    .contact-icon {
        width: 80px;
        height: 80px;
        font-size: 1.8rem !important;
    }

    .brand-logo {
        height: 64px;
    }

    .footer-brand-logo {
        height: 85px;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    .partner-logo img {
        width: 220px;
        max-height: 90px;
    }

    .btn {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 1200px) {
    .hero-content {
        gap: 2rem;
    }

    .about-content {
        gap: 2rem;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
}