/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif !important;
    line-height: 1.6;
    color: #fff;
    background-color: #121212;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

/* Force Inter font on all elements */
* {
    font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif !important;
}

/* Optimize scrolling performance */
* {
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
}

/* Optimize animations for better performance */
.glow-svg,
.hero-logo-svg,
.enforcement-logo-bg,
.service-logo-bg-svg {
    will-change: transform;
    transform: translateZ(0);
    /* Force hardware acceleration */
}

/* Page container for flexbox layout */
.page-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

/* Page load animation */
@keyframes pageLoad {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade in from left */
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade in from right */
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade in from bottom */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scale in animation */
@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Floating animation for background elements */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) translateZ(0);
    }

    50% {
        transform: translateY(-20px) translateZ(0);
    }
}

/* Pulse animation */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Gradient animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Glow animation */
@keyframes glow {

    0%,
    100% {
        filter: blur(1px) brightness(1);
        opacity: 0.4;
        transform: translateZ(0);
    }

    50% {
        filter: blur(2px) brightness(1.2);
        opacity: 0.6;
        transform: translateZ(0);
    }
}

.important-info-container {
    width: 60vw;
    max-width: 1440px;
    padding: 3%;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}

.container {
    width: 100%;
    max-width: 1440px;
    padding: 3%;
    padding-top: 0;
    margin: 0 auto;
}

.container-enforcement {
    width: 100%;
    max-width: 1440px;
    padding: 3%;
    margin: 0 auto;
}

.container-enforcement {
    width: 100%;
    max-width: 1440px;
    padding: 3%;
    padding-top: 3%;
    padding-bottom: 0;
    margin: 0 auto;
}

.container-faq {
    width: 100%;
    max-width: 1440px;
    padding: 0 15vw 0 15vw;
    margin: 0 auto;
}

/* Header and Navigation */
.header {
    background: #121212;
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1000;
    border-bottom: 0.3px solid;
    border-image-source: linear-gradient(90deg, rgba(255, 81, 0, 0.05) 14.9%, #FF5100 50%, rgba(255, 81, 0, 0.05) 82.21%);
    border-image-slice: 1;
    animation: fadeInUp 1s ease 0.2s both;
    display: flex;
    justify-content: center;
    will-change: background, backdrop-filter;
    transform: translateZ(0);
    /* Force hardware acceleration */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5vw 2vw 0.5vw 2vw;
    height: 5.5vw;
    max-width: 1440px;
    width: 100%;
}

.logo {
    width: 3vw;
    height: 3vw;
    margin-right: 0.5vw;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(360deg) scale(1.1);
}

.brand-text {
    font-size: 1.7vw;
    color: #fff;
    transition: color 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 0.5vw;
    list-style: none;
    animation: fadeInRight 1s ease 0.6s both;
}

.nav-link {
    font-size: 1.1vw;
    color: #fff;
    text-decoration: none;
    padding: 0.5vw 1vw;
    position: relative;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(180deg, #FF8F00 35%, #FF0D00 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
    font-weight: 700;
}

.nav-brand {
    display: flex;
    align-items: center;
    animation: fadeInLeft 1s ease 0.4s both;
}

.nav-brand:hover .brand-text {
    background: linear-gradient(90deg, #FF5100 0%, #FF0D00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero-responsive-wrapper {
    width: 100vw;
    aspect-ratio: 16/7;
    position: relative;
    overflow: hidden;
    background-image: url('../assets/service/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: scaleIn 1.2s ease 0.8s both;
    display: flex;
    justify-content: center;
    height: 35vw;
}

.hero-content-container {
    max-width: 1440px;
    width: 100%;
    position: relative;
}

.hero-section.custom-hero {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    background: transparent;
    padding: 0;
    margin: 0;
}

.hero-inner {
    display: flex;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    padding: 0;
    gap: 0;
    padding: 0% 3% 0 3%;
}

.hero-content {
    display: flex;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    padding: 0;
    gap: 0;
}

.hero-left,
.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
    margin: 0;
}

.hero-left {
    width: 70%;
    height: 100%;
    animation: fadeInLeft 1.2s ease 1s both;
}

.hero-right {
    width: 44%;
    height: 100%;
    align-items: flex-end;
    justify-content: center;
    animation: fadeInRight 1.2s ease 1.2s both;
}

.hero-left h1 {
    font-size: 4.4vw;
    line-height: 1.05;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #EBEBEB;
    margin: 0;
    padding: 0;
    width: 120%;
    text-decoration: none;
    animation: fadeInUp 1s ease 1.2s both;
}

.hero-heading-gradient-text {
    font-size: inherit;
    line-height: 1.05;


    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(40%);
    background: linear-gradient(78.33deg, #FF8F00 15.54%, #FF5100 69.44%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-decoration: none;
}

.hero-left h2 {
    font-size: 1.6vw;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: italic;
    line-height: normal;
    color: #FF5100;
    margin: 1.5vw 0 0 0;
    padding: 0;
    width: 80%;
    text-decoration: none;
    animation: fadeInUp 1s ease 1.4s both;
}

.hero-description {
    font-size: 1vw;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #fff;
    background: none;
    margin: 1vw 0 0 0;
    padding: 0;
    width: 75%;
    animation: fadeInUp 1s ease 1.6s both;
    line-height: normal;

}

.hero-logo-svg {
    width: 95%;
    height: 95%;
    object-fit: contain;
    display: block;
    opacity: 0.7;
    transform: translateY(-4vw) !important;
    transition: transform 0.3s ease;
}

.hero-logo-svg:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.hero-section.custom-hero {
    background: transparent;
    padding-top: 5%;
}

.hero-left h2 {
    background: none;
    color: #FF5100;
    display: inline;
    padding: 0;
    border-radius: 0;
}

.hero-description {
    background: none;
    padding: 0;
    border-radius: 0;
}

/* Action Cards */
.action-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 45vw));
    gap: 3vw;
    justify-content: center;
    align-items: stretch;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
}

.underline {
    text-decoration: underline;
    text-decoration-color: #fff;
    text-decoration-thickness: 0.1vw;
    text-underline-offset: 0.1vw;
}

.action-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1vw;
    padding: 4vw 0vw;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 81, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.action-card:hover::before {
    left: 100%;
}

.action-card:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 2vw rgba(255, 81, 0, 0.3);
    transform: translateY(-5px) scale(1.02);
    border-color: #FF5100;
}

.action-card.highlighted {
    /* Removed permanent shadow - now appears on hover for both cards */
}

.action-card img {
    width: 2.5vw;
    height: 2.5vw;
    margin-bottom: 1vw;
}

.action-card h3 {
    font-size: 1.2vw;
    margin-bottom: 1vw;
}

.action-card p {
    font-size: 1vw;
    color: #fff;
    width: 90%;
}

.action-card {
    text-decoration: none;
    color: inherit;
}

/* Important Information */
.important-info {
    position: relative;
    margin: 1vw 0;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
}

.important-info h2 {
    font-weight: 500;
    font-style: italic;
    font-size: 1.7vw;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FF5100;
    margin-bottom: 1.2vw;
}

.info-list {
    list-style: none;
}

.info-list li {
    font-style: normal;
    font-size: 1vw;
    line-height: normal;
    letter-spacing: 0%;
    color: rgba(255, 255, 255);
    padding-left: 2vw;
    margin: 0 0 1vw 0;
    position: relative;
    font-weight: 400;
}

.info-list li::before {
    content: "•";
    color: #FF5100;
    position: absolute;
    left: 0;
}

/* Enforcement Overview */
.enforcement-overview {
    position: relative;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
    margin-top: 5vw;
    background-image: url('../assets/home/about-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.enforcement-overview h2 {
    font-weight: 600;
    font-style: normal;
    font-size: 4.4vw;
    line-height: 1;
    letter-spacing: 0%;
    margin-bottom: 1vw;
    background: linear-gradient(90.09deg, #FF8F00 0%, #FF0D00 25%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.enforcement-logo-bg {
    position: absolute;
    top: 0;
    right: 2vw;
    width: 22vw;
    height: auto;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    animation: float 4s ease-in-out infinite;
}

.enforcement-overview>*:not(.enforcement-logo-bg) {
    position: relative;
    z-index: 1;
}

.enforcement-description {
    font-weight: 300;
    font-style: normal;
    font-size: 1.1vw;
    line-height: 120%;
    letter-spacing: 0%;
    margin-bottom: 1vw;
    max-width: 46%;
}

.enforcement-cta {
    display: inline-block;
    background: linear-gradient(90.09deg, #FF8F00 0.08%, #FF0D00 60.01%);
    background-size: 200% 100%;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.4vw;
    padding: 1vw 2.5vw;
    border: none;
    border-radius: 0.5vw;
    cursor: pointer;
    box-shadow: 0 0.2vw 1vw 0 rgba(255, 81, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 2vw;
    margin-bottom: 2vw;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    height: 4vw;
}

.enforcement-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}



.enforcement-cta:hover {
    filter: brightness(1.1);
    box-shadow: 0 0.4vw 2vw 0 rgba(255, 81, 0, 0.16);
    transform: translateY(-3px) scale(1.02);
    background-position: 100% 0;
}

.enforcement-cta:hover::before {
    left: 100%;
}



.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3vw;
    margin-top: 2vw;
    padding-bottom: 3vw;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s both;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1vw;
    padding: 2vw 1.5vw;
    min-width: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: auto;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 143, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(255, 143, 0, 0.2);
    border-color: #FF8F00;
}

.service-card img {
    width: 10vw;
    height: 10vw;
    display: block;
    object-fit: contain;
    background: none;
    padding: 0;
    border: none;
    padding-left: 0;
    margin: -3vw;
}

.service-card h3 {
    font-size: 1.3vw;
    margin-bottom: 1vw;
    background: linear-gradient(90.09deg, #FF8F00 0.08%, #FF0D00 60.01%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

}

.service-card p {
    font-size: 1.1vw;
    color: #fff;
}

/* FAQ Section */
.faq-section {
    margin: 5vw 0;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
    position: relative;
    /* Add this */
    z-index: 1;
    /* Ensure stacking context */
    overflow: visible;
    /* Allow glow to extend if needed */
}

.faq-section h2 {
    font-size: 4vw;
    text-align: center;
    margin-bottom: 4vw;
    background: linear-gradient(90.09deg, #FF8F00 0.08%, #FF0D00 60.01%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5vw 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.5vw;
    position: relative;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    padding: 1.5vw 2vw;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2vw;
    color: rgba(255, 255, 255, 0.9);
}

.faq-number {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1vw;
}

.faq-answer {
    display: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1vw;
}

.faq-item.active {
    background: linear-gradient(90deg, #FF8F00 0%, #FF5100 100%);
    border-radius: 0.5vw;
    padding: 2vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
    align-items: center;
}

.faq-item.active .faq-question {
    margin-bottom: 0;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Important Notes */
.important-notes {
    margin: 5vw 0;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
}

.important-notes h2 {
    font-size: 1.6vw;
    color: #FF5100;
    font-style: italic;
}

.important-notes p {
    font-size: 1.3vw;
    color: #fff;
    line-height: 1.5vw;
    padding-top: 1vw;
}

/* Desktop and Mobile Image Display */
.desktop-only {
    display: block !important;
}

.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    /* Mobile viewport height fixes */
    html {
        height: 100%;
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }

    body {
        min-height: 100vh;
        min-height: -webkit-fill-available;
        min-height: calc(var(--vh, 1vh) * 100);
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
    }

    .page-container {
        min-height: 100vh;
        min-height: -webkit-fill-available;
        min-height: calc(var(--vh, 1vh) * 100);
    }

    .header {
        position: sticky;
        top: 0;
        z-index: 1000;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    .footer {
        position: relative;
        z-index: 1;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    .enforcement-overview {
        background-image: url('../assets/home/about-bg.png');
    }
}

/* Contact Section Styles from home.css */
.contact-image {
    padding-bottom: 10%;
    width: 95%;
    height: auto;
    display: block;
    margin: 0 auto;
    overflow: hidden;
}

.contact-section {
    position: relative;
    width: 100%;
}

.contact-logo {
    height: 35vh;
    width: auto;
}

.contact-section-content {
    max-width: 1440px;
    width: 100%;
    padding: 0 2vw;
    position: relative;
}

.contact-button-container {
    position: absolute;
    bottom: 57%;
    right: 12%;
    z-index: 10;
}

.contact-team-btn {
    display: inline-block;
    background: linear-gradient(86.19deg, #FF8F00 0%, #FF0D00 25%);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.4vw;
    padding: 1.2vw 1.8vw;
    width: 23.5vw;
    height: 4.5vw;
    border-radius: 0.8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6vw;
}

.contact-team-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 143, 0, 0.3);
    background: linear-gradient(86.19deg, #FF9F20 3.12%, #FF1D10 96.88%);
}

.contact-team-btn {
    display: inline-block;
    background: linear-gradient(86.19deg, #FF8F00 0%, #FF0D00 25%);
    background-size: 200% 100%;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.4vw;
    padding: 1.2vw 1.8vw;
    width: 23.5vw;
    height: 4.5vw;
    border-radius: 0.8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6vw;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
}

.contact-team-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-team-btn:hover::before {
    left: 100%;
    background-position: 100% 0;
}

.service-logo-background {
    position: absolute;
    top: 15%;
    right: 0%;
    transform: translateX(15%) translateY(-50%);
    z-index: -1;
    pointer-events: none;
}

.service-logo-bg-svg {
    width: 30vw;
}

/* Footer */
.footer {
    background-image: url('../assets/service/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 3vw 0 1vw 0;
    font-size: 1vw;
    letter-spacing: 0.01vw;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
    margin-top: auto;
    width: 100vw;
    display: flex;
    justify-content: center;
}

.footer-container {
    display: grid;
    grid-template-columns: 2.8fr 1.2fr 1.2fr 1.8fr;
    gap: 3vw;
    width: 90vw;
    max-width: 1440px;
    margin: 0 auto;
    align-items: flex-start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 0.7vw;
    margin-bottom: 1vw;
}

.footer-logo-svg {
    width: 2.2vw;
    height: 2.2vw;
}

.footer-brand-text {
    font-size: 1.5vw;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.05vw;
}

.footer-info p {
    margin: 0 0 0.5vw 0;
    color: #ccc;
    font-size: 0.8vw;
}

.footer-info h3 {
    margin: 0 0 0.5vw 0;
    color: #ccc;
    font-weight: 500;
    font-size: 1vw;
}

.footer-link.highlight {
    color: #FF8F00;
}

.footer-note {
    color: #aaa;
    font-size: 0.85vw;
    margin-top: 0.5vw;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1vw;
    font-weight: 600;
    margin-bottom: 1vw;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7vw;
}

.footer-col ul li {
    color: #ccc;
    font-size: 1vw;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover,
.footer-link.highlight:hover {
    color: #FF8F00;
}

.footer-icon {
    color: #FF8F00;
    font-size: 1.1vw;
    vertical-align: middle;
    margin-right: 0.5vw;
}

.footer-bottom {
    text-align: center;
    padding-top: 2vw;
    color: #aaa;
    font-size: 0.95vw;

}

.footer-icon img {
    width: 1.1vw;
    height: 1.1vw;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.footer-icon img:hover {
    transform: scale(1.1);
}


.footer-bg-text {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0.5vw;
    /* Adjust so it sits just under the footer, or 0 for very bottom */
    z-index: -1;
    /* Lower than footer */
    text-align: center;
    font-size: 6vw;
    /* Responsive size */
    font-weight: 800;
    color: #ff5100;
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
    line-height: auto;
    white-space: nowrap;
    width: 100vw;
    /* Optional: gradient text */
    background: linear-gradient(90deg, rgba(255, 13, 0, 0.2) 0%, rgba(255, 143, 0, 0.2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-background {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

.important-info .glow-background {
    top: -50%;
    left: 90%;
    z-index: -1;
}

.glow-background-partners {
    position: absolute;
    top: -75%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
}

.glow-background-services {
    position: absolute;
    top: 0;
    left: 80%;
    transform: translateX(-50%) translateY(-30%);
    /* Adjust Y as needed */
    width: 100vw;
    z-index: 0;
    /* Behind FAQ content */
    pointer-events: none;
}

.faq-section .container {
    position: relative;
    z-index: 2;
    /* Above the glow */
}

.glow-svg {
    width: 100vw;
    height: auto;
    opacity: 0.2;
    filter: blur(100px);
}

.important-info .glow-svg {
    opacity: 0.4;
    filter: blur(1px);
    animation: glow 4s ease-in-out infinite;
}

.last-container {
    width: 64%;
    max-width: 1440px;
    padding: 3%;
    padding-top: 0;
    margin: 0 auto;
}

/* Fixed positioning for screens above 1440px */
@media (min-width: 1440px) {

    /* Header and Navigation - Match service.css exactly */
    .header {
        width: 100vw;
        /* Full width for background */
        display: flex;
        justify-content: center;
    }

    .navbar {
        padding: 6px 24px 6px 24px;
        /* 0.5vw and 2vw at 1440px */
        height: 66px;
        /* 5.5vw at 1440px */
        max-width: 1440px;
        width: 100%;
    }

    .logo {
        width: 36px;
        /* 3vw at 1440px */
        height: 36px;
        /* 3vw at 1440px */
        margin-right: 6px;
        /* 0.5vw at 1440px */
    }

    .brand-text {
        font-size: 20.4px;
        /* 1.7vw at 1440px */
    }

    .nav-menu {
        gap: 6px;
        /* 0.5vw at 1440px */
    }

    .nav-link {
        font-size: 13.2px;
        /* 1.1vw at 1440px */
        padding: 6px 12px;
        /* 0.5vw and 1vw at 1440px */
    }

    .hero-responsive-wrapper {
        height: 500px;
    }

    .hero-content-container {
        width: 1440px;
        padding: 0;
    }

    .hero-section.custom-hero {
        padding-top: 70px;
        /* Match service.css */
    }

    .hero-inner {
        padding: 0 43.2px 0 43.2px;
    }

    .hero-left h1 {
        font-size: 52.8px;
        /* 4.4vw at 1440px */
        width: 120%;
    }

    .hero-left h2 {
        font-size: 21px;
        margin: 12px 0 0 0;
        width: 80%;
    }

    .hero-description {
        font-size: 14.4px;
        /* 1.1vw at 1440px */
        margin: 12px 0 0 0;
        /* 0.1vw at 1440px */
        width: 75%;
        /* 1.5vw at 1440px */
        /* 0.5vw at 1440px */
    }

    .hero-logo-svg {
        transform: translateY(-45px) !important;
        /* -4vw at 1440px */
        padding-top: 20px;
        width: 380px;
        height: 380px;
    }

    .action-cards {
        grid-template-columns: repeat(2, minmax(0, 648px));
        /* 45vw at 1440px */
        gap: 43.2px;
        /* 3vw at 1440px */
    }

    .action-card {
        border-radius: 14.4px;
        /* 1vw at 1440px */
        padding: 57.6px 0;
        /* 4vw at 1440px */
    }

    .action-card img {
        width: 36px;
        /* 2.5vw at 1440px */
        height: 36px;
        /* 2.5vw at 1440px */
        margin-bottom: 14.4px;
        /* 1vw at 1440px */
    }

    .action-card h3 {
        font-size: 17.28px;
        /* 1.2vw at 1440px */
        margin-bottom: 14.4px;
        /* 1vw at 1440px */
    }

    .action-card p {
        font-size: 14.4px;
        /* 1vw at 1440px */
    }

    .important-info {
        margin: 14.4px 0;
        /* 1vw at 1440px */
    }

    .important-info h2 {
        font-size: 24.48px;
        /* 1.7vw at 1440px */
        margin-bottom: 17.28px;
        /* 1.2vw at 1440px */
    }

    .info-list li {
        font-size: 14.4px;
        /* 1.4vw at 1440px */
        margin: 0 0 12px 0;
        /* line-height: 28.8px; */
        /* 2vw at 1440px */
        padding-left: 28.8px;
        /* 2vw at 1440px */
    }

    .enforcement-overview h2 {
        font-size: 64px;
        /* 3.2vw at 1440px */
        line-height: 64px;
        /* 3.1vw at 1440px */
        margin-bottom: 21px;
        /* 3vw at 1440px */
    }

    .enforcement-logo-bg {
        right: 28.8px;
        /* 2vw at 1440px */
        width: 316.8px;
        /* 22vw at 1440px */
    }

    .enforcement-description {
        font-size: 15.84px;
        /* 1.1vw at 1440px */
        margin-bottom: 12px;
        /* 1.5vw at 1440px */
    }

    .enforcement-cta {
        font-size: 20.16px;
        /* 1.4vw at 1440px */
        padding: 14.4px 36px;
        /* 1vw and 2.5vw at 1440px */
        border-radius: 7.2px;
        /* 0.5vw at 1440px */
        margin-top: 28.8px;
        /* 2vw at 1440px */
        margin-bottom: 28.8px;
        /* 2vw at 1440px */
        height: 57.6px;
        /* 4vw at 1440px */
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 43.2px;
        /* 3vw at 1440px */
        margin-top: 43.2px;
        /* 3vw at 1440px */
    }

    .service-card {
        border-radius: 14.4px;
        /* 1vw at 1440px */
        padding: 28.8px 21.6px;
        /* 2vw and 1.5vw at 1440px */
    }

    .service-card img {
        width: 144px;
        /* 10vw at 1440px */
        height: 144px;
        /* 10vw at 1440px */
        margin: -43.2px;
        /* -3vw at 1440px */
    }

    .service-card h3 {
        font-size: 18.72px;
        /* 1.3vw at 1440px */
        margin-bottom: 14.4px;
        /* 1vw at 1440px */
    }

    .service-card p {
        font-size: 15.84px;
        /* 1.1vw at 1440px */
    }

    .info-list {
        width: 66%;
    }

    .faq-section {
        margin: 72px 0;
        /* 5vw at 1440px */
    }

    .faq-section h2 {
        font-size: 57.6px;
        /* 4vw at 1440px */
        margin-bottom: 57.6px;
        /* 4vw at 1440px */
    }

    .faq-list {
        gap: 21.6px;
        /* 1.5vw at 1440px */
    }

    .faq-item {
        padding: 21.6px 0;
        /* 1.5vw at 1440px */
        border-radius: 7.2px;
        /* 0.5vw at 1440px */
    }

    .faq-item:hover {
        padding: 21.6px 28.8px;
        /* 1.5vw and 2vw at 1440px */
    }

    .faq-question {
        font-size: 17.28px;
        /* 1.2vw at 1440px */
    }

    .faq-number {
        font-size: 14.4px;
        /* 1vw at 1440px */
    }

    .faq-answer {
        font-size: 15.84px;
        /* 1.1vw at 1440px */
    }

    .faq-item.active {
        border-radius: 7.2px;
        /* 0.5vw at 1440px */
        padding: 28.8px;
        /* 2vw at 1440px */
        gap: 28.8px;
        /* 2vw at 1440px */
    }

    .important-notes {
        margin: 72px 0;
        /* 5vw at 1440px */
    }

    .important-notes h2 {
        font-size: 23.04px;
        /* 1.6vw at 1440px */
    }

    .important-notes p {
        font-size: 18.72px;
        /* 1.3vw at 1440px */
        line-height: 21.6px;
        /* 1.5vw at 1440px */
        padding-top: 14.4px;
        /* 1vw at 1440px */
    }

    /* Footer - Match service.css exactly */
    .footer {
        padding: 60px 0 36px 0;
        /* 5vw and 3vw at 1440px */
        font-size: 12px;
        /* 1vw at 1440px */
        letter-spacing: 0.12px;
        /* 0.01vw at 1440px */
        width: 100vw;
        /* Keep full width for background */
        display: flex;
        justify-content: center;
    }

    .footer-container {
        gap: 36px;
        /* 3vw at 1440px */
        width: 1080px;
        /* 90vw at 1440px */
        max-width: 1440px;
        margin: 0 auto;
    }

    .footer-col {
        gap: 12px;
        /* 1vw at 1440px */
    }

    .footer-logo-row {
        gap: 8.4px;
        /* 0.7vw at 1440px */
        margin-bottom: 12px;
        /* 1vw at 1440px */
    }

    .footer-logo-svg {
        width: 26.4px;
        /* 2.2vw at 1440px */
        height: 26.4px;
        /* 2.2vw at 1440px */
    }

    .footer-brand-text {
        font-size: 18px;
        /* 1.5vw at 1440px */
        letter-spacing: 0.6px;
        /* 0.05vw at 1440px */
    }

    .footer-info p {
        margin: 0 0 6px 0;
        /* 0.5vw at 1440px */
        font-size: 9.6px;
        /* 0.8vw at 1440px */
    }

    .footer-info h3 {
        margin: 0 0 6px 0;
        /* 0.5vw at 1440px */
        font-size: 12px;
        /* 1vw at 1440px */
    }

    .footer-icon img {
        width: 13.2px;
        /* 1.1vw at 1440px */
        height: 13.2px;
        /* 1.1vw at 1440px */
    }

    .footer-note {
        font-size: 10.2px;
        /* 0.85vw at 1440px */
        margin-top: 6px;
        /* 0.5vw at 1440px */
    }

    .footer-col h4 {
        font-size: 13.2px;
        /* 1.1vw at 1440px */
        margin-bottom: 12px;
        /* 1vw at 1440px */
    }

    .footer-col ul {
        gap: 8.4px;
        /* 0.7vw at 1440px */
    }

    .footer-col ul li {
        font-size: 12px;
        /* 1vw at 1440px */
    }

    .footer-icon {
        font-size: 13.2px;
        /* 1.1vw at 1440px */
        margin-right: 6px;
        /* 0.5vw at 1440px */
    }

    .footer-bottom {
        padding-top: 36px;
        /* 3vw at 1440px */
        padding-bottom: 24px;
        /* 2vw at 1440px */
        font-size: 11.4px;
        /* 0.95vw at 1440px */
    }

    .footer-bg-text {
        /* bottom: -7.2px; */
        /* -0.6vw at 1440px */
        font-size: 86.4px;
        /* Fixed size instead of 6vw */
        width: 100vw;
        /* Keep full width */
    }

    .important-info-container {
        width: 1440px;
        padding: 50px 43.2px;
        /* 3% at 1440px */
        padding-bottom: 0;
        margin: 0 auto;
    }

    .container {
        padding: 43.2px;
        /* 3% at 1440px */
        padding-top: 0;
    }

    .container-enforcement {
        padding: 43.2px;
        /* 3% at 1440px */
        padding-top: 43.2px;
        /* 3% at 1440px */
        padding-bottom: 0;
    }

    .container-faq {
        padding: 0 216px 0 216px;
        /* 15vw at 1440px */
    }

    .last-container {
        width: 921.6px;
        /* 64% at 1440px */
        padding: 43.2px;
        /* 3% at 1440px */
        padding-top: 0;
    }

    .glow-background {
        top: -250% !important;
        left: 100%;
        transform: translateX(-50%);
    }

    .glow-background-partners {
        top: -75%;
        left: 50%;
        transform: translateX(-50%);
    }

    .glow-background-services {
        top: 0;
        left: 80%;
        transform: translateX(-50%) translateY(-30%);
    }

    .glow-svg {
        filter: blur(144px);
        /* 100px converted to fixed */
    }

    /* Contact Section Media Query Styles */
    .contact-section {
        width: 100vw;
        /* Keep full width for background */
        display: flex;
        justify-content: center;
        position: relative;
    }

    .contact-section-content {
        width: 1440px;
        padding: 0 28.8px;
    }

    .contact-image {
        max-width: 1440px;
        width: 100%;
        position: relative;
        padding: 0 63px;
    }

    .contact-logo {
        height: 400px;
        /* Fixed height instead of 90vh */
        width: auto;
    }

    .contact-team-btn {
        font-size: 20.16px;
        padding: 17.28px 25.92px;
        width: 338.4px;
        height: 64.8px;
        border-radius: 11.52px;
    }

    .contact-button-container {
        position: absolute;
        bottom: 47%;
        right: 15%;
        transform: translateX(10%);
        z-index: 10;
    }

    .service-logo-background {
        top: 15%;
        /* percentage stays same */
        right: 0%;
        /* percentage stays same */
        transform: translateX(15%) translateY(-50%);
        /* percentage stays same */
    }
}