/* GTNL Clean Brand System */
:root {
    --primary: #F3702E;
    /* Signature Deep Orange */
    --black: #1D191A;
    /* Brand Black */
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-dark: #9CA3AF;
    --gray-border: #E5E7EB;

    /* Clean Shadows */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Base Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(243, 112, 46, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(243, 112, 46, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(243, 112, 46, 0);
    }
}

/* Reveal Classes for JS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Header & Navbar (Glassmorphism Upgrade) */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 5%;
    transition: var(--transition);
}

header.scrolled {
    padding: 0.5rem 5%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--black);
    font-weight: 800;
    font-size: 1.5rem;
    animation: slideInRight 1s ease forwards;
}

.brand-logo img {
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    padding: 2px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.nav-links li:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-links li:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-links li:nth-child(3) {
    animation-delay: 0.3s;
}

.nav-links li:nth-child(4) {
    animation-delay: 0.4s;
}

.nav-links li:nth-child(5) {
    animation-delay: 0.5s;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    animation: pulse 2s infinite;
}

.btn-primary::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: var(--transition);
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: var(--black);
    color: var(--white);
    animation: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(243, 112, 46, 0.3);
}

/* Hero Section (Restored Design) */
.hero {
    height: 100vh;
    /* Full viewport height */
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Account for fixed header */
    position: relative;
    padding: 0 5%;
    overflow: hidden;
    background: #000;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/global_hero_bg.png') center/cover no-repeat;
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    position: relative;
}

.hero-subtitle {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: var(--primary);
    display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    color: var(--primary);
}

/* Staircase sizing for hero title lines */
.hero-title .ht-line1,
.hero-title .ht-line2,
.hero-title .ht-line3 {
    display: block;
    line-height: 1.05;
}

.hero-title .ht-line1 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    letter-spacing: 3px;
}

.hero-title .ht-line2 {
    font-size: clamp(2.2rem, 7vw, 4.8rem);
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-title .ht-line3 {
    font-size: clamp(2.8rem, 10vw, 5.5rem);
    color: var(--white);
    font-weight: 900;
    letter-spacing: -2px;
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Shared Inner Page Banners */
.page-header {
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(29, 25, 26, 0.8), rgba(29, 25, 26, 0.8)), url('../images/global_inner_banner.png') center/cover no-repeat;
    position: relative;
    text-align: center;
    padding-top: 80px;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
}

.page-header h1 {
    font-size: 4rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeUp 1s ease;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.section-padding {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    display: inline-block;
}

.section-title span {
    color: var(--primary);
}

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

/* Services Grid (Premium Cards) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(243, 112, 46, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    letter-spacing: -0.5px;
}

.service-card p {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.service-link {
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link i {
    transition: var(--transition);
}

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

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

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    filter: grayscale(100%);
    transition: var(--transition);
    border: 10px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: -1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #444444;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-panel h2 {
    color: var(--black);
    margin-bottom: 1rem;
}

.contact-info-panel p {
    color: #555;
    margin-bottom: 2rem;
}

.contact-info-list {
    list-style: none;
    margin-top: 2rem;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.contact-info-list i {
    font-size: 2rem;
    color: var(--primary);
}

.contact-info-list strong {
    color: var(--black);
}

.contact-info-list span {
    color: #555;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-top: 5px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 1px solid var(--gray-dark);
    border-right: 1px solid var(--gray-dark);
    border-bottom: 1px solid var(--gray-dark);
}

.contact-form h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--black);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #ccc;
    padding: 10px 0;
    color: var(--black);
    font-size: 1.1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--primary);
}

.form-group label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #888;
    pointer-events: none;
    transition: var(--transition);
}

.form-group input:focus~label,
.form-group input:valid~label,
.form-group textarea:focus~label,
.form-group textarea:valid~label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--primary);
}

/* ======== Premium Footer ======== */
.premium-footer {
    background: var(--white);
    color: #555;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #eee;
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(243, 112, 46, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.footer-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #ff8a3d, var(--primary));
    background-size: 200% 100%;
    animation: footerAccentShimmer 4s ease infinite;
}

@keyframes footerAccentShimmer {

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

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

.footer-main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 5rem 5% 4rem;
}

.footer-grid-premium {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

/* Brand Column */
.footer-brand-col {
    padding-right: 2rem;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: opacity 0.3s ease;
}

.footer-logo-link img {
    max-height: 60px;
    filter: brightness(1.1);
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #777;
    margin-bottom: 2rem;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--gray-light);
    border: 1px solid #e0e0e0;
    color: #555;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(243, 112, 46, 0.3);
}

/* Footer Column Headings */
.footer-heading {
    color: var(--black);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

/* Quick Links */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-nav a i {
    font-size: 0.6rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.footer-nav a:hover {
    color: var(--black);
    padding-left: 6px;
}

.footer-nav a:hover i {
    transform: translateX(4px);
}

/* Business Hours */
.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.65rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.footer-hours li span:first-child {
    color: #777;
}

.footer-hours li span:last-child {
    color: var(--black);
    font-weight: 600;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: -4px;
    padding: 0.7rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.footer-cta-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(243, 112, 46, 0.3);
}

/* Contact Info List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 1.2rem;
    font-size: 0.93rem;
    line-height: 1.6;
}

.contact-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(243, 112, 46, 0.1);
    border-radius: 8px;
    color: var(--primary);
    font-size: 0.9rem;
}

.footer-contact-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: var(--primary);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid #eee;
    padding: 1.5rem 5%;
}

.footer-bottom-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-bar p {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

.footer-dot {
    color: #ccc;
    font-size: 0.7rem;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-grid-premium {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-grid-premium {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand-col {
        padding-right: 0;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 4rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }
}

/* About Section Styles */
.about-section {
    padding: 3rem 5%;
    background: var(--white);
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 20px 20px 0 var(--gray-light);
    border: 1px solid var(--gray-dark);
}

/* Modern About Enhanced Styles */
.modern-about-image {
    position: relative;
    border-radius: 12px;
    z-index: 1;
    margin-bottom: 0px;
}

.modern-about-image img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    object-fit: cover;
}

/* Tighter Text Section to Match Image */
.about-text h2,
.about-text-side h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-text p,
.about-text-side p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.modern-about-image:hover img {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}

.modern-about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--primary) 10%, transparent 10%);
    background-size: 20px 20px;
    z-index: -1;
    opacity: 0.2;
    transition: transform 0.6s ease;
}

.modern-about-image:hover::before {
    transform: translate(-10px, -10px);
}

.floating-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border-left: 5px solid var(--primary);
    animation: floating 4s ease-in-out infinite;
    z-index: 2;
    transition: transform 0.3s ease;
}

.floating-badge:hover {
    transform: scale(1.05);
    animation-play-state: paused;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

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

.badge-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.badge-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 1px;
}

.modern-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.modern-list li {
    padding: 0.3rem 0;
    font-weight: 500;
    font-size: 1rem;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.modern-list i {
    color: var(--primary);
    background: rgba(243, 112, 46, 0.1);
    padding: 8px;
    border-radius: 50%;
    font-size: 0.9rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.modern-list li:hover {
    transform: translateX(10px);
    color: var(--primary);
}

.modern-list li:hover i {
    background: var(--primary);
    color: var(--white);
}

.modern-list.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.modern-list .stat-item {
    transition: transform 0.3s ease;
}

.modern-list .stat-item:hover {
    transform: translateY(-5px);
}


.section-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.stat-label {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Why Choose Us Styles */
.why-choose-us {
    padding: 8rem 5%;
    background: var(--gray-light);
    text-align: center;
}

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

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #555;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.why-card {
    background: var(--white);
    padding: 3rem 2rem;
    transition: var(--transition);
    border: 1px solid var(--gray-dark);
}

.why-card:hover {
    background: var(--black);
    transform: translateY(-10px);
}

.why-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.why-card p {
    font-size: 0.95rem;
    color: #666;
    transition: var(--transition);
}

.why-card:hover h3 {
    color: var(--white);
}

.why-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonials Styles */
.testimonials {
    padding: 8rem 5%;
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 3rem;
    background: var(--gray-light);
    position: relative;
    border: 1px solid var(--gray-dark);
}

.stars {
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
}

.author-info h4 {
    margin-bottom: 0.2rem;
    color: var(--black);
}

.author-info span {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* FAQ Styles */
.faq-section {
    padding: 8rem 5%;
    background: var(--gray-light);
}

.faq-container {
    max-width: 800px;
    margin: 5rem auto 0;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-dark);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}

.faq-question:hover {
    background: var(--gray-light);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-out;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #666;
    margin: 0;
}

/* Toggle Class for FAQ */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 1rem;
}

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


@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: 2;
    }

    .about-text {
        order: 1;
    }
}

/* Mobile Menu Toggle Styling */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--black);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 10px;
    z-index: 2001;
    /* Above everything */
    position: relative;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        /* Full screen fixed */
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        /* Use dynamic viewport height if supported */
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 2000;
        padding: 0;
        margin: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
    }

    .nav-links a {
        display: inline-block;
        font-size: 1.8rem;
        /* Large readable links */
        font-weight: 800;
        color: var(--black) !important;
        text-transform: uppercase;
        letter-spacing: 2px;
        padding: 10px 20px;
    }
}

/* Clean Redesign Styles */

/* Premium Features Banner Redesign */
.features-banner {
    padding: 0 5%;
    background: transparent;
    position: relative;
    z-index: 100;
    margin-top: -100px;
    /* Pull it up into the hero more prominently */
}

.features-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--white);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--gray-border);
}

.feature-item {
    padding: 4rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    border-right: 1px solid var(--gray-border);
    background: var(--white);
    position: relative;
}

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

.feature-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--primary);
    transition: var(--transition);
}

.feature-item:hover::after {
    width: 100%;
}

.feature-item:hover {
    background: var(--gray-light);
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(243, 112, 46, 0.08);
    border-radius: 50%;
}

.feature-item:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.feature-text h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-text p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Features */
@media (max-width: 992px) {
    .features-banner {
        margin-top: 0;
        padding: 4rem 5%;
    }

    .features-container {
        grid-template-columns: 1fr;
        border-radius: 10px;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid var(--gray-border);
        padding: 3rem 2rem;
    }

    .feature-item:last-child {
        border-bottom: none;
    }
}

.about-section {
    padding: 10rem 5%;
    background: var(--white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image-side {
    position: relative;
}

.about-image-side img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.experience-badge-simple {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.experience-badge-simple span {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.experience-badge-simple p {
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 5px;
}

.section-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 3.5rem;
    color: var(--black);
    margin-bottom: 2rem;
    font-weight: 800;
}

.section-title span {
    color: var(--primary);
}

.check-list {
    list-style: none;
    margin: 2.5rem 0;
}

.check-list li {
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.check-list i {
    color: var(--primary);
}

/* Services Clean */
.services {
    padding: 10rem 5%;
    background: var(--gray-light);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 5rem auto 0;
}

.service-card-clean {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-border);
}

.service-card-clean:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.service-icon-clean {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.service-card-clean h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.service-card-clean a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 2rem;
}

/* FAQ Clean */
.faq-section {
    padding: 4rem 5%;
    background: var(--white);
    text-align: center;
}

.faq-container {
    max-width: 900px;
    margin: 2rem auto 0;
    text-align: left;
}

.faq-item-clean,
.faq-item {
    border-bottom: 1px solid var(--gray-border);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.faq-item-clean:hover,
.faq-item:hover {
    background-color: var(--gray-light);
}

.faq-question-clean,
.faq-question {
    padding: 1.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question-clean h3,
.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
}

.faq-question-clean i,
.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer-clean,
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    font-size: 1rem;
    color: #555;
    padding: 0 1.5rem;
    opacity: 0;
}

.faq-item-clean.open .faq-answer-clean,
.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 1.5rem 1.5rem;
    opacity: 1;
}

/* Simple CTA */
.cta-simple {
    padding: 8rem 5%;
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.cta-container h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-container h2 span {
    color: var(--primary);
}

.cta-container p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-image-side img {
        width: 100%;
    }

    .experience-badge-simple {
        position: static;
        margin-top: 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .cta-container h2 {
        font-size: 2.5rem;
    }
}

/* COMPACT PREMIUM DARK SERVICES SECTION */
.services {
    padding: 3rem 5% 2rem !important;
    background: var(--black) !important;
    position: relative;
    z-index: 1;
}

.services .section-header {
    margin-bottom: 2rem !important;
}

.services h2 {
    color: var(--white) !important;
    font-size: 2.2rem !important;
    margin-bottom: 0.5rem !important;
}

.services h2 span {
    color: var(--primary) !important;
}

.services>p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
}

.services-grid {
    gap: 1.5rem !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
}

/* Premium Light Card Styling & Hover */
.service-card,
.service-card-clean {
    background: var(--white) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    border-radius: 16px !important;
    padding: 2rem 1.5rem !important;
    transition: all 0.4s ease !important;
    position: relative;
    overflow: hidden;
    z-index: 2;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

.service-card:hover,
.service-card-clean:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(243, 112, 46, 0.15) !important;
    border-color: rgba(243, 112, 46, 0.3) !important;
}

/* Gradient Bottom Border Animation */
.service-card::after,
.service-card-clean::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::after,
.service-card-clean:hover::after {
    transform: scaleX(1);
}

/* Stunning Floating Gradient Icons */
.service-icon,
.service-icon-clean {
    width: 55px !important;
    height: 55px !important;
    background: linear-gradient(135deg, var(--primary), #ff8a3d) !important;
    color: var(--white) !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.6rem !important;
    margin-bottom: 1.2rem !important;
    transition: transform 0.4s ease !important;
}

.service-card:hover .service-icon,
.service-card-clean:hover .service-icon-clean {
    transform: rotate(10deg) scale(1.1) !important;
    box-shadow: 0 10px 20px rgba(243, 112, 46, 0.5) !important;
}

.service-card h3,
.service-card-clean h3 {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.6rem !important;
    color: var(--black) !important;
}

.service-card p,
.service-card-clean p {
    color: #555 !important;
    line-height: 1.5 !important;
    font-size: 0.95rem !important;
    margin-bottom: 1rem !important;
}

.service-card a,
.service-card-clean a {
    color: var(--primary) !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-top: auto !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.service-card a:hover,
.service-card-clean a:hover {
    color: var(--black) !important;
}

/* =========================================================================
   PREMIUM BLOG & CONTACT RE-DESIGN
   ========================================================================= */

/* Contact Page Dark Glass Panel */
.contact-section-light {
    background: #fdfdfd !important;
    position: relative;
    padding: 6rem 5%;
}

.glass-panel {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    flex: 1;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(250, 82, 35, 0.1);
}

.glass-panel h2,
.glass-panel h3,
.glass-panel strong {
    color: var(--black) !important;
}

.glass-panel p,
.glass-panel span {
    color: #555 !important;
}

.glass-panel .form-group input,
.glass-panel .form-group textarea,
.glass-panel .form-group select {
    color: var(--black) !important;
    border-bottom-color: #ccc !important;
}

.glass-panel .form-group input:focus,
.glass-panel .form-group textarea:focus,
.glass-panel .form-group select:focus {
    border-bottom-color: var(--primary) !important;
}

.glass-panel .form-group label {
    color: #888 !important;
}

/* Animated Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(250, 82, 35, 0.15);
    border-color: rgba(250, 82, 35, 0.3);
}

.blog-img-wrapper {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.blog-card-content {
    padding: 2rem;
    background: var(--white);
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-content h3 {
    color: var(--black);
    font-size: 1.4rem;
    margin: 0.5rem 0 1rem;
    line-height: 1.4;
}

.blog-card-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex: 1;
}

.blog-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(250, 82, 35, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Blog Modern List Layout */
.blog-list-container {
    max-width: 900px;
    margin: 0 auto;
    display: block; /* Force blocks to stack vertically */
}

.blog-card-premium {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    margin-bottom: 4rem; /* Spacing between articles */
    width: 100%;
}

.blog-card-premium:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-card-premium.expanded {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.blog-img-fixed {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.blog-body-premium {
    padding: 3.5rem;
}

.blog-meta-clean {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.blog-body-premium h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-transform: none;
    letter-spacing: -1px;
    line-height: 1.2;
}

.blog-body-premium p.blog-intro {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.blog-content-full {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid #eee;
}

.blog-card-premium.expanded .blog-content-full {
    max-height: 2000px;
    opacity: 1;
    margin-top: 2rem;
    padding-top: 2.5rem;
}

.blog-full-article {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.blog-full-article h4 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--black);
    text-transform: none;
}

.blog-full-article ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.blog-full-article li {
    margin-bottom: 1rem;
}

/* =========================================================================
   SERVICES PAGE ENHANCEMENTS
   ========================================================================= */

.page-header {
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/images/global_hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.page-header h1 span {
    color: var(--primary);
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.services-page {
    background: var(--white);
}

.service-benefits {
    position: relative;
    overflow: hidden;
}

.benefit-item {
    transition: var(--transition);
}

.benefit-item h4 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* =========================================================================
   FINAL RESPONSIVE FIXES PATCH (High Priority)
   ========================================================================= */

/* Global Fixes */
img {
    max-width: 100%;
    height: auto;
}

.navbar,
header {
    overflow: visible;
    width: 100%;
}

@media (max-width: 1200px) {
    .about-container {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .features-banner {
        margin-top: 0;
        padding: 2rem 1rem !important;
    }

    .features-container {
        grid-template-columns: 1fr;
        border-radius: 15px;
    }

    .about-section {
        padding: 3rem 5% !important;
    }

    .experience-badge-simple {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 2rem;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.8rem 1rem !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .hero {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
        padding-right: 0;
        width: 100%;
        max-width: 100%;
        z-index: 2;
    }

    .hero-btns {
        justify-content: center !important;
    }

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    .cta-container h2 {
        font-size: 1.6rem !important;
    }

    .floating-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 1.5rem;
        width: 100%;
        justify-content: center;
    }

    .badge-number {
        font-size: 1.2rem;
    }

    .badge-text {
        font-size: 0.75rem;
    }

    .navbar {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
    }

    /* Stack buttons earlier for better mobile/tablet experience */
    .hero-btns {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        width: 100%;
        justify-items: center;
    }

    .page-header h1 {
        font-size: 2.2rem !important;
        letter-spacing: -1px;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 1rem 1.5rem !important;
        margin: 0 auto;
        display: block !important;
    }
}

@media (max-width: 480px) {
    .hero {
        height: auto;
        min-height: 80vh;
        padding: 120px 1.5rem 60px;
    }

    /* grid rule moved to 768px */
    .service-card-clean,
    .service-card {
        padding: 1.5rem !important;
        min-width: unset !important;
    }

    .features-container {
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.06);
    }

    .hero-title .ht-line1 {
        font-size: 1.2rem;
    }

    .hero-title .ht-line2 {
        font-size: 2rem;
    }

    .hero-title .ht-line3 {
        font-size: 2.5rem;
    }

    .section-title span {
        font-size: 0.85em;
        display: block;
        margin-top: 5px;
    }
}

/* Prevent horizontal scroll (anti-overflow catch-all) */
html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
}