/* =====================
   1. Imports & Variables
   ===================== */
@import url('https://fonts.googleapis.com/css2?family=Style+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Truculenta:opsz,wght@12..72,100..900&display=swap');
@import '@ibm/plex-sans/css/ibm-plex-sans.css';
@import '@fontsource/truculenta';
@import '@fontsource/style-script';

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-gray: #f4f4f4;
    --white: #ffffff;
    --max-width: 1200px;
    --poppy-red: rgba(227, 83, 53, 0.9);
    --benefit-bg: #2C2C2C;
    --font-primary: 'IBM Plex Sans', sans-serif;
    --font-style-script: 'Style Script', cursive;
    --font-truculenta: 'Truculenta', sans-serif;
}

/* =====================
   2. Global/Reset Styles
   ===================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
    background: none;
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

body {
    line-height: 1.6;
    color: var(--text-color);
}

/* =====================
   3. Utility Classes
   ===================== */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding-left: 48px;
    padding-right: 48px;
    width: 100%;
}
.text-center {
    text-align: center;
}
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* =====================
   4. Navbar
   ===================== */
.custom-navbar {
    width: 100%;
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.6s cubic-bezier(0.4,0,0.2,1), padding 0.6s cubic-bezier(0.4,0,0.2,1), min-height 0.6s cubic-bezier(0.4,0,0.2,1);
    padding: 1rem 0;
    position: fixed;
    background-color: transparent;
}
.custom-navbar:hover {
    background-color: transparent;
}
.navbar-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.navbar-logo-outer {
    position: absolute;
    top: -42px;
    left: 0;
    padding-left: 48px;
    z-index: 1100;
    pointer-events: auto;
}
.navbar-logo-outer img {
    height: 150px;
    width: auto;
    display: block;
}
.navbar-left {
    flex: 0 0 auto;
}
.navbar-logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    font-family: 'IBM Plex Sans', sans-serif;
    transition: color 0.3s ease;
}
.custom-navbar:not(.scrolled) .navbar-logo {
    color: #000;
}
.navbar-center-wrapper {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    position: static;
    transform: none;
}
.navbar-center {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.navbar-center li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans', sans-serif;
    padding: 0.5rem 1rem;
}
.custom-navbar:not(.scrolled) .navbar-center li a {
    color: #000000;
}
.navbar-center li a:hover, .navbar-center li a:focus {
    color: rgba(255, 255, 255, 0.8);
}
.custom-navbar:not(.scrolled) .navbar-center li a:hover {
    color: #E35335;
}
/* Navbar menu links hover (except the contact button) */
.navbar-center li a:not(.navbar-btn):hover,
.navbar-center li a:not(.navbar-btn):focus {
    color: #E35335;
}
.navbar-right {
    flex: 0 0 auto;
    text-align: right;
}
.navbar-btn {
    background: #fff;
    color: #E35335;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans', sans-serif;
}
.custom-navbar:not(.scrolled) .navbar-btn {
    background: #E35335;
    color: #fff;
}
.custom-navbar.scrolled .navbar-btn {
    background: #fff;
    color: #000;
}
/* Navbar menu links turn black when scrolled, except the contact button */
.custom-navbar.scrolled .navbar-center li a:not(.navbar-btn) {
    color: #000 !important;
}
/* Contact button always orange background and black text, even on hover and when scrolled */
.navbar-center li a.navbar-btn,
.custom-navbar.scrolled .navbar-center li a.navbar-btn,
.navbar-center li a.navbar-btn:hover,
.custom-navbar.scrolled .navbar-center li a.navbar-btn:hover,
.navbar-center li a.navbar-btn:focus,
.custom-navbar.scrolled .navbar-center li a.navbar-btn:focus {
    background: #E35335 !important;
    color: #fff !important;
    border: 2px solid #E35335 !important;
}

/* Dropdown Menu Styles - Bootstrap Only */

/* Hamburger styles */
.navbar-hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: flex-end;
    padding: 0.5rem;
    background: transparent;
    border: none;
    outline: none;
    transition: background 0.2s;
}
.navbar-hamburger:hover {
    background: rgba(0,0,0,0.05);
    border-radius: 6px;
}
.navbar-hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}
.custom-navbar:not(.scrolled) .navbar-hamburger span {
    background: #000;
}

/* =====================
   5. Hero Section
   ===================== */
.hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../public/images/home/S800\ film_\ school&installer_home.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: var(--white);
    z-index: 1;
    padding: 0;
}

.hero-content {
    max-width: 1200px;
    padding-left: 48px;
    padding-right: 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: 'Style Script', cursive !important;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-divider {
    width: 220px;
    height: 4px;
    background-color: #E35335;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #fff;
    max-width: 800px;
    font-family: 'Truculenta', sans-serif !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.residential-hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../public/images/residential/residentialHero.jpg');
    background-size: cover;
    background-position: 25% 40%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: var(--white);
    z-index: 1;
    padding: 0;
}

.residential-decorative-hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../public/images/res-decorative/hero_res_decorative.jpg');
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: var(--white);
    z-index: 1;
    padding: 0;
    object-fit: cover;
}

.residential-solar-control-hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../public/images/res-solar-control/hero_res_solar_control.jpg');
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: var(--white);
    z-index: 1;
    padding: 0;
    object-fit: cover;
}

.commercial-decorative-hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../public/images/com-decorative/hero_com_decorative.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: var(--white);
    z-index: 1;
    padding: 0;
}

.commercial-graffiti-hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../public/images/com-graffiti/hero_com_graffiti.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: var(--white);
    z-index: 1;
    padding: 0;
}

.residential-hero .hero-content p,
.residential-decorative-hero .hero-content p,
.residential-solar-control-hero .hero-content p,
.commercial-hero .hero-content p,
.commercial-decorative-hero .hero-content p,
.commercial-graffiti-hero .hero-content p,
.about-hero .hero-content p,
.contracting-hero .hero-content p,
.training-hero .hero-content p,
.contact-hero .hero-content p {
    font-size: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-btn {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-btn {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.about-btn:hover {
    background-color: #fff;
    color: #000;
}

.contact-btn {
    background-color: #ff6b00;
    border: 2px solid #ff6b00;
    color: #fff;
}

.contact-btn:hover {
    background-color: #fff;
    border-color: #fff;
    color: #ff6b00;
}

/* =====================
   5A. Hero Carousel Section (Updated)
   ===================== */

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-slides {
    width: 600%;
    height: 100%;
    display: flex;
    transition: transform 2.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0%);
}

.carousel-slide {
    width: 16.6666666667%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.slide-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-text {
    max-width: 800px;
    text-align: left;
    padding: 0;
    color: #fff;
    z-index: 3;
    position: relative;
}

.slide-text h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: 'Style Script', cursive !important;
    font-weight: 400;
    line-height: 1.2;
}

.slide-text .hero-divider {
    width: 220px;
    height: 4px;
    background-color: #fff;
    margin: 0 0 2rem 0;
}

.slide-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #fff;
    max-width: 600px;
}

.slide-text .hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: flex-start;
    align-items: center;
}

.slide-text .hero-btn {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans', sans-serif;
    display: inline-block;
    text-align: center;
}

.slide-text .about-btn {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.slide-text .about-btn:hover {
    background-color: #fff;
    color: #E35335;
}

.slide-text .contact-btn {
    background-color: #E35335;
    border: 2px solid #E35335;
    color: #fff;
}

.slide-text .contact-btn:hover {
    background-color: #fff;
    border-color: #fff;
    color: #E35335;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
    pointer-events: none;
}

.carousel-btn {
    background: none;
    border: none;
    color: #fff;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 2rem;
    pointer-events: auto;
    padding: 0.5rem;
}

.carousel-btn:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

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

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: #E35335;
    border-color: #fff;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Carousel Slide Overlay */
.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

/* Carousel Responsive Styles */
@media (max-width: 768px) {
    .slide-content {
        padding: 2rem 1rem;
        justify-content: flex-start;
    }
    
    .slide-text {
        max-width: 100%;
        padding: 0;
    }
    
    .slide-text h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .slide-text .hero-divider {
        width: 150px;
        height: 3px;
        margin: 0 0 1.5rem 0;
    }
    
    .slide-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-text .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .slide-text .hero-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
    }
    
    .carousel-nav {
        bottom: 1rem;
        right: 1rem;
        gap: 0.5rem;
    }
    
    .carousel-btn {
        font-size: 1.5rem;
        padding: 0.3rem;
    }
    
    .carousel-indicators {
        bottom: 1rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .slide-text h2 {
        font-size: 2rem;
    }
    
    .slide-text .hero-divider {
        width: 120px;
        height: 2px;
        margin: 0 0 1.5rem 0;
    }
    
    .slide-text p {
        font-size: 0.9rem;
    }
    
    .slide-text .hero-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .carousel-btn {
        font-size: 1.2rem;
        padding: 0.2rem;
    }
}

/* =====================
   6. Bio Cards Section
   ===================== */
.bio-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.bio-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.bio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.bio-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    margin: 0;
}

.bio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.bio-card:hover .bio-image img {
    transform: scale(1.02);
}

.bio-info {
    padding: 1.5rem 1rem;
    background: #fff;
    color: #232323;
}

.bio-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #232323;
    margin-bottom: 0.75rem;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bio-info p {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-family: 'IBM Plex Sans', sans-serif;
}


/* About Section Responsive */
@media (max-width: 768px) {
    .about {
        padding: 3rem 1.5rem;
    }
    
    .about-header .services-main-title {
        font-size: 2.5rem;
    }
    
    .about-intro {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-header .services-main-title {
        font-size: 2rem;
    }
    
    .about-intro {
        font-size: 1rem;
    }
}

/* Bio Cards Responsive */
@media (max-width: 900px) {
    .bio-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .bio-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .bio-image {
        height: 220px;
    }
    
    .bio-info {
        padding: 1.5rem 1rem;
    }
    
    .bio-info h3 {
        font-size: 1.2rem;
    }
    
    .bio-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .bio-cards {
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .bio-image {
        height: 200px;
    }
    
    .bio-info {
        padding: 1.25rem 1rem;
    }
    
    .bio-info h3 {
        font-size: 1.1rem;
    }
    
    .bio-info p {
        font-size: 0.85rem;
    }
}

/* =====================
   7. Training Advantage Section
   ===================== */
.training-advantage {
    padding: 5rem 24px;
    background: #fff;
    text-align: center;
}

.advantage-subtitle {
    font-size: 1rem;
    color: #E35335;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.training-advantage h2 {
    font-size: 3rem;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.advantage-description {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.advantage-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 100%;
    margin: 0 auto;
}

.advantage-card {
    background: #fff;
    border: 1px solid #000;
    border-radius: 0;
    padding: 2rem 48px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.advantage-card p {
    font-size: 1.4rem;
    color: #000;
    font-weight: 900;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.advantage-card h3 {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* =====================
   Training Advantage Section - Responsive
   ===================== */
@media (max-width: 900px) {
    .training-advantage {
        padding: 4rem 24px;
    }
    
    .training-advantage h2 {
        font-size: 2.5rem;
    }
    
    .advantage-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 600px;
    }
    
    .advantage-card {
        padding: 1.5rem 32px;
    }
}

@media (max-width: 768px) {
    .training-advantage {
        padding: 3rem 16px;
    }
    
    .training-advantage h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .advantage-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .advantage-cards {
        gap: 16px;
        max-width: 100%;
    }
    
    .advantage-card {
        padding: 1.5rem 24px;
    }
    
    .advantage-card p {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .advantage-card h3 {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .training-advantage {
        padding: 2.5rem 12px;
    }
    
    .advantage-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .training-advantage h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .advantage-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .advantage-cards {
        gap: 12px;
    }
    
    .advantage-card {
        padding: 1.2rem 16px;
    }
    
    .advantage-card p {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .advantage-card h3 {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* =====================
   Training Overview Section
   ===================== */
.training-overview-section {
    padding: 5rem 0;
    background: #fff;
}

.training-overview-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.training-overview-left {
    flex: 1;
    max-width: 60%;
}

.training-overview-header {
    margin-bottom: 2rem;
}

.training-overview-tagline {
    font-size: 1rem;
    color: #E35335;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.training-overview-title {
    font-size: 2.5rem;
    color: #000;
    margin: 0 0 2rem 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.training-overview-left h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 2rem;
    font-weight: 700;
}

.training-overview-left p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.training-overview-left p:last-child {
    margin-bottom: 0;
}

.training-overview-left p:has(strong) {
    background: #fff;
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(227, 83, 53, 0.3);
    border: 1px solid #e0e0e0;
    font-size: 1.1rem;
    color: #000;
    line-height: 1.6;
}

.training-overview-left p:has(strong) strong {
    font-weight: 700;
    font-size: 1.2rem;
}

.training-overview-right {
    flex: 1;
    position: relative;
}

.training-overview-image-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: visible;
    border-radius: 0;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
}

.training-overview-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.training-overview-text-overlay {
    position: absolute;
    bottom: -2rem;
    right: 2rem;
    width: 300px;
    background: rgba(0, 0, 0, 0.9);
    padding: 2rem;
    color: #fff;
    z-index: 2;
}

.training-overview-text-overlay p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Training Overview Section Responsive */
@media (max-width: 768px) {
    .training-overview-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 24px;
    }
    
    .training-overview-left {
        max-width: 100%;
    }
    
    .training-overview-header {
        margin-bottom: 1.5rem;
    }
    
    .training-overview-tagline {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    
    .training-overview-title,
    .training-overview-left h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .training-overview-image-wrapper {
        height: 300px;
    }
    
    .training-overview-text-overlay {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .training-overview-section {
        padding: 3rem 0;
    }
    
    .training-overview-container {
        padding: 0 16px;
    }
    
    .training-overview-header {
        margin-bottom: 1.25rem;
    }
    
    .training-overview-tagline {
        font-size: 0.9rem;
        margin-bottom: 0.35rem;
    }
    
    .training-overview-title,
    .training-overview-left h2 {
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }
    
    .training-overview-left p {
        font-size: 1rem;
    }
    
    .training-overview-image-wrapper {
        height: 250px;
    }
    
    .training-overview-text-overlay {
        padding: 1rem;
    }
    
    .training-overview-text-overlay p {
        font-size: 0.9rem;
    }
}

/* =====================
   Team Section
   ===================== */
.team-section .commercial-service-card {
    height: 500px;
}

.team-section .service-card-content {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 3;
    width: calc(100% - 24px);
    height: 170px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.team-section .service-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    width: 100%;
    white-space: nowrap;
    overflow: visible;
    position: relative;
    top: 0;
    text-align: left;
    align-self: flex-start;
}

.team-section .team-description {
    font-size: 1rem;
    color: #fff;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
    width: 100%;
    overflow: visible;
    white-space: normal;
}

.team-section .commercial-service-card .service-card-content {
    bottom: 12px !important;
    left: 12px !important;
    right: 12px !important;
}

.team-section .commercial-service-card::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg, rgba(30,30,30,0.12) 40%, rgba(0,0,0,0.9) 100%) !important;
    z-index: 1 !important;
}

.team-section .commercial-service-card::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 180px !important;
    background: rgba(0,0,0,0.8) !important;
    z-index: 1 !important;
}

.team-section .services-main-desc {
    max-width: 100%;
    margin: 0 auto 2rem auto;
    padding: 0 48px;
}

/* =====================
   Training Application Form Section
   ===================== */
.unique-training-application {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 4px solid #e35335;
}

.unique-training-application .project-quote-title {
    color: #e35335;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.unique-training-application .image-container {
    box-shadow: 0 8px 24px rgba(227, 83, 53, 0.6);
    border: 2px solid rgba(227, 83, 53, 0.2);
}

.unique-training-application .quote-btn {
    background: linear-gradient(135deg, #e35335 0%, #c9452a 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(227, 83, 53, 0.4);
    transition: all 0.3s ease;
}

.unique-training-application .quote-btn:hover {
    background: linear-gradient(135deg, #c9452a 0%, #b03d25 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(227, 83, 53, 0.5);
}

/* =====================
   8. Training Section
   ===================== */

/* Index Page Training Section - Original Design */
.index-training-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: visible;
}

.index-training-section .index-training-hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../public/images/home/index_Tbg.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.index-training-hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../public/images/home/index_Tbg.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

/* Training Page Hero Section */
.training-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: visible;
}

.training-hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../public/images/trainings/training_hero.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}


.training-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.training-left {
    flex: 1;
    max-width: 60%;
    padding-right: 2rem;
}

.training-since {
    font-size: 1rem;
    color: #ccc;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    position: relative;
}

.training-since::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    width: 1.5rem;
    height: 1px;
    background: #ccc;
}

.training-main-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #E35335;
    line-height: 0.9;
    margin: 0 0 2rem 0;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 4px 4px 16px rgba(0, 0, 0, 0.8), 2px 2px 8px rgba(0, 0, 0, 0.6), 0px 0px 4px rgba(0, 0, 0, 0.4);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
}

.training-description {
    max-width: 500px;
}

.training-description p {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.training-description strong {
    color: #fff;
    font-weight: 700;
}

.training-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.training-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 2rem;
}

.training-cta-box {
    background: #000;
    padding: 2rem;
    max-width: 400px;
    position: absolute;
    right: 2rem;
    bottom: -2rem;
    z-index: 10;
}

.training-slogan {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.training-impact {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: 'IBM Plex Sans', sans-serif;
}

.training-cta-text {
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.5;
    font-weight: 400;
}

.training-inset {
    position: absolute;
    bottom: 2rem;
    right: 26rem;
    width: 250px;
    height: 300px;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.training-inset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Training Section Responsive */
@media (max-width: 1024px) {
    .training-content {
        padding: 0 2rem;
    }
    
    .training-main-title {
        font-size: 3.5rem;
    }
    
    .training-cta-box {
        max-width: 350px;
        padding: 1.5rem;
        right: 2rem;
        bottom: 2rem;
    }
    
    .training-inset {
        width: 200px;
        height: 250px;
        right: 24rem;
        bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .training-section {
        height: 80vh;
    }
    
    .training-content {
        flex-direction: column;
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .training-left {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .training-main-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .training-description {
        max-width: 100%;
    }
    
    .training-buttons {
        gap: 0.75rem;
    }
    
    .training-right {
        justify-content: center;
        align-items: center;
        padding-bottom: 0;
    }
    
    .training-cta-box {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: 100%;
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .training-impact {
        font-size: 1.5rem;
    }
    
    .training-inset {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 2rem auto 0;
        width: 160px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .training-section {
        height: 70vh;
    }
    
    .training-content {
        padding: 1.5rem 1rem;
    }
    
    .training-main-title {
        font-size: 2.5rem;
    }
    
    .training-description p {
        font-size: 1rem;
    }
    
    .training-buttons {
        gap: 0.5rem;
        flex-direction: column;
    }
    
    .training-cta-box {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .training-impact {
        font-size: 1.3rem;
    }
    
    .training-cta-text {
        font-size: 0.9rem;
    }
    
    .training-inset {
        width: 140px;
        height: 180px;
        margin: 1.5rem auto 0;
    }
}

/* =====================
   Index Training Section - Responsive (Footer Structure Pattern)
   ===================== */

/* Large Desktop - 1024px and above */
@media (min-width: 1024px) {
    .index-training-section {
        height: 100vh;
    }
    
    .index-training-hero {
        height: 100vh;
        background-attachment: fixed !important;
    }
    
    .index-training-section .training-content {
        padding: 0 4rem;
    }
    
    .index-training-section .training-main-title {
        font-size: 4rem;
    }
    
    .index-training-section .training-cta-box {
        max-width: 400px;
        padding: 2rem;
        right: 2rem;
        bottom: -2rem;
    }
    
    .index-training-section .training-inset {
        width: 250px;
        height: 300px;
        right: 26rem;
        bottom: 2rem;
        z-index: 1;
    }
}

/* Desktop - 1024px */
@media (max-width: 1024px) {
    .index-training-section {
        height: 100vh;
    }
    
    .index-training-hero {
        height: 100vh;
        background-attachment: scroll !important;
    }
    
    .index-training-section .training-content {
        padding: 0 2rem;
    }
    
    .index-training-section .training-main-title {
        font-size: 3.5rem;
    }
    
    .index-training-section .training-cta-box {
        max-width: 350px;
        padding: 1.5rem;
        right: 2rem;
        bottom: 2rem;
    }
    
    .index-training-section .training-inset {
        width: 200px;
        height: 250px;
        right: 24rem;
        bottom: 2rem;
        z-index: 1;
    }
}

/* Tablet - 768px */
@media (max-width: 768px) {
    .index-training-section {
        height: 80vh;
    }
    
    .index-training-hero {
        height: 80vh;
        background-attachment: scroll !important;
    }
    
    .index-training-section .training-content {
        flex-direction: column;
        padding: 2rem 1.5rem;
        text-align: center;
        gap: 2rem;
    }
    
    .index-training-section .training-left {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 0;
    }
    
    .index-training-section .training-main-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .index-training-section .training-description {
        max-width: 100%;
    }
    
    .index-training-section .training-description p {
        font-size: 1.1rem;
    }
    
    .index-training-section .training-buttons {
        gap: 0.75rem;
        justify-content: center;
    }
    
    .index-training-section .training-right {
        justify-content: center;
        align-items: center;
        padding-bottom: 0;
    }
    
    .index-training-section .training-cta-box {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: 100%;
        padding: 1.5rem;
        margin: 0;
    }
    
    .index-training-section .training-impact {
        font-size: 1.5rem;
    }
    
    .index-training-section .training-inset {
        position: relative;
        right: auto;
        bottom: auto;
        width: 180px;
        height: 220px;
        margin: 1rem auto;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    .index-training-section {
        height: 70vh;
    }
    
    .index-training-hero {
        height: 70vh;
        background-attachment: scroll !important;
    }
    
    .index-training-section .training-content {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }
    
    .index-training-section .training-main-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .index-training-section .training-since {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .index-training-section .training-description p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .index-training-section .training-buttons {
        gap: 0.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .index-training-section .training-cta-box {
        padding: 1.2rem;
    }
    
    .index-training-section .training-slogan {
        font-size: 0.8rem;
    }
    
    .index-training-section .training-impact {
        font-size: 1.3rem;
    }
    
    .index-training-section .training-cta-text {
        font-size: 0.9rem;
    }
    
    .index-training-section .training-inset {
        width: 150px;
        height: 180px;
    }
}

/* Small Mobile - 300px to 400px */
@media (min-width: 300px) and (max-width: 400px) {
    .index-training-section {
        height: auto;
        min-height: 100vh;
        padding-bottom: 2rem;
    }
    
    .index-training-hero {
        height: auto;
        min-height: 100vh;
        background-attachment: scroll !important;
        padding-bottom: 2rem;
    }
    
    .index-training-section .training-content {
        text-align: left;
        padding: 1rem 0.8rem 1rem;
        gap: 1rem;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        min-height: auto;
        height: auto;
    }
    
    .index-training-section .training-left {
        text-align: left;
        width: 100%;
        order: 1;
    }
    
    .index-training-section .training-main-title {
        text-align: left;
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    
    .index-training-section .training-since {
        text-align: left;
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }
    
    .index-training-section .training-description {
        text-align: left;
    }
    
    .index-training-section .training-description p {
        text-align: left;
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .index-training-section .training-buttons {
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0.4rem;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 0.8rem;
        order: 2;
    }
    
    .index-training-section .training-buttons .hero-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        min-width: 100px;
        text-align: center;
        flex: 1;
        max-width: 140px;
        white-space: nowrap;
    }
    
    .index-training-section .training-right {
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        order: 3;
        margin-top: 0.8rem;
        margin-bottom: 0;
        height: auto;
    }
    
    .index-training-section .training-cta-box {
        text-align: left;
        padding: 0.6rem;
        width: 100%;
        max-width: 100%;
        position: relative;
        right: auto;
        bottom: auto;
        margin: 0;
        height: auto;
        min-height: auto;
        border-radius: 8px;
    }
    
    .index-training-section .training-slogan {
        text-align: left;
        font-size: 0.65rem;
        margin-bottom: 0.2rem;
    }
    
    .index-training-section .training-impact {
        text-align: left;
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .index-training-section .training-cta-text {
        text-align: left;
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .index-training-section .training-inset {
        display: none;
    }
}

/* Small Mobile - 401px to 500px */
@media (min-width: 401px) and (max-width: 500px) {
    .index-training-section {
        height: auto;
        min-height: 100vh;
        padding-bottom: 2rem;
    }
    
    .index-training-hero {
        height: auto;
        min-height: 100vh;
        background-attachment: scroll !important;
        padding-bottom: 2rem;
    }
    
    .index-training-section .training-content {
        text-align: left;
        padding: 1.2rem 1rem 1.2rem;
        gap: 1.2rem;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        min-height: auto;
        height: auto;
    }
    
    .index-training-section .training-left {
        text-align: left;
        width: 100%;
        order: 1;
    }
    
    .index-training-section .training-main-title {
        text-align: left;
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .index-training-section .training-since {
        text-align: left;
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
    
    .index-training-section .training-description {
        text-align: left;
    }
    
    .index-training-section .training-description p {
        text-align: left;
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
        line-height: 1.4;
    }
    
    .index-training-section .training-buttons {
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0.5rem;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 1rem;
        order: 2;
    }
    
    .index-training-section .training-buttons .hero-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        min-width: 110px;
        text-align: center;
        flex: 1;
        max-width: 150px;
        white-space: nowrap;
    }
    
    .index-training-section .training-right {
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        order: 3;
        margin-top: 1rem;
        margin-bottom: 0;
        height: auto;
    }
    
    .index-training-section .training-cta-box {
        text-align: left;
        padding: 0.8rem;
        width: 100%;
        max-width: 100%;
        position: relative;
        right: auto;
        bottom: auto;
        margin: 0;
        height: auto;
        min-height: auto;
        border-radius: 8px;
    }
    
    .index-training-section .training-slogan {
        text-align: left;
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }
    
    .index-training-section .training-impact {
        text-align: left;
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .index-training-section .training-cta-text {
        text-align: left;
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .index-training-section .training-inset {
        display: none;
    }
}

/* Mobile - 501px to 750px */
@media (min-width: 501px) and (max-width: 750px) {
    .index-training-section {
        height: auto;
        min-height: 100vh;
        padding-bottom: 2rem;
    }
    
    .index-training-hero {
        height: auto;
        min-height: 100vh;
        background-attachment: scroll !important;
        padding-bottom: 2rem;
    }
    
    .index-training-section .training-content {
        text-align: left;
        padding: 1.5rem 1.5rem 1.5rem;
        gap: 1.5rem;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        min-height: auto;
        height: auto;
    }
    
    .index-training-section .training-left {
        text-align: left;
        width: 100%;
        order: 1;
    }
    
    .index-training-section .training-main-title {
        text-align: left;
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .index-training-section .training-since {
        text-align: left;
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .index-training-section .training-description {
        text-align: left;
    }
    
    .index-training-section .training-description p {
        text-align: left;
        font-size: 0.9rem;
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }
    
    .index-training-section .training-buttons {
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0.6rem;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 1.2rem;
        order: 2;
    }
    
    .index-training-section .training-buttons .hero-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        min-width: 120px;
        text-align: center;
        flex: 1;
        max-width: 160px;
        white-space: nowrap;
    }
    
    .index-training-section .training-right {
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        order: 3;
        margin-top: 1.2rem;
        margin-bottom: 0;
        height: auto;
    }
    
    .index-training-section .training-cta-box {
        text-align: left;
        padding: 1rem;
        width: 100%;
        max-width: 100%;
        position: relative;
        right: auto;
        bottom: auto;
        margin: 0;
        height: auto;
        min-height: auto;
        border-radius: 8px;
    }
    
    .index-training-section .training-slogan {
        text-align: left;
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
    
    .index-training-section .training-impact {
        text-align: left;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .index-training-section .training-cta-text {
        text-align: left;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .index-training-section .training-inset {
        display: none;
    }
}

/* Tablet - 750px to 872px */
@media (min-width: 750px) and (max-width: 872px) {
    .index-training-section {
        height: 100vh;
    }
    
    .index-training-hero {
        height: 100vh;
        background-attachment: scroll !important;
    }
    
    .index-training-section .training-content {
        padding: 0 2rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }
    
    .index-training-section .training-left {
        flex: 1;
        max-width: 60%;
        padding-right: 2rem;
        order: 1;
    }
    
    .index-training-section .training-main-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .index-training-section .training-since {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .index-training-section .training-description p {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    
    .index-training-section .training-buttons {
        gap: 0.8rem;
        flex-direction: row;
        margin-top: 1.5rem;
        order: 2;
    }
    
    .index-training-section .training-buttons .hero-btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
        min-width: 130px;
        text-align: center;
        flex: 1;
        max-width: 180px;
        white-space: nowrap;
    }
    
    .index-training-section .training-right {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        padding-bottom: 2rem;
        order: 3;
    }
    
    .index-training-section .training-cta-box {
        background: #000;
        padding: 1.5rem;
        max-width: 350px;
        position: absolute;
        right: 2rem;
        bottom: -2rem;
        z-index: 10;
    }
    
    .index-training-section .training-slogan {
        font-size: 0.8rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 0.5rem;
    }
    
    .index-training-section .training-impact {
        font-size: 1.2rem;
        color: #fff;
        font-weight: 700;
        margin-bottom: 0.6rem;
    }
    
    .index-training-section .training-cta-text {
        font-size: 0.9rem;
        color: #fff;
        line-height: 1.4;
    }
    
    .index-training-section .training-inset {
        position: absolute;
        bottom: 2rem;
        right: 20rem;
        width: 200px;
        height: 250px;
        z-index: 1;
    }
}

/* =====================
   8. Services Section
   ===================== */
.services {
    padding: 5rem 2rem;
    background-color: var(--light-gray);
}
.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* =====================
   7. About Section
   ===================== */
.about {
    padding: 5rem 2rem;
    background: #FFF8E7;
}

.about-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

.about-header .explore-your-film {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #E35335;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.about-header .services-main-title {
    font-family: 'Style Script', cursive;
    font-size: 3.5rem;
    font-weight: 400;
    color: #232323;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-intro {
    font-family: 'Truculenta', sans-serif;
    font-size: 1.3rem;
    color: #232323;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #232323;
}
.about-content {
    max-width: var(--max-width);
    margin: 0 auto;
}

.about-hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../public/images/about/aboutHero1.JPG');
    background-size: cover;
    background-position: right 10%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: var(--white);
    z-index: 1;
    padding: 0;
}

.about-hero .hero-content p {
    font-size: 2rem;
}

/* =====================
   8. Gallery Section
   ===================== */
.gallery {
    padding: 0;
    margin: 0;
    background-color: var(--light-gray);
}
.gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* =====================
   9. Contact Section
   ===================== */
.contact {
    background: #fdf6e3;
    padding: 48px;
    box-sizing: border-box;
    margin: 48px auto;
    padding: 0;
    border: none;
}
.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}
.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-hero .hero-content p {
    font-size: 2rem;
}

/* =====================
   10. Footer
   ===================== */
footer {
    background: linear-gradient(90deg, #FFF8E7 0%, #FFF8E7 33%, #CBDCEB 33%, #CBDCEB 100%);
    color: var(--white);
    padding: 3rem 2rem 0;
    margin-top: 64px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-bottom: 2rem;
}

/* Footer Logo Section */
.footer-logo-section {
    position: relative;
    padding: 0;
    margin-right: 1rem;
    display: block;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    min-height: 400px;
    overflow: visible;
}

.footer-logo {
    position: absolute;
    top: -20px; /* Manually adjust for specifications */
    left: -120px; /* Manually adjust for specifications */
    margin: 0;
    z-index: 10;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
    margin: 0;
    display: block;
    /* SVG manually color specification - adjust filter values for different colors */
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%); /* Poppy red color filter */
}

.footer-tagline-text {
    position: absolute;
    top: 166px; /* 16px margin from logo (150px logo height + 16px margin) */
    left: -120px; /* Manually adjust for specifications */
    z-index: 10;
}

.tagline-main {
    font-size: 2.5rem; /* Smaller size */
    font-weight: 300; /* Light weight like script font */
    color: #133E87; /* Blue */
    margin: 0 0 0.2rem 0;
    line-height: 1.1;
    font-family: 'Georgia', serif; /* Script-like font */
    font-style: italic; /* Elegant script style */
}

.tagline-standard {
    font-size: 4rem; /* Large size to cover dark blue section */
    font-weight: 800; /* Bold weight */
    color: #FF4444; /* White color */
    margin: 0;
    line-height: 1.1;
    font-family: 'Arial', sans-serif; /* Clean sans-serif */
    
}

/* Training Overlay */
.training-overlay {
    background: #133E87;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 6rem 1.5rem 0 0;
    box-shadow: 0 4px 15px rgba(19, 62, 135, 0.3);
    position: relative;
}

.training-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    z-index: 1;
}

.training-overlay::after {
    content: 'COMING SOON!';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #E35335;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
    font-family: 'Truculenta', sans-serif;
}

.overlay-title {
    color: #E35335 !important;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    font-family: 'Truculenta', sans-serif;
}

.overlay-description {
    color: #fff;
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.overlay-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.overlay-email-field {
    flex: 1;
    min-width: 180px;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9rem;
    background: #fff;
}

.overlay-email-field:focus {
    outline: none;
    border-color: #E35335;
    box-shadow: 0 0 0 2px rgba(227, 83, 53, 0.2);
}

.overlay-enroll-btn {
    background: #E35335;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.overlay-enroll-btn:hover {
    background: #d1462a;
}

/* Mobile responsive for training overlay */
@media (max-width: 768px) {
    .training-overlay {
        padding: 1rem;
        margin: 4rem 1rem 0 0;
    }
    
    .training-overlay::after {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .overlay-title {
        font-size: 1.1rem;
        color: #E35335 !important;
    }
    
    .overlay-description {
        font-size: 0.85rem;
    }
    
    .overlay-form {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .overlay-email-field {
        min-width: auto;
    }
}

/* Column 2: All Content Sections (Right side - Light blue) */
.footer-content-section {
    color: #333;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-subsection {
    margin-bottom: 0;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #E35335;
    font-weight: 600;
}

/* Contact Details */
.contact-details {
    margin-bottom: 2rem;
}

.contact-details p {
    margin-bottom: 0.75rem;
    color: #555;
    font-size: 0.95rem;
}

.contact-details i {
    margin-right: 0.5rem;
    color: #E35335;
    width: 16px;
}

/* Social Media */
.social-media {
    margin-top: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #133E87;
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #0d2a5f;
    transform: translateY(-2px);
}

.social-icon i {
    font-size: 1.1rem;
    color: #E35335;
}

/* Footer Separator and Bottom Content */
.footer-separator {
    border: none;
    height: 1px;
    background-color: #999;
    margin: 2rem 0 1.5rem 0;
}

.footer-bottom-content {
    text-align: left;
    color: #333;
    grid-column: 1 / -1;
    margin-top: 2rem;
}

.footer-bottom-content p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.madico-dealer {
    font-weight: 600;
    color: #E35335;
}

.image-disclaimer {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    
    .footer-content-section {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    footer {
        background: #FFF8E7;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    
    .footer-content-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content-section {
        color: var(--white);
    }
    
    .footer-section h3,
    .footer-section h4 {
        color: var(--white);
    }
    
    .footer-section a {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .footer-section a:hover {
        color: #E35335;
    }
    
    .contact-details p {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .contact-details i {
        color: #E35335;
    }
    
    .footer-bottom-content {
        color: var(--white);
    }
    
    .footer-bottom-content p {
        color: var(--white);
    }
    
    .image-disclaimer {
        color: rgba(255, 255, 255, 0.8);
    }
    
    .footer-separator {
        background-color: rgba(255, 255, 255, 0.3);
    }
    
    .footer-content-section .social-icons {
        gap: 0.9rem;
    }
    
    .footer-content-section .social-icon {
        width: 38px;
        height: 38px;
        font-size: 1.05rem;
    }
    
    .footer-content-section .contact-details p {
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .footer-content-section .social-icons {
        gap: 0.85rem;
    }
    
    .footer-content-section .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .footer-content-section .contact-details p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-content-section .social-icons {
        gap: 0.75rem;
    }
    
    .footer-content-section .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }
    
    .footer-content-section .contact-details p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
}

/* =====================
   11. Remove Old/Deprecated Styles
   ===================== */
.navbar, .nav-links, .logo, .hamburger { display: none !important; }
.navbar, .logo {
    background: none !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    min-width: 0 !important;
    box-shadow: none !important;
}

/* =====================
   12. Responsive/Media Queries
   ===================== */
@media (max-width: 1035px) {
    .navbar-center-wrapper { 
        position: relative; 
        width: 100%; 
        display: block; 
    }
    .navbar-center { 
        display: none; 
        flex-direction: column; 
        gap: 1rem; 
        padding: 1rem; 
        background: rgba(255,255,255,0.92); 
        position: absolute; 
        top: 100%; 
        left: 0; 
        right: 0; 
        text-align: center; 
        box-shadow: 0 4px 16px rgba(0,0,0,0.12); 
        border-radius: 0 0 12px 12px; 
        z-index: 100; 
    }
    .navbar-center.show { 
        display: flex !important; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        right: 0; 
        background: rgba(255,255,255,0.92); 
        z-index: 1000; 
    }
    .navbar-hamburger { 
        display: flex; 
    }
    .navbar-left, .navbar-right { 
        flex: 0 0 auto; 
    }
    
    .custom-navbar.scrolled .navbar-center {
        background: transparent !important;
    }
    
    .custom-navbar.scrolled .navbar-center li a {
        color: #fff;
    }
} 
@media (max-width: 600px) {
    .navbar-logo-outer img {
        height: 64px;
    }
    .navbar-logo-outer {
        top: -32px;
    }
    .contact {
        padding: 18px;
    }
}

/* On scrolled navbar, menu links hover to poppy red */
.custom-navbar.scrolled .navbar-center li a:not(.navbar-btn):hover,
.custom-navbar.scrolled .navbar-center li a:not(.navbar-btn):focus {
    color: #E35335 !important;
}

/* On scrolled navbar, Contact Us button hover: background #F2C078, text black */
.custom-navbar.scrolled .navbar-center li a.navbar-btn:hover,
.custom-navbar.scrolled .navbar-center li a.navbar-btn:focus {
    background: #F2C078 !important;
    color: #000 !important;
}

/* =====================
   Film Solutions Section
   ===================== */
.film-solutions {
    width: 100%;
    background: #E35335;
    padding: 48px 48px;
    box-sizing: border-box;
}
.film-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 48px;
    max-width: 1300px;
    margin: 0 auto;
    justify-content: center;
}
.film-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: transparent;
    border-radius: 16px;
    padding: 24px 24px 32px 24px;
    box-sizing: border-box;
    max-width: 600px;
    width: 100%;
    position: relative;
}
.film-title {
    width: 100%;
    display: block;
    font-family: 'Style Script', cursive;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 400;
}
.film-image-wrapper {
    position: relative;
    width: 100%;
}
.film-image {
    width: 100%;
    max-width: 600px;
    height: 340px;
    object-fit: cover;
    display: block;
    margin: 0 0 24px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    background: #fff;
}
.film-desc {
    font-family: 'Truculenta', sans-serif;
    font-size: 1.15rem;
    color: #fff;
    text-align: left;
    margin: 0;
    font-weight: 400;
    line-height: 1.7;
}
.film-learn-abs {
    position: absolute;
    left: 24px;
    bottom: 40px;
    z-index: 2;
    margin: 0;
}
@media (max-width: 900px) {
    .film-grid {
        grid-template-columns: 1fr;
    }
    .film-solutions {
        padding: 32px 12px;
    }
}

.film-solutions-secondary {
    margin-top: 64px;
}

/* =====================
   4A. 1950s-Inspired Navbar Redesign
   ===================== */

/* Bootstrap Navbar Override */
.navbar {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem 0 !important;
    min-height: 80px !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: #FFF8E7 !important;
    border-bottom: none !important;
    z-index: 2000 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
}

.navbar-brand {
    flex: 0 0 auto !important;
    margin-left: 2.5rem !important;
    display: flex !important;
    align-items: center !important;
}

.navbar-nav {
    flex: 1 1 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1.5rem !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: 0.12em !important;
}

.navbar-nav .nav-item {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

.navbar-nav .nav-link {
    color: #333 !important;
    text-decoration: none !important;
    font-family: 'IBM Plex Sans', sans-serif !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    padding: 0.5rem 0 !important;
    transition: color 0.3s ease !important;
    border: none !important;
    background: none !important;
}

.navbar-nav .nav-link:hover {
    color: #E35335 !important;
}

/* Dropdown container styling */
.dropdown-container {
    display: flex !important;
    align-items: center !important;
}

.dropdown-arrow {
    background: none !important;
    border: none !important;
    color: #333 !important;
    font-size: 0.7rem !important;
    font-family: 'IBM Plex Sans', sans-serif !important;
    padding: 0.25rem !important;
    cursor: pointer !important;
    transition: color 0.3s ease !important;
}

.dropdown-arrow:hover {
    color: #E35335 !important;
}

.dropdown-menu {
    background: #FFF8E7 !important;
    border: 1px solid rgba(0,0,0,.15) !important;
    border-radius: 0.375rem !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175) !important;
    padding: 0.75rem 0 !important;
    min-width: 12rem !important;
    width: auto !important;
    font-size: 0.9rem !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(-50%) translateY(-10px) scale(0.95) !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    z-index: 1000 !important;
}

.dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) scale(1) !important;
}

/* Ensure smooth transitions override Bootstrap */
.navbar .dropdown-menu,
.navbar-nav .dropdown-menu,
.dropdown .dropdown-menu {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Bootstrap-style dropdown items */
.dropdown-menu .dropdown-item,
.navbar-nav .dropdown-menu .dropdown-item,
.dropdown-item {
    color: #333 !important;
    padding: 0.5rem 1.25rem !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    font-family: 'IBM Plex Sans', sans-serif !important;
    text-align: center !important;
    line-height: 1.5 !important;
    letter-spacing: 0.12em !important;
    text-transform: capitalize !important;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out !important;
    text-decoration: none !important;
    border: 0 !important;
    background: transparent !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    clear: both !important;
}

.dropdown-menu .dropdown-item:hover,
.navbar-nav .dropdown-menu .dropdown-item:hover,
.dropdown-item:hover {
    background-color: rgba(255, 248, 231, 0.7) !important;
    color: #E35335 !important;
}

.dropdown-menu .dropdown-item:focus,
.navbar-nav .dropdown-menu .dropdown-item:focus,
.dropdown-item:focus {
    background-color: rgba(255, 248, 231, 0.7) !important;
    color: #E35335 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.dropdown-menu .dropdown-item:active,
.navbar-nav .dropdown-menu .dropdown-item:active,
.dropdown-item:active {
    background-color: rgba(255, 248, 231, 0.7) !important;
    color: #E35335 !important;
}

.btn-outline-success {
    color: #E35335 !important;
    border-color: #E35335 !important;
    padding: 0.5rem 1.5rem !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.btn-outline-success:hover {
    background-color: #E35335 !important;
    color: white !important;
    border-color: #E35335 !important;
}

.navbar-toggler {
    border: none !important;
    padding: 0.25rem 0.5rem !important;
    background: none !important;
    position: relative !important;
    z-index: 2001 !important;
    margin-right: 1rem !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: none !important;
    width: 24px !important;
    height: 24px !important;
}

/* Mobile hamburger lines */
.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon {
    content: '' !important;
    display: block !important;
    width: 24px !important;
    height: 2px !important;
    background-color: #333 !important;
    margin: 4px 0 !important;
    transition: all 0.3s ease !important;
}

.navbar-toggler-icon::before {
    transform: translateY(-6px) !important;
}

.navbar-toggler-icon::after {
    transform: translateY(4px) !important;
}

/* Remove Bootstrap scroll functionality */
.navbar-nav-scroll {
    max-height: none !important;
    overflow: visible !important;
}

/* Ensure all nav elements are visible without scrolling */
.navbar-nav,
.navbar-collapse,
.navbar-collapse .navbar-nav {
    max-height: none !important;
    overflow: visible !important;
    height: auto !important;
}

/* Mobile navbar responsiveness */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.5rem 1rem !important;
        justify-content: space-between !important;
        position: relative !important;
        z-index: 10000 !important;
    }
    
    .navbar-brand {
        margin-left: 0 !important;
        z-index: 2002 !important;
    }
    
    .navbar-toggler {
        z-index: 2002 !important;
        margin-right: 0 !important;
    }
    
    .navbar-collapse {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: #FFF8E7 !important;
        z-index: 9999 !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
        border: 2px solid rgba(227, 83, 53, 0.2) !important;
        border-top: 3px solid #E35335 !important;
        max-height: none !important;
        overflow: visible !important;
        height: auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 !important;
    }
    
    /* Ensure Bootstrap collapse works properly */
    .navbar-collapse:not(.show) {
        display: none !important;
    }
    
    .navbar-collapse.show {
        display: block !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
    }
    
    .navbar-nav {
        padding: 1.5rem 1rem !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        margin: 0 auto !important;
        list-style: none !important;
        width: 100% !important;
        max-width: 400px !important;
        position: relative !important;
        z-index: 10001 !important;
        max-height: none !important;
        overflow: visible !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .navbar-nav .nav-item {
        width: 100% !important;
        max-width: 300px !important;
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .navbar-nav .nav-link {
        padding: 1rem 1.5rem !important;
        border-radius: 6px !important;
        transition: all 0.3s ease !important;
        color: #333 !important;
        font-weight: 600 !important;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin: 0.25rem 0 !important;
        border: 1px solid transparent !important;
        font-size: 1rem !important;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: rgba(227, 83, 53, 0.1) !important;
        color: #E35335 !important;
    }
    
    .dropdown-item {
        padding: 0.5rem 1rem !important;
        color: #333 !important;
        text-align: center !important;
        display: block !important;
        width: 100% !important;
        max-width: 250px !important;
        margin: 0 auto !important;
    }
    
    .dropdown-item:hover {
        background-color: rgba(227, 83, 53, 0.1) !important;
        color: #E35335 !important;
    }
    
    .navbar .dropdown-menu,
    .navbar-nav .dropdown-menu,
    .dropdown .dropdown-menu {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        top: 100% !important;
        transform: none !important;
        float: none !important;
        width: 100% !important;
        background: rgba(255, 248, 231, 0.8) !important;
        border: none !important;
        box-shadow: none !important;
        margin-top: 0 !important;
        display: none !important;
        min-width: auto !important;
        flex-direction: column !important;
    }
    
    .dropdown-menu.show {
        display: block !important;
    }
    
    .dropdown-menu li {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .dropdown-menu li a {
        display: block !important;
        width: 100% !important;
        padding: 0.75rem 0 !important;
        text-align: center !important;
    }
    
    .dropdown-container {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto !important;
        max-width: none !important;
        margin: 0 auto !important;
        padding: 0 !important;
        gap: 0 !important;
    }
    
    .dropdown-container .nav-link {
        margin: 0.25rem 0 !important;
        padding: 1rem 1.5rem !important;
        display: block !important;
        white-space: nowrap !important;
        width: 100% !important;
        border-radius: 6px !important;
        transition: all 0.3s ease !important;
        color: #333 !important;
        font-weight: 600 !important;
        text-align: center !important;
        border: 1px solid transparent !important;
        font-size: 1rem !important;
    }
    
    .dropdown-arrow {
        margin: 0 0 0 8px !important;
        padding: 0 !important;
        cursor: pointer !important;
        border: none !important;
        background: none !important;
        display: inline-block !important;
        vertical-align: middle !important;
        position: relative !important;
    }
    
    .dropdown-arrow i {
        transition: transform 0.3s ease !important;
    }
    
    .dropdown.show .dropdown-arrow i {
        transform: rotate(180deg) !important;
    }
    
    /* Contact Us button styling in mobile menu */
    .navbar .btn {
        margin: 1rem auto !important;
        display: block !important;
        width: fit-content !important;
        max-width: 200px !important;
        padding: 0.75rem 1.5rem !important;
        border-radius: 6px !important;
        font-weight: 500 !important;
        text-align: center !important;
    }
    
    /* Center the form containing the Contact Us button */
    .navbar .d-flex {
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin-top: 0.5rem !important;
    }
    
    /* Ensure content below navbar doesn't interfere with mobile menu */
    body {
        position: relative !important;
    }
    
    /* Make sure main content doesn't overlap with mobile menu */
    main, .main-content, .hero, .section {
        position: relative !important;
        z-index: 1 !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 575.98px) {
    .navbar {
        padding: 0.25rem 0.5rem !important;
        min-height: 60px !important;
        position: relative !important;
        z-index: 10000 !important;
    }
    
    .navbar-brand img {
        height: 50px !important;
        width: auto !important;
    }
    
    .navbar-toggler {
        padding: 0.15rem 0.25rem !important;
        z-index: 2002 !important;
    }
    
    .navbar-toggler-icon {
        width: 20px !important;
        height: 2px !important;
    }
    
    .navbar-toggler-icon::before {
        transform: translateY(-5px) !important;
    }
    
    .navbar-toggler-icon::after {
        transform: translateY(3px) !important;
    }
    
    .navbar-collapse {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        height: auto !important;
    }
    
    .navbar-nav {
        padding: 1rem !important;
        gap: 0.75rem !important;
        max-width: 350px !important;
        margin: 0 auto !important;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: 0.95rem !important;
        margin: 0.15rem 0 !important;
    }
}
.top-navbar.with-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    border-bottom: none;
    z-index: 2000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.navbar-logo-left {
    flex: 0 0 auto;
    margin-left: 2.5rem;
    display: flex;
    align-items: center;
}
.navbar-logo-img {
    height: 70px !important;
    width: auto !important;
    display: block !important;
    filter: brightness(0) saturate(100%) invert(15%) sepia(94%) saturate(7151%) hue-rotate(355deg) brightness(91%) contrast(106%) !important;
}
.top-navbar-menu {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    letter-spacing: 0.12em;
}
.top-navbar-menu li {
    display: flex;
    align-items: center;
    height: 100%;
}
.top-navbar-menu li a {
    position: relative;
    color: #E35335;
    text-decoration: none !important;
    font-family: var(--font-primary);
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 900;
    transition: color 0.3s;
    padding: 0.18rem 0.35rem;
    letter-spacing: 0.12em;
    background: none;
    background-color: transparent;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}
.top-navbar-menu li a:not(.navbar-btn)::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0.05em;
    width: 0%;
    height: 2px;
    background: #FFF8E7;
    transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
    z-index: 1;
    box-sizing: border-box;
}
.top-navbar-menu li a:not(.navbar-btn):hover::after,
.top-navbar-menu li a:not(.navbar-btn):focus::after {
    width: 100%;
}
.top-navbar-menu li a:hover,
.top-navbar-menu li a:focus {
    color: #E35335 !important;
}
.top-navbar-menu li .navbar-btn {
    background: #E35335;
    color: #FFF8E7;
    border-radius: 8px;
    padding: 0.4rem 1rem;
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-left: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #FFF8E7;
    font-size: 1rem;
    box-shadow: none;
    text-decoration: none !important;
    position: relative;
    display: inline-block;
    box-sizing: border-box;
}
.top-navbar-menu li .navbar-btn:hover,
.top-navbar-menu li .navbar-btn:focus {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
    text-decoration: none !important;
    box-sizing: border-box;
}
.centered-logo-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 2100;
    margin: 0;
    pointer-events: none;
}
.centered-logo-img {
    height: 200px;
    width: auto;
    display: block;
    background: none;
    box-shadow: none;
    filter: none;
    pointer-events: auto;
}
@media (max-width: 700px) {
    .top-navbar-menu {
        gap: 1.2rem;
        font-size: 0.95rem;
    }
    .centered-logo-img {
        height: 90px;
    }
    .centered-logo-bar {
        top: -20px;
    }
}

.custom-navbar.scrolled {
    padding: 0.8rem 0 !important;
    min-height: 60px;
    background-color: rgba(255, 248, 231, 0.6) !important;
}

.custom-navbar.scrolled .top-navbar-menu li a:not(.navbar-btn):hover,
.custom-navbar.scrolled .top-navbar-menu li a:not(.navbar-btn):focus {
    color: #E35335 !important;
}
.top-navbar-menu li a:not(.navbar-btn):hover,
.top-navbar-menu li a:not(.navbar-btn):focus {
    color: #E35335 !important;
}

.custom-navbar.scrolled .top-navbar-menu li a.navbar-btn {
    background: #fff;
    color: #000;
    border: 2px solid #E35335;
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.custom-navbar.scrolled .top-navbar-menu li a.navbar-btn:hover {
    background: #E35335;
    color: #fff;
    border: 2px solid #E35335;
}

/* Remove any conflicting styles */
.custom-navbar.scrolled .top-navbar-menu li a.navbar-btn:hover,
.custom-navbar.scrolled .top-navbar-menu li a.navbar-btn:focus {
    background: #E35335 !important;
    color: #fff !important;
}

.custom-navbar.scrolled .navbar-logo-left {
    display: flex !important;
}
.custom-navbar:not(.scrolled) {
    padding: 1rem 0 !important;
}

/* Training Gallery Section */
.training-hierarchical-grid {
    display: grid;
    grid-template-areas:
        "slider desc"
        "slider contact";
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 32px 48px;
    max-width: 1200px;
    margin: 0;
    padding: 0;
    align-items: start;
    justify-items: start;
}
.training-gallery-slider {
    grid-area: slider;
    width: 100%;
    max-width: 1000px;
    height: 600px;
    aspect-ratio: unset;
    overflow: hidden;
    display: block;
    background: none;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    padding: 0;
    margin: 0;
}
.training-gallery-slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    background: none;
    margin: 0;
    padding: 0;
    display: block;
    vertical-align: top;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1), opacity 0.7s cubic-bezier(0.4,0,0.2,1);
}
.training-gallery-desc {
    grid-area: desc;
    font-family: var(--font-truculenta);
    font-size: 1.15rem;
    color: #664343;
    background: #fff8e7;
    border-radius: 18px;
    padding: 28px 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    line-height: 1.7;
    min-height: 180px;
    display: flex;
    align-items: center;
}
.training-gallery-contact {
    grid-area: contact;
    display: flex;
    align-items: end;
    justify-content: flex-end;
    min-height: 80px;
}
.contact-btn {
    display: inline-block;
    background: #E35335;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.9rem 2.2rem;
    border-radius: 32px;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    letter-spacing: 0.04em;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    border: none;
    outline: none;
}
.contact-btn:hover, .contact-btn:focus {
    background: #c12d1a;
    color: #fff8e7;
    box-shadow: 0 4px 18px rgba(227,83,53,0.13);
}
@media (max-width: 900px) {
    .training-hierarchical-grid {
        grid-template-areas:
            "slider"
            "desc"
            "contact";
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 24px;
        padding: 24px 0;
    }
    .training-gallery-slider {
        max-width: 100%;
        height: 400px;
        padding: 16px;
    }
    .training-gallery-slider img {
        border-radius: 8px;
    }
    .training-gallery-desc {
        padding: 18px 10px;
        min-height: 0;
    }
    .training-gallery-contact {
        justify-content: center;
        min-height: 0;
    }
}

.training-two-grid {
    display: grid;
    grid-template-columns: auto 420px;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    align-items: start;
}
.training-gallery-slider {
    justify-self: start;
    align-self: start;
    margin: 0;
}
.training-gallery-desc {
    text-align: left;
    align-self: start;
    max-width: 420px;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Remove .training-gallery-right and related flex styles */
.training-gallery-right { display: unset !important; flex-direction: unset !important; justify-content: unset !important; align-items: unset !important; gap: unset !important; }

/* Training Grid Styles */
.training-grid {
    max-width: 1300px;
    margin: 48px auto 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}

.work-stamp {
    position: absolute;
    top: -80px;
    left: -30px;
    width: 180px;
    height: auto;
    z-index: 2;
}

.training-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    margin: 0;
    align-items: center;
    padding: 0;
}

.training-row:last-child {
    margin-bottom: 0;
}

.training-image {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.training-image img {
    width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: contain;
    transition: transform 0.3s ease 5s;
    display: block;
    margin: 0;
}

.training-desc {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.training-desc p {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #333;
    font-family: 'Truculenta', sans-serif;
    margin: -18px 0 0 0;
    padding: 0;
    font-weight: 400;
}

@media (min-width: 901px) and (max-width: 1023px) {
    .training-desc p {
        font-size: 1.1rem;
    }
}

@media (max-width: 900px) {
    .training-grid {
        padding: 32px 12px;
    }
    
    .training-row {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0;
    }
    
    .training-image {
        order: 1;
    }
    
    .training-desc {
        order: 2;
    }
}

.gallery.training-gallery {
    width: 100%;
    padding: 48px 48px;
    box-sizing: border-box;
    background-color: #FFF8E7;
}

.training-grid {
    max-width: 1300px;
    margin: 48px auto 0;
    padding: 0;
    box-sizing: border-box;
}

.training-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    margin: 0;
    align-items: center;
    padding: 0;
}

.training-title {
    font-family: 'Style Script', cursive;
    font-size: 5rem;
    color: #333;
    margin-bottom: 0;
    margin-top: -32px;
    font-weight: 400;
    line-height: 1;
    padding: 0;
    overflow: hidden;
}

.training-desc p {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #333;
    font-family: 'Truculenta', sans-serif;
    margin: -18px 0 0 0;
    padding: 0;
    font-weight: 400;
}

@media (max-width: 900px) {
    .gallery.training-gallery {
        padding: 24px 8px;
    }
    .training-grid {
        padding: 0;
        margin: 24px auto 0;
    }
    .training-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .training-title {
        font-size: 2.5rem;
    }
    .training-desc p {
        font-size: 1.1rem;
        margin: -10px 0 0 0;
    }
    .work-stamp {
        width: 90px;
        top: -40px;
        left: 8px;
    }
}

@media (max-width: 600px) {
    .gallery.training-gallery {
        padding: 12px 2px;
    }
    .training-title {
        font-size: 1.6rem;
    }
    .training-desc p {
        font-size: 0.9rem;
    }
    .work-stamp {
        width: 60px;
        top: -24px;
        left: 2px;
    }
}

@media (max-width: 990px) {
    .training-title {
        margin-top: 32px;
    }
}

/* Contact Section Poppy Red Boxed Style */
.contact {
  background: transparent;
  padding: 0;
  box-sizing: border-box;
}
.contact .container {
  padding: 0;
}
.contact-flex {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
}
.contact-info, .contact-form-card {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.contact-info h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 900;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #232323;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.contact-intro {
  font-family: 'Style Script', cursive;
  font-size: 2.1rem;
  color: #E3A535;
  margin-bottom: 12px;
  margin-top: 24px;
  line-height: 1.2;
}
.contact-details {
  margin-top: 1.5rem;
  text-align: left;
}
.contact-details p {
  margin: 1rem 0;
  font-size: 1.1rem;
  color: #333;
  display: flex;
  align-items: center;
}
.contact-details i {
  margin-right: 1rem;
  color: #E35335;
  width: 20px;
  text-align: center;
}
.contact-details a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-details a:hover {
  color: #B8860B;
}
.contact-divider {
  width: 92%;
  height: 3px;
  background: #E35335;
  margin: 36px auto 36px auto;
  border: none;
}
.contact-form-card {
  background: none;
  box-shadow: none;
  border: none;
  padding: 0 0 48px 0;
}
.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.contact-form-card label {
  font-weight: 900;
  color: #232323;
  margin-bottom: 4px;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-form-card input,
.contact-form-card textarea {
  border: 2px solid #E35335;
  border-radius: 7px;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: var(--font-primary);
  background: #fdf6e3;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  color: #232323;
}
.contact-form-card button {
  background: #E35335;
  color: #fdf6e3;
  font-size: 1.5rem;
  font-weight: 900;
  border: none;
  border-radius: 50px;
  padding: 14px 0;
  width: 80px;
  height: 80px;
  margin: 24px auto 0 auto;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(227,83,53,0.08);
}
.contact-form-card button:hover {
  background: #bfa14a;
  color: #232323;
}
/* Social follow area */
.contact-follow {
  margin-top: 36px;
  text-align: center;
}
.contact-follow .follow-intro {
  font-family: 'Style Script', cursive;
  font-size: 2.1rem;
  color: #E3A535;
  margin-bottom: 0;
}
.contact-follow .follow-title {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 900;
  color: #232323;
  margin-top: 0;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.contact-follow .social-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 12px;
}
.contact-follow .social-icon {
  background: #E35335;
  color: #fdf6e3;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: background 0.2s, color 0.2s;
}
.contact-follow .social-icon:hover {
  background: #bfa14a;
  color: #232323;
}
@media (max-width: 900px) {
  .contact-info, .contact-form-card {
    max-width: 100%;
  }
  .contact {
    margin: 24px 0;
  }
}
@media (max-width: 600px) {
  .contact-info h2 {
    font-size: 1.2rem;
  }
  .contact-intro, .contact-follow .follow-intro {
    font-size: 1rem;
  }
  .contact-follow .follow-title {
    font-size: 1.1rem;
  }
  .contact-details i {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    color: #E35335;
  }
  .contact-follow .social-icon {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }
}


.film-title-bg {
  display: inline-block;
  position: relative;
  background: #E35335 url('/assets/fonts/tape.png') center center no-repeat;
  background-size: contain;
  min-height: 80px;
  padding: 32px 96px;
  color: #232323;
  font-size: inherit;
  font-family: inherit;
  z-index: 1;
}

.film-title-bg:hover {
  color: #E35335;
  transition: color 0.2s;
}

.cream-tape-bg {
  background-color: #fdf6e3 !important;
}

/* =====================
   Commercial Page
   ===================== */

/* Hero Section */
.commercial-hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../public/images/commercial/commercial_hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: var(--white);
    z-index: 1;
    padding: 0;
}

/* What is Commercial Film */
.what-is-commercial-film {
    background: #E35335;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 64px 0 6rem 0;
    margin-bottom: 4rem;
}
.what-is-commercial-film .container {
    background: #FFF8E7;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 48px 48px;
    box-sizing: border-box;
    border-radius: 0;
    box-shadow: none;
}
.what-is-commercial-film h2, .what-is-commercial-film p {
    color: #232323;
}
.what-is-commercial-film h2 {
    font-family: 'Style Script', cursive;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 1px;
}
.what-is-commercial-film p {
    font-family: 'Truculenta', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}
.what-is-commercial-film p:last-child {
    margin-bottom: 0;
}

/* Service Section */
.commercial-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: calc(100% - 96px);
    margin: 0 auto;
    margin-top: 32px;
    box-sizing: border-box;
}
.commercial-service-card {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    display: flex;
    align-items: flex-end;
}
.commercial-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30,30,30,0.12) 40%, rgba(30,30,30,0.55) 100%);
    z-index: 1;
}
.service-card-content {
    position: relative;
    z-index: 2;
    padding: 32px 24px 24px 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.service-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.commercial-learn-btn {
    margin-top: auto;
}
@media (max-width: 1200px) {
    .commercial-services-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 700px) {
    .commercial-services-grid {
        grid-template-columns: 1fr;
        max-width: calc(100% - 24px);
    }
    .commercial-service-card {
        min-height: 300px;
    }
    .service-title {
        font-size: 1.2rem;
    }
}

.film-btn.learn-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #E35335;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'IBM Plex Sans', sans-serif;
    padding: 0.5rem 1.2rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s, border 0.2s;
    box-shadow: none;
    display: inline-block;
    text-decoration: none;
}
.film-btn.learn-btn i {
    margin-left: 0.5em;
    font-size: 1em;
    vertical-align: middle;
    color: #fff;
}
.film-btn.learn-btn:hover,
.film-btn.learn-btn:focus {
    background: #E35335;
    color: #fff;
    border: 2px solid #E35335;
}
.film-buttons {
    margin-top: 1.2rem;
    display: flex;
    gap: 1rem;
}

.commercial-services {
    background-color: #FFF8E7;
    padding: 48px 0;
    width: 100%;
}

.commercial-services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    max-width: calc(100% - 96px);
    margin: 48px auto 32px auto;
    box-sizing: border-box;
    padding: 0;
}

.services-header-col {
    flex: 1 1 0;
    min-width: 0;
}

@media (max-width: 900px) {
    .commercial-services-header {
        flex-direction: column;
        gap: 12px;
        max-width: calc(100% - 24px);
    }
    .services-main-desc {
        margin-bottom: 0;
    }
}

.explore-your-film {
    color: #E35335;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-family: 'Truculenta', sans-serif;
}

.services-main-title {
    font-family: 'Style Script', cursive;
    font-size: 3.2rem;
    font-weight: bold;
    color: #232323;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.services-main-desc {
    font-family: 'Truculenta', sans-serif;
    font-size: 1.8rem;
    color: #232323;
    font-weight: 400;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.faq h2 {
    font-family: 'Truculenta', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #232323;
    margin-top: 48px;
    margin-left: 48px;
    margin-bottom: 48px;
    padding: 0;
}
.faq-list {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}
.faq-item h3 {
    font-family: 'Truculenta', sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    color: #232323;
    margin-bottom: 0.7rem;
    margin-top: 2.2rem;
}
.faq-item p {
    font-family: 'Truculenta', sans-serif;
    font-size: 1.1rem;
    color: #232323;
    font-weight: 400;
    margin-bottom: 1.5rem;
    margin-top: 0;
}
.faq-divider {
    width: 100%;
    height: 0;
    border-bottom: 2px solid #E35335;
    margin: 0.7rem 0 0.7rem 0;
    box-shadow: none;
    background: none;
}
@media (max-width: 700px) {
    .faq-list {
        padding: 0 12px;
    }
    .faq h2 {
        font-size: 1.2rem;
        text-align: left !important;
        margin-left: 12px !important;
        margin-right: 12px !important;
    }
    .faq-item h3 {
        font-size: 1.1rem;
    }
    .faq-item p {
        font-size: 0.95rem;
    }
    
    /* Custom FAQ mobile title alignment */
    .commercial-faq-custom h2,
    .solar-privacy-faq-custom h2,
    .safety-security-faq-custom h2,
    .decorative-faq-custom h2,
    .graffiti-faq-custom h2,
    .residential-decorative-faq-custom h2,
    .residential-solar-control-faq-custom h2,
    .contracting-faq-custom h2,
    .residential-faq-custom h2,
    .contracting-process-faq-custom h2 {
        text-align: left !important;
        margin-left: 12px !important;
        margin-right: 12px !important;
    }
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    font-family: 'Truculenta', sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    color: #232323;
    cursor: pointer;
    padding: 0;
    margin: 2.2rem 0 0.7rem 0;
    transition: color 0.2s, background 0.3s;
    position: relative;
}
.faq-question::after {
    content: '\25BC';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s;
    font-size: 1.1rem;
    color: #E35335;
}
.faq-item.open .faq-question {
    background: #fff4ed;
}
.faq-item.open .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), opacity 0.32s, margin-bottom 0.32s;
    margin-bottom: 0;
}
.faq-item.open .faq-answer {
    max-height: 380px;
    opacity: 1;
    margin-bottom: 1.5rem;
}

/* Commercial FAQ Custom Design - Desktop */
.commercial-faq-custom .faq-item {
    background: rgba(227, 83, 53, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(227, 83, 53, 0.25);
    border: 1px solid rgba(227, 83, 53, 0.2);
    overflow: hidden;
}

.commercial-faq-custom .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    margin: 0;
}

.commercial-faq-custom .faq-question:hover {
    background-color: rgba(227, 83, 53, 0.05);
    color: #E35335;
}

.commercial-faq-custom .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: #E35335;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-left: 1rem;
    position: static;
    transform: none;
}

.commercial-faq-custom .faq-question[aria-expanded="true"]::after {
    content: '−';
    transform: rotate(0deg);
}

.commercial-faq-custom .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: rgba(227, 83, 53, 0.02);
    opacity: 1;
    margin-bottom: 0;
}

.commercial-faq-custom .faq-answer.active {
    max-height: 500px;
}

.commercial-faq-custom .faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.commercial-faq-custom .faq-divider {
    display: none;
}

/* Solar & Privacy FAQ Custom Design */
.solar-privacy-faq-custom .faq-item {
    background: rgba(227, 83, 53, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(227, 83, 53, 0.25);
    border: 1px solid rgba(227, 83, 53, 0.2);
    overflow: hidden;
}

.solar-privacy-faq-custom .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    margin: 0;
}

.solar-privacy-faq-custom .faq-question:hover {
    background-color: rgba(227, 83, 53, 0.05);
    color: #E35335;
}

.solar-privacy-faq-custom .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: #E35335;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-left: 1rem;
    position: static;
    transform: none;
}

.solar-privacy-faq-custom .faq-question[aria-expanded="true"]::after {
    content: '−';
    transform: rotate(0deg);
}

.solar-privacy-faq-custom .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: rgba(227, 83, 53, 0.02);
    opacity: 1;
    margin-bottom: 0;
}

.solar-privacy-faq-custom .faq-answer.active {
    max-height: 500px;
}

.solar-privacy-faq-custom .faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.solar-privacy-faq-custom .faq-divider {
    display: none;
}

/* Safety & Security FAQ Custom Design */
.safety-security-faq-custom .faq-item {
    background: rgba(227, 83, 53, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(227, 83, 53, 0.25);
    border: 1px solid rgba(227, 83, 53, 0.2);
    overflow: hidden;
}

.safety-security-faq-custom .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    margin: 0;
}

.safety-security-faq-custom .faq-question:hover {
    background-color: rgba(227, 83, 53, 0.05);
    color: #E35335;
}

.safety-security-faq-custom .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: #E35335;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-left: 1rem;
    position: static;
    transform: none;
}

.safety-security-faq-custom .faq-question[aria-expanded="true"]::after {
    content: '−';
    transform: rotate(0deg);
}

.safety-security-faq-custom .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: rgba(227, 83, 53, 0.02);
    opacity: 1;
    margin-bottom: 0;
}

.safety-security-faq-custom .faq-answer.active {
    max-height: 500px;
}

.safety-security-faq-custom .faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.safety-security-faq-custom .faq-divider {
    display: none;
}

/* Decorative FAQ Custom Design */
.decorative-faq-custom .faq-item {
    background: rgba(227, 83, 53, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(227, 83, 53, 0.25);
    border: 1px solid rgba(227, 83, 53, 0.2);
    overflow: hidden;
}

.decorative-faq-custom .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    margin: 0;
}

.decorative-faq-custom .faq-question:hover {
    background-color: rgba(227, 83, 53, 0.05);
    color: #E35335;
}

.decorative-faq-custom .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: #E35335;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-left: 1rem;
    position: static;
    transform: none;
}

.decorative-faq-custom .faq-question[aria-expanded="true"]::after {
    content: '−';
    transform: rotate(0deg);
}

.decorative-faq-custom .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: rgba(227, 83, 53, 0.02);
    opacity: 1;
    margin-bottom: 0;
}

.decorative-faq-custom .faq-answer.active {
    max-height: 500px;
}

.decorative-faq-custom .faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.decorative-faq-custom .faq-divider {
    display: none;
}

/* Graffiti FAQ Custom Design */
.graffiti-faq-custom .faq-item {
    background: rgba(227, 83, 53, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(227, 83, 53, 0.25);
    border: 1px solid rgba(227, 83, 53, 0.2);
    overflow: hidden;
}

.graffiti-faq-custom .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    margin: 0;
}

.graffiti-faq-custom .faq-question:hover {
    background-color: rgba(227, 83, 53, 0.05);
    color: #E35335;
}

.graffiti-faq-custom .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: #E35335;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-left: 1rem;
    position: static;
    transform: none;
}

.graffiti-faq-custom .faq-question[aria-expanded="true"]::after {
    content: '−';
    transform: rotate(0deg);
}

.graffiti-faq-custom .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: rgba(227, 83, 53, 0.02);
    opacity: 1;
    margin-bottom: 0;
}

.graffiti-faq-custom .faq-answer.active {
    max-height: 500px;
}

.graffiti-faq-custom .faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.graffiti-faq-custom .faq-divider {
    display: none;
}

/* Residential Decorative FAQ Custom Design */
.residential-decorative-faq-custom .faq-item {
    background: rgba(227, 83, 53, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(227, 83, 53, 0.25);
    border: 1px solid rgba(227, 83, 53, 0.2);
    overflow: hidden;
}

.residential-decorative-faq-custom .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    margin: 0;
}

.residential-decorative-faq-custom .faq-question:hover {
    background-color: rgba(227, 83, 53, 0.05);
    color: #E35335;
}

.residential-decorative-faq-custom .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: #E35335;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-left: 1rem;
    position: static;
    transform: none;
}

.residential-decorative-faq-custom .faq-question[aria-expanded="true"]::after {
    content: '−';
    transform: rotate(0deg);
}

.residential-decorative-faq-custom .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: rgba(227, 83, 53, 0.02);
    opacity: 1;
    margin-bottom: 0;
}

.residential-decorative-faq-custom .faq-answer.active {
    max-height: 500px;
}

.residential-decorative-faq-custom .faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.residential-decorative-faq-custom .faq-divider {
    display: none;
}

/* Residential Solar Control FAQ Custom Design */
.residential-solar-control-faq-custom .faq-item {
    background: rgba(227, 83, 53, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(227, 83, 53, 0.25);
    border: 1px solid rgba(227, 83, 53, 0.2);
    overflow: hidden;
}

.residential-solar-control-faq-custom .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    margin: 0;
}

.residential-solar-control-faq-custom .faq-question:hover {
    background-color: rgba(227, 83, 53, 0.05);
    color: #E35335;
}

.residential-solar-control-faq-custom .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: #E35335;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-left: 1rem;
    position: static;
    transform: none;
}

.residential-solar-control-faq-custom .faq-question[aria-expanded="true"]::after {
    content: '−';
    transform: rotate(0deg);
}

.residential-solar-control-faq-custom .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: rgba(227, 83, 53, 0.02);
    opacity: 1;
    margin-bottom: 0;
}

.residential-solar-control-faq-custom .faq-answer.active {
    max-height: 500px;
}

.residential-solar-control-faq-custom .faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.residential-solar-control-faq-custom .faq-divider {
    display: none;
}

/* Contracting FAQ Custom Design */
.contracting-faq-custom .faq-item {
    background: rgba(227, 83, 53, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(227, 83, 53, 0.25);
    border: 1px solid rgba(227, 83, 53, 0.2);
    overflow: hidden;
}

.contracting-faq-custom .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    margin: 0;
}

.contracting-faq-custom .faq-question:hover {
    background-color: rgba(227, 83, 53, 0.05);
    color: #E35335;
}

.contracting-faq-custom .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: #E35335;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-left: 1rem;
    position: static;
    transform: none;
}

.contracting-faq-custom .faq-question[aria-expanded="true"]::after {
    content: '−';
    transform: rotate(0deg);
}

.contracting-faq-custom .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: rgba(227, 83, 53, 0.02);
    opacity: 1;
    margin-bottom: 0;
}

.contracting-faq-custom .faq-answer.active {
    max-height: 500px;
}

.contracting-faq-custom .faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.contracting-faq-custom .faq-divider {
    display: none;
}

/* Main Residential FAQ Custom Design */
.residential-faq-custom .faq-item {
    background: rgba(227, 83, 53, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(227, 83, 53, 0.25);
    border: 1px solid rgba(227, 83, 53, 0.2);
    overflow: hidden;
}

.residential-faq-custom .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    margin: 0;
}

.residential-faq-custom .faq-question:hover {
    background-color: rgba(227, 83, 53, 0.05);
    color: #E35335;
}

.residential-faq-custom .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: #E35335;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-left: 1rem;
    position: static;
    transform: none;
}

.residential-faq-custom .faq-question[aria-expanded="true"]::after {
    content: '−';
    transform: rotate(0deg);
}

.residential-faq-custom .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: rgba(227, 83, 53, 0.02);
    opacity: 1;
    margin-bottom: 0;
}

.residential-faq-custom .faq-answer.active {
    max-height: 500px;
}

.residential-faq-custom .faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.residential-faq-custom .faq-divider {
    display: none;
}

/* Contracting Process FAQ Custom Design */
.contracting-process-faq-custom .faq-item {
    background: rgba(227, 83, 53, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(227, 83, 53, 0.25);
    border: 1px solid rgba(227, 83, 53, 0.2);
    overflow: hidden;
}

.contracting-process-faq-custom .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    margin: 0;
}

.contracting-process-faq-custom .faq-question:hover {
    background-color: rgba(227, 83, 53, 0.05);
    color: #E35335;
}

.contracting-process-faq-custom .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: #E35335;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-left: 1rem;
    position: static;
    transform: none;
}

.contracting-process-faq-custom .faq-question[aria-expanded="true"]::after {
    content: '−';
    transform: rotate(0deg);
}

.contracting-process-faq-custom .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: rgba(227, 83, 53, 0.02);
    opacity: 1;
    margin-bottom: 0;
}

.contracting-process-faq-custom .faq-answer.active {
    max-height: 500px;
}

.contracting-process-faq-custom .faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.contracting-process-faq-custom .faq-divider {
    display: none;
}

/* Mobile FAQ Title Centering */
@media (max-width: 768px) {
    .faq h2 {
        text-align: center !important;
        padding: 0 16px !important;
    }
}

.project-quote-section {
    background: #181818;
    color: #fff;
    padding: 64px 0 48px 0;
    width: 100%;
    margin: 0;
}

.project-quote-section .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.project-quote-section .text-section {
    width: 50%;
    text-align: left;
}

.project-quote-section .image-section {
    position: relative;
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 0;
    padding-top: 0;
}

.project-quote-section .background-container {
    display: none;
}

.project-quote-section .image-container {
    width: 100%;
    height: 520px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(227, 83, 53, 0.4);
}

.project-quote-section .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    border-radius: 8px;
}

.project-quote-section .image-container img.active {
    opacity: 1;
}
.project-quote-title {
    font-family: 'Truculenta', sans-serif;
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-align: center;
    color: #fff;
    margin-bottom: 18px;
}
.project-quote-subtitle {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.3rem;
    text-align: center;
    color: #fff;
    margin-bottom: 36px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.project-quote-form {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    width: 100%;
    align-items: flex-end;
}
.form-group {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0; /* Prevents flex items from overflowing */
}
.form-group.full-width {
    flex: 1 1 100%;
    width: 100%;
}
.project-quote-form input,
.project-quote-form select,
.project-quote-form textarea {
    background: #f7fafc;
    color: #232323;
    border: none;
    border-radius: 4px;
    padding: 8px 6px;
    font-size: 0.9rem;
    font-family: 'IBM Plex Sans', sans-serif;
    margin-top: 0;
    margin-bottom: 0;
    outline: none;
    box-shadow: 0 4px 12px rgba(227, 83, 53, 0.3);
    width: 100%;
    box-sizing: border-box;
    transition: border 0.2s, box-shadow 0.2s;
    height: 36px;
    min-height: 36px;
    max-height: 36px;
}
.project-quote-form input:focus,
.project-quote-form select:focus,
.project-quote-form textarea:focus {
    border: 2px solid #E35335;
}
.project-quote-form label {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 2px;
}
.required {
    color: #E35335;
    margin-left: 2px;
}
.quote-btn {
    background: #FFF8E7;
    color: #E35335;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    padding: 8px 24px;
    margin-top: 8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    height: 36px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    letter-spacing: 1px;
    display: inline-block;
    align-self: flex-start;
}
.quote-btn:hover {
    background: #E35335;
    color: #fff;
}
.form-disclaimer {
    font-size: 0.95rem;
    color: #e0e0e0;
    margin-top: 18px;
    margin-bottom: 0;
    font-family: 'IBM Plex Sans', sans-serif;
    line-height: 1.5;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 900px) {
    .project-quote-section .content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .project-quote-section .text-section {
        width: 100%;
        order: 2;
    }
    
    .project-quote-section .image-section {
        width: 100%;
        order: 1;
    }
    
    .project-quote-section .image-container {
        height: 300px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group {
        width: 100%;
        flex: 1 1 100%;
    }
    
    .project-quote-form {
        padding: 0 12px;
    }
    
    .project-quote-form input,
    .project-quote-form select,
    .project-quote-form textarea {
        width: 100%;
        height: 36px;
        min-height: 36px;
        max-height: 36px;
    }
    
    .project-quote-subtitle {
        margin-left: 12px;
        margin-right: 12px;
    }
    
    .form-disclaimer {
        margin-left: 12px;
        margin-right: 12px;
    }
}
@media (max-width: 600px) {
    .project-quote-section {
        padding: 48px 0 32px 0;
    }
    
    .project-quote-section .content-wrapper {
        gap: 1.5rem;
        padding: 0 16px;
    }
    
    .project-quote-section .image-container {
        height: 250px;
    }
    
    .project-quote-title {
        font-size: 1.5rem;
    }
    .project-quote-subtitle {
        font-size: 1rem;
    }
    .quote-btn {
        width: 100%;
        padding: 14px 0;
        font-size: 1rem;
    }
}

.cta-section {
    background: #FFF8E7;
    min-height: 64px;
}

.cta-section .container {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* =====================
   About Us Page
   ===================== */

.about-benefits .benefits-image-col {
    background-color: #FFF8E7;  /* Cream color matching the navbar */
}

.about-benefits .benefits-image {
    width: 100%;
    max-width: none;
    min-width: 320px;
    height: 480px;
    border-radius: 0;
    object-fit: contain;
    box-shadow: none;
}

/* About page cream divider */
.about-divider-section {
    background: #FFF8E7;
    min-height: 64px;
    width: 100%;
}

.about-divider-section .container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.traculenta-text {
    font-family: 'Truculenta', sans-serif !important;
}

.benefits-section {
    background: #181818;
    color: #fff;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0;
}
.benefits-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 64px 0 64px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.benefits-header {
    margin-bottom: 32px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.benefits-label {
    color: #E35335;
    font-family: 'Truculenta', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.benefits-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 0 0;
    line-height: 1.1;
}
.benefits-content {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: space-between;
    max-width: calc(100% - 96px);
    margin: 0 auto;
}
.benefits-image-col {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
}
.benefits-image {
    width: 100%;
    max-width: none;
    min-width: 320px;
    height: 480px;
    border-radius: 0;
    object-fit: cover;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
}
.about-benefits .benefits-image-col {
    background-color: #FFF8E7;  /* Cream color matching the navbar */
}
.about-benefits .benefits-image {
    width: 100%;
    max-width: none;
    min-width: 320px;
    height: 480px;
    border-radius: 0;
    object-fit: contain;
    box-shadow: none;
}
.benefits-list-col {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.benefits-list li {
    position: relative;
    padding-left: 28px;
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
}
.benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 10px;
    height: 10px;
    background: #E35335;
    border-radius: 50%;
    display: inline-block;
}
.benefit-heading {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 1.13rem;
}
.benefit-desc {
    font-family: 'Truculenta', sans-serif;
    font-weight: 400;
    color: #fff;
    font-size: 1.05rem;
}
@media (max-width: 900px) {
    .benefits-section {
        margin-left: 0;
        width: 100%;
    }
    .benefits-inner {
        padding: 32px 0 32px 0;
    }
    .benefits-content {
        flex-direction: column;
        gap: 32px;
        max-width: 100%;
        padding: 0 12px;
    }
    .benefits-image {
        max-width: 100%;
        height: auto;
        margin-bottom: 18px;
    }
    .benefits-list-col {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .benefits-title {
        font-size: 1.3rem;
    }
    .benefits-label {
        font-size: 0.9rem;
    }
    .benefits-list li {
        font-size: 0.98rem;
    }
}

.style-script-font {
    font-family: 'Style Script', cursive !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}


.about-benefits .benefits-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: none;
}

   
/* =====================
   Residential Page
   ===================== */

/* Contact Section Overrides for About Page */
.project-quote-section + .contact {
  margin-top: 0;
  margin-bottom: 0;
}

/* Contact Details Styles */

/* Sub-Contracting Page Hero */
.contracting-hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../public/images/subcontracting/subcontractingHero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: var(--white);
    z-index: 1;
    padding: 0;
}

/* Market Segments Section */
.market-segments-section {
  background: #181818;
  color: #fff;
  padding: 72px 0 64px 0;
}
.market-segments-header {
  text-align: left;
  margin: 0 auto 48px auto;
  max-width: calc(100% - 96px);
  box-sizing: border-box;
}
.market-segments-label {
  color: #E35335;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-family: 'Truculenta', sans-serif;
}
.market-segments-title {
  font-size: 3rem;
  font-weight: 900;
  margin: 0 0 0.5em 0;
  font-family: 'IBM Plex Sans', sans-serif;
}
.market-segments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: calc(100% - 96px);
  margin: 0 auto;
  box-sizing: border-box;
  align-items: stretch;
}
.market-segment-card {
  background: transparent;
  border: 1.5px solid #fff;
  border-radius: 0;
  padding: 40px 32px 32px 32px;
  min-height: 320px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.market-segment-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #fff;
  font-family: 'IBM Plex Sans', sans-serif;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}
.market-segment-card:hover h3 {
  color: #E35335;
}
.market-segment-card:hover p {
  color: unset;
}
.market-segment-card p {
  font-size: 1.15rem;
  color: #fff;
  font-family: 'Truculenta', sans-serif;
  line-height: 1.7;
}
.market-segment-card:hover {
  border-color: #E35335;
  box-shadow: 0 4px 32px rgba(227,83,53,0.08);
}
@media (max-width: 900px) {
  .market-segments-title {
    font-size: 2.1rem;
  }
  .market-segments-header {
    margin-bottom: 32px;
  }
  .market-segments-grid {
    gap: 24px;
  }
  .market-segment-card {
    padding: 28px 16px 20px 16px;
  }
  .market-segment-card h3 {
    font-size: 1.3rem;
  }
  .market-segment-card p {
    font-size: 1rem;
  }
}

.partner-benefits-section {
  margin-top: 64px;
}

/* Solar Privacy When/Why Section Specific Styles */
.solar-privacy-when-why-section {
  margin-top: 48px;
  padding-top: 48px !important;
  padding-bottom: 64px;
}

.solar-privacy-when-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .solar-privacy-when-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.solar-privacy-when-grid .solar-privacy-card:nth-child(5),
.solar-privacy-when-grid .solar-privacy-card:nth-child(6),
.solar-privacy-when-grid .solar-privacy-card:nth-child(7) {
  grid-column: span 1;
}

.solar-privacy-when-grid .solar-privacy-card:nth-child(5) {
  grid-column: 1;
}

.solar-privacy-when-grid .solar-privacy-card:nth-child(6) {
  grid-column: 2;
}

.solar-privacy-when-grid .solar-privacy-card:nth-child(7) {
  grid-column: 3;
}

.solar-privacy-card {
  background: transparent;
  border: 1.5px solid #fff;
  border-radius: 0;
  padding: 40px 32px 32px 32px;
  min-height: 200px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.solar-privacy-card p {
  font-size: 1.15rem;
  color: #fff;
  font-family: 'Truculenta', sans-serif;
  line-height: 1.7;
  margin: 0;
}

.solar-privacy-card:hover {
  border-color: #E35335;
  box-shadow: 0 4px 32px rgba(227,83,53,0.08);
}

@media (max-width: 1200px) {
  .solar-privacy-when-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .solar-privacy-when-grid .solar-privacy-card:nth-child(5),
  .solar-privacy-when-grid .solar-privacy-card:nth-child(6),
  .solar-privacy-when-grid .solar-privacy-card:nth-child(7) {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  .solar-privacy-when-why-section {
    margin-top: 60px;
  }
  
  .solar-privacy-when-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: calc(100% - 48px);
    padding-left: 24px;
  }
  
  .solar-privacy-when-grid .solar-privacy-card:nth-child(5),
  .solar-privacy-when-grid .solar-privacy-card:nth-child(6),
  .solar-privacy-when-grid .solar-privacy-card:nth-child(7) {
    grid-column: span 1;
  }
  
  .solar-privacy-card {
    padding: 28px 16px 20px 16px;
    min-height: 180px;
  }
  
  .solar-privacy-card p {
    font-size: 1rem;
  }
}

.solar-privacy-when-why-section .container {
  padding-left: 0;
  padding-right: 0;
}

/* Residential Decorative When/Why Section Specific Styles */
.residential-decorative-when-why-section {
  margin-top: 48px;
  padding-top: 48px !important;
  padding-bottom: 64px;
}

.residential-decorative-when-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .residential-decorative-when-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.residential-decorative-when-grid .residential-decorative-card:nth-child(5),
.residential-decorative-when-grid .residential-decorative-card:nth-child(6),
.residential-decorative-when-grid .residential-decorative-card:nth-child(7) {
  grid-column: span 1;
}

.residential-decorative-when-grid .residential-decorative-card:nth-child(5) {
  grid-column: 1;
}

.residential-decorative-when-grid .residential-decorative-card:nth-child(6) {
  grid-column: 2;
}

.residential-decorative-when-grid .residential-decorative-card:nth-child(7) {
  grid-column: 3;
}

.residential-decorative-card {
  background: transparent;
  border: 1.5px solid #fff;
  border-radius: 0;
  padding: 40px 32px 32px 32px;
  min-height: 200px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.residential-decorative-card p {
  font-size: 1.15rem;
  color: #fff;
  font-family: 'Truculenta', sans-serif;
  line-height: 1.7;
  margin: 0;
}

.residential-decorative-card:hover {
  border-color: #E35335;
  box-shadow: 0 4px 32px rgba(227,83,53,0.08);
}

@media (max-width: 1200px) {
  .residential-decorative-when-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .residential-decorative-when-grid .residential-decorative-card:nth-child(5),
  .residential-decorative-when-grid .residential-decorative-card:nth-child(6),
  .residential-decorative-when-grid .residential-decorative-card:nth-child(7) {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  .residential-decorative-when-why-section {
    margin-top: 60px;
  }
  
  .residential-decorative-when-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: calc(100% - 48px);
    padding-left: 24px;
  }
  
  .residential-decorative-when-grid .residential-decorative-card:nth-child(5),
  .residential-decorative-when-grid .residential-decorative-card:nth-child(6),
  .residential-decorative-when-grid .residential-decorative-card:nth-child(7) {
    grid-column: span 1;
  }
  
  .residential-decorative-card {
    padding: 28px 16px 20px 16px;
    min-height: 180px;
  }
  
  .residential-decorative-card p {
    font-size: 1rem;
  }
}

.residential-decorative-when-why-section .container {
  padding-left: 0;
  padding-right: 0;
}

/* Residential Solar Control When/Why Section Specific Styles */
.residential-solar-control-when-why-section {
  margin-top: 48px;
  padding-top: 48px !important;
  padding-bottom: 64px;
}

.residential-solar-control-when-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .residential-solar-control-when-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.residential-solar-control-when-grid .residential-solar-control-card:nth-child(5),
.residential-solar-control-when-grid .residential-solar-control-card:nth-child(6),
.residential-solar-control-when-grid .residential-solar-control-card:nth-child(7) {
  grid-column: span 1;
}

.residential-solar-control-when-grid .residential-solar-control-card:nth-child(5) {
  grid-column: 1;
}

.residential-solar-control-when-grid .residential-solar-control-card:nth-child(6) {
  grid-column: 2;
}

.residential-solar-control-when-grid .residential-solar-control-card:nth-child(7) {
  grid-column: 3;
}

.residential-solar-control-card {
  background: transparent;
  border: 1.5px solid #fff;
  border-radius: 0;
  padding: 40px 32px 32px 32px;
  min-height: 200px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.residential-solar-control-card p {
  font-size: 1.15rem;
  color: #fff;
  font-family: 'Truculenta', sans-serif;
  line-height: 1.7;
  margin: 0;
}

.residential-solar-control-card:hover {
  border-color: #E35335;
  box-shadow: 0 4px 32px rgba(227,83,53,0.08);
}

@media (max-width: 1200px) {
  .residential-solar-control-when-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .residential-solar-control-when-grid .residential-solar-control-card:nth-child(5),
  .residential-solar-control-when-grid .residential-solar-control-card:nth-child(6),
  .residential-solar-control-when-grid .residential-solar-control-card:nth-child(7) {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  .residential-solar-control-when-why-section {
    margin-top: 60px;
  }
  
  .residential-solar-control-when-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: calc(100% - 48px);
    padding-left: 24px;
  }
  
  .residential-solar-control-when-grid .residential-solar-control-card:nth-child(5),
  .residential-solar-control-when-grid .residential-solar-control-card:nth-child(6),
  .residential-solar-control-when-grid .residential-solar-control-card:nth-child(7) {
    grid-column: span 1;
  }
  
  .residential-solar-control-card {
    padding: 28px 16px 20px 16px;
    min-height: 180px;
  }
  
  .residential-solar-control-card p {
    font-size: 1rem;
  }
}

.residential-solar-control-when-why-section .container {
  padding-left: 0;
  padding-right: 0;
}

/* =====================
   Mobile Responsive Styles (300px)
   ===================== */

/* Commercial Hero Mobile Responsive - Progressive Scaling */

/* 300px and below - Smallest mobile */
@media (max-width: 300px) {
  .commercial-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .commercial-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  
  .commercial-hero .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .commercial-hero .hero-divider {
    width: 120px;
    height: 3px;
    margin: 0 auto 1.5rem auto;
  }
  
  .commercial-hero .hero-content p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  
  .commercial-hero .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .commercial-hero .hero-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 200px;
  }
}

/* 301px - 400px - Small to Medium mobile */
@media (min-width: 301px) and (max-width: 400px) {
  .commercial-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 16px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .commercial-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  
  .commercial-hero .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .commercial-hero .hero-divider {
    width: 130px;
    height: 3px;
    margin: 0 auto 1.5rem auto;
  }
  
  .commercial-hero .hero-content p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  
  .commercial-hero .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .commercial-hero .hero-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 200px;
  }
}

/* 401px - 500px - Large mobile */

/* 401px - 500px - Large mobile */
@media (min-width: 401px) and (max-width: 500px) {
  .commercial-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .commercial-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  
  .commercial-hero .hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
    line-height: 1.3;
  }
  
  .commercial-hero .hero-divider {
    width: 180px;
    height: 4px;
    margin: 0 auto 2.2rem auto;
  }
  
  .commercial-hero .hero-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.2rem;
    max-width: 100%;
  }
  
  .commercial-hero .hero-buttons {
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
  }
  
  .commercial-hero .hero-btn {
    padding: 16px 24px;
    font-size: 1.1rem;
    width: auto;
    min-width: 160px;
    white-space: nowrap;
    text-align: center;
  }
}

/* 501px - 600px - Small tablet */
@media (min-width: 501px) and (max-width: 600px) {
  .commercial-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 32px;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }
  
  .commercial-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }
  
  .commercial-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.3;
  }
  
  .commercial-hero .hero-divider {
    width: 200px;
    height: 4px;
    margin: 0 0 2.5rem 0;
  }
  
  .commercial-hero .hero-content p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 100%;
  }
  
  .commercial-hero .hero-buttons {
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    justify-content: flex-start;
  }
  
  .commercial-hero .hero-btn {
    padding: 18px 28px;
    font-size: 1.2rem;
    width: auto;
    min-width: 180px;
    white-space: nowrap;
    text-align: center;
  }
}

/* 601px - 768px - Large tablet */
@media (min-width: 601px) and (max-width: 768px) {
  .commercial-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 48px;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }
  
  .commercial-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }
  
  .commercial-hero .hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 2.2rem;
    line-height: 1.3;
  }
  
  .commercial-hero .hero-divider {
    width: 220px;
    height: 4px;
    margin: 0 0 2.8rem 0;
  }
  
  .commercial-hero .hero-content p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2.8rem;
    max-width: 100%;
  }
  
  .commercial-hero .hero-buttons {
    flex-direction: row;
    gap: 2.5rem;
    align-items: center;
    justify-content: flex-start;
  }
  
  .commercial-hero .hero-btn {
    padding: 20px 40px;
    font-size: 1.4rem;
    width: auto;
    min-width: 220px;
  }
}

/* =====================
   Residential Hero Mobile Responsive - Progressive Scaling
   ===================== */

/* 300px and below - Smallest mobile */
@media (max-width: 300px) {
  .residential-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .residential-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  
  .residential-hero .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .residential-hero .hero-divider {
    width: 120px;
    height: 3px;
    margin: 0 auto 1.5rem auto;
  }
  
  .residential-hero .hero-content p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  
  .residential-hero .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .residential-hero .hero-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 200px;
  }
}

/* 301px - 400px - Small to Medium mobile */
@media (min-width: 301px) and (max-width: 400px) {
  .residential-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 16px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .residential-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  
  .residential-hero .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .residential-hero .hero-divider {
    width: 130px;
    height: 3px;
    margin: 0 auto 1.5rem auto;
  }
  
  .residential-hero .hero-content p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  
  .residential-hero .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .residential-hero .hero-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 200px;
  }
}

/* 401px - 500px - Large mobile */
@media (min-width: 401px) and (max-width: 500px) {
  .residential-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .residential-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  
  .residential-hero .hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
    line-height: 1.3;
  }
  
  .residential-hero .hero-divider {
    width: 180px;
    height: 4px;
    margin: 0 auto 2.2rem auto;
  }
  
  .residential-hero .hero-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.2rem;
    max-width: 100%;
  }
  
  .residential-hero .hero-buttons {
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
  }
  
  .residential-hero .hero-btn {
    padding: 16px 24px;
    font-size: 1.1rem;
    width: auto;
    min-width: 160px;
    white-space: nowrap;
    text-align: center;
  }
}

/* 501px - 600px - Small tablet */
@media (min-width: 501px) and (max-width: 600px) {
  .residential-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 32px;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }
  
  .residential-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }
  
  .residential-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.3;
  }
  
  .residential-hero .hero-divider {
    width: 200px;
    height: 4px;
    margin: 0 0 2.5rem 0;
  }
  
  .residential-hero .hero-content p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 100%;
  }
  
  .residential-hero .hero-buttons {
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    justify-content: flex-start;
  }
  
  .residential-hero .hero-btn {
    padding: 18px 28px;
    font-size: 1.2rem;
    width: auto;
    min-width: 180px;
    white-space: nowrap;
    text-align: center;
  }
}

/* 601px - 768px - Large tablet */
@media (min-width: 601px) and (max-width: 768px) {
  .residential-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 48px;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }
  
  .residential-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }
  
  .residential-hero .hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 2.2rem;
    line-height: 1.3;
  }
  
  .residential-hero .hero-divider {
    width: 220px;
    height: 4px;
    margin: 0 0 2.8rem 0;
  }
  
  .residential-hero .hero-content p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2.8rem;
    max-width: 100%;
  }
  
  .residential-hero .hero-buttons {
    flex-direction: row;
    gap: 2.5rem;
    align-items: center;
    justify-content: flex-start;
  }
  
  .residential-hero .hero-btn {
    padding: 20px 40px;
    font-size: 1.4rem;
    width: auto;
    min-width: 220px;
  }
}

/* =====================
   Contracting Hero Mobile Responsive
   ===================== */

/* 300px and below - Smallest mobile */
@media (max-width: 300px) {
  .contracting-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .contracting-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  
  .contracting-hero .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .contracting-hero .hero-divider {
    width: 120px;
    height: 3px;
    margin: 0 auto 1.5rem auto;
  }
  
  .contracting-hero .hero-content p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  
  .contracting-hero .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .contracting-hero .hero-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: 140px;
    white-space: nowrap;
    text-align: center;
  }
}

/* 301px - 400px - Small to Medium mobile */
@media (min-width: 301px) and (max-width: 400px) {
  .contracting-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 16px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .contracting-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  
  .contracting-hero .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .contracting-hero .hero-divider {
    width: 130px;
    height: 3px;
    margin: 0 auto 1.5rem auto;
  }
  
  .contracting-hero .hero-content p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  
  .contracting-hero .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .contracting-hero .hero-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    min-width: 150px;
    white-space: nowrap;
    text-align: center;
  }
}

/* 401px - 500px - Large mobile */
@media (min-width: 401px) and (max-width: 500px) {
  .contracting-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .contracting-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  
  .contracting-hero .hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
    line-height: 1.3;
  }
  
  .contracting-hero .hero-divider {
    width: 180px;
    height: 4px;
    margin: 0 auto 2.2rem auto;
  }
  
  .contracting-hero .hero-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.2rem;
    max-width: 100%;
  }
  
  .contracting-hero .hero-buttons {
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
  }
  
  .contracting-hero .hero-btn {
    padding: 16px 24px;
    font-size: 1.1rem;
    min-width: 160px;
    white-space: nowrap;
    text-align: center;
  }
}

/* 501px - 600px - Small tablet */
@media (min-width: 501px) and (max-width: 600px) {
  .contracting-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 32px;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }
  
  .contracting-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }
  
  .contracting-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.3;
  }
  
  .contracting-hero .hero-divider {
    width: 200px;
    height: 4px;
    margin: 0 0 2.5rem 0;
  }
  
  .contracting-hero .hero-content p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 100%;
  }
  
  .contracting-hero .hero-buttons {
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    justify-content: flex-start;
  }
  
  .contracting-hero .hero-btn {
    padding: 18px 28px;
    font-size: 1.2rem;
    min-width: 180px;
    white-space: nowrap;
    text-align: center;
  }
}

/* 601px - 768px - Large tablet */
@media (min-width: 601px) and (max-width: 768px) {
  .contracting-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 48px;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }
  
  .contracting-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }
  
  .contracting-hero .hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 2.2rem;
    line-height: 1.3;
  }
  
  .contracting-hero .hero-divider {
    width: 220px;
    height: 4px;
    margin: 0 0 2.8rem 0;
  }
  
  .contracting-hero .hero-content p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2.8rem;
    max-width: 100%;
  }
  
  .contracting-hero .hero-buttons {
    flex-direction: row;
    gap: 2.5rem;
    align-items: center;
    justify-content: flex-start;
  }
  
  .contracting-hero .hero-btn {
    padding: 20px 40px;
    font-size: 1.4rem;
    min-width: 220px;
    white-space: nowrap;
    text-align: center;
  }
}

/* =====================
   About Hero Mobile Responsive
   ===================== */

/* 300px and below - Smallest mobile */
@media (max-width: 300px) {
  .about-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .about-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  
  .about-hero .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .about-hero .hero-divider {
    width: 120px;
    height: 3px;
    margin: 0 auto 1.5rem auto;
  }
  
  .about-hero .hero-content p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  
  .about-hero .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .about-hero .hero-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: 140px;
    white-space: nowrap;
    text-align: center;
  }
}

/* 301px - 400px - Small to Medium mobile */
@media (min-width: 301px) and (max-width: 400px) {
  .about-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 16px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .about-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  
  .about-hero .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .about-hero .hero-divider {
    width: 130px;
    height: 3px;
    margin: 0 auto 1.5rem auto;
  }
  
  .about-hero .hero-content p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  
  .about-hero .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .about-hero .hero-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    min-width: 150px;
    white-space: nowrap;
    text-align: center;
  }
}

/* 401px - 500px - Large mobile */
@media (min-width: 401px) and (max-width: 500px) {
  .about-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .about-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  
  .about-hero .hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
    line-height: 1.3;
  }
  
  .about-hero .hero-divider {
    width: 180px;
    height: 4px;
    margin: 0 auto 2.2rem auto;
  }
  
  .about-hero .hero-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.2rem;
    max-width: 100%;
  }
  
  .about-hero .hero-buttons {
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
  }
  
  .about-hero .hero-btn {
    padding: 16px 24px;
    font-size: 1.1rem;
    min-width: 160px;
    white-space: nowrap;
    text-align: center;
  }
}

/* 501px - 600px - Small tablet */
@media (min-width: 501px) and (max-width: 600px) {
  .about-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 32px;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }
  
  .about-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }
  
  .about-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.3;
  }
  
  .about-hero .hero-divider {
    width: 200px;
    height: 4px;
    margin: 0 0 2.5rem 0;
  }
  
  .about-hero .hero-content p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 100%;
  }
  
  .about-hero .hero-buttons {
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    justify-content: flex-start;
  }
  
  .about-hero .hero-btn {
    padding: 18px 28px;
    font-size: 1.2rem;
    min-width: 180px;
    white-space: nowrap;
    text-align: center;
  }
}

/* 601px - 768px - Large tablet */
@media (min-width: 601px) and (max-width: 768px) {
  .about-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 48px;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }
  
  .about-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }
  
  .about-hero .hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 2.2rem;
    line-height: 1.3;
  }
  
  .about-hero .hero-divider {
    width: 220px;
    height: 4px;
    margin: 0 0 2.8rem 0;
  }
  
  .about-hero .hero-content p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2.8rem;
    max-width: 100%;
  }
  
  .about-hero .hero-buttons {
    flex-direction: row;
    gap: 2.5rem;
    align-items: center;
    justify-content: flex-start;
  }
  
  .about-hero .hero-btn {
    padding: 20px 40px;
    font-size: 1.4rem;
    min-width: 220px;
    white-space: nowrap;
    text-align: center;
  }
}

/* =====================
   Index Hero Mobile Responsive
   ===================== */

/* 300px and below - Smallest mobile */
@media (max-width: 300px) {
  .hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  
  .hero .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .hero .hero-divider {
    width: 120px;
    height: 3px;
    margin: 0 auto 1.5rem auto;
  }
  
  .hero .hero-content p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  
  .hero .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .hero .hero-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: 140px;
    white-space: nowrap;
    text-align: center;
  }
}

/* 301px - 400px - Small to Medium mobile */
@media (min-width: 301px) and (max-width: 400px) {
  .hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 16px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  
  .hero .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .hero .hero-divider {
    width: 130px;
    height: 3px;
    margin: 0 auto 1.5rem auto;
  }
  
  .hero .hero-content p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  
  .hero .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .hero .hero-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    min-width: 150px;
    white-space: nowrap;
    text-align: center;
  }
}

/* 401px - 500px - Large mobile */
@media (min-width: 401px) and (max-width: 500px) {
  .hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    position: relative;
  }
  
  .hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    overflow: hidden;
    height: auto;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .hero .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
  }
  
  .hero .hero-divider {
    width: 140px;
    height: 3px;
    margin: 0 auto 1.5rem auto;
  }
  
  .hero .hero-content p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .hero .hero-buttons {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: auto;
  }
  
  .hero .hero-btn {
    padding: 14px 20px;
    font-size: 1rem;
    min-width: 140px;
    white-space: nowrap;
    text-align: center;
  }
}

/* 501px - 600px - Small tablet */
@media (min-width: 501px) and (max-width: 600px) {
  .hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 32px;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    overflow: hidden;
    position: relative;
  }
  
  .hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
    overflow: hidden;
    height: auto;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .hero .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .hero .hero-divider {
    width: 160px;
    height: 3px;
    margin: 0 0 1.8rem 0;
  }
  
  .hero .hero-content p {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 1.8rem;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .hero .hero-buttons {
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-start;
    margin-top: auto;
  }
  
  .hero .hero-btn {
    padding: 16px 24px;
    font-size: 1.1rem;
    min-width: 160px;
    white-space: nowrap;
    text-align: center;
  }
}

/* 601px - 768px - Large tablet */
@media (min-width: 601px) and (max-width: 768px) {
  .hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 48px;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    overflow: hidden;
    position: relative;
  }
  
  .hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
    overflow: hidden;
    height: auto;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .hero .hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
    line-height: 1.2;
  }
  
  .hero .hero-divider {
    width: 180px;
    height: 3px;
    margin: 0 0 2rem 0;
  }
  
  .hero .hero-content p {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .hero .hero-buttons {
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    justify-content: flex-start;
    margin-top: auto;
  }
  
  .hero .hero-btn {
    padding: 18px 32px;
    font-size: 1.2rem;
    min-width: 180px;
    white-space: nowrap;
    text-align: center;
  }
}

/* =====================
   Commercial "What is Commercial Film" Section Desktop Auto-Slide
   ===================== */

/* Desktop Auto-Slide Presentation (769px and above) */
@media (min-width: 769px) {
  .what-is-commercial-film {
    padding: 4rem 0;
    overflow: hidden;
    position: relative;
  }
  
  .what-is-commercial-film .container {
    max-width: 100%;
    padding: 0 48px;
    overflow: hidden;
  }
  
  .what-is-commercial-film h2,
  .what-is-residential-film h2 {
    font-size: 3.2rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
    line-height: 1.2;
    text-align: left;
  }
  
  .what-is-commercial-film .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6rem;
    margin-bottom: 3rem;
  }
  
  .what-is-commercial-film .slide-container {
    width: 50%;
    height: 350px;
    overflow: hidden;
    border: 1px solid rgba(227, 83, 53, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    margin: 0 0 1rem 0;
    position: relative;
  }
  
  .what-is-commercial-film .image-section {
    position: relative;
    width: 45%;
    margin-left: 0;
  }
  
  .what-is-commercial-film .text-section {
    width: 45%;
    padding: 2rem 0;
  }
  
  .what-is-commercial-film .text-section h3 {
    font-family: 'Style Script', cursive;
    font-size: 2.5rem;
    color: #232323;
    margin-bottom: 1.5rem;
    font-weight: 400;
  }
  
  .what-is-commercial-film .text-section p {
    font-family: 'Truculenta', sans-serif;
    font-size: 1.3rem;
    color: #232323;
    line-height: 1.8;
    font-weight: 400;
  }
  
  /* =====================
   Residential "What is Residential Film" Section Desktop
   ===================== */
  
  .what-is-residential-film .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .what-is-residential-film .text-section {
    width: 45%;
    padding: 2rem 0;
  }
  
  .what-is-residential-film .text-section p {
    font-family: 'Truculenta', sans-serif;
    font-size: 1.3rem;
    color: #232323;
    line-height: 1.8;
    font-weight: 400;
  }
  
  .what-is-residential-film .image-section {
    position: relative;
    width: 45%;
    margin-left: 0;
  }
  
  .what-is-residential-film .background-container {
    position: absolute;
    top: -50px;
    left: 0;
    width: 85%;
    height: 500px !important;
    background: rgba(227, 83, 53, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(227, 83, 53, 0.2);
    z-index: 1;
  }
  
  .what-is-residential-film .image-container {
    width: 80%;
    height: 500px;
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(227, 83, 53, 0.3);
    bottom: 0;
    left: 0;
  }
  
  .what-is-residential-film .image-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  
  .what-is-residential-film .image-container img.active {
    opacity: 1;
  }
  
  /* =====================
   Solar & Privacy "What is Solar & Privacy Film" Section Desktop
   ===================== */
  
  .what-is-solar-privacy .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .what-is-solar-privacy .text-section {
    width: 45%;
    padding: 2rem 0;
  }
  
  .what-is-solar-privacy .text-section p {
    font-family: 'Truculenta', sans-serif;
    font-size: 1.3rem;
    color: #232323;
    line-height: 1.8;
    font-weight: 400;
  }
  
  .what-is-solar-privacy .image-section {
    position: relative;
    width: 45%;
    margin-left: 0;
  }
  
  .what-is-solar-privacy .background-container {
    position: absolute;
    top: -50px;
    left: 0;
    width: 85%;
    height: 500px !important;
    background: rgba(227, 83, 53, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(227, 83, 53, 0.2);
    z-index: 1;
  }
  
  .what-is-solar-privacy .image-container {
    width: 80%;
    height: 500px;
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(227, 83, 53, 0.3);
    bottom: 0;
    left: 0;
  }
  
  .what-is-solar-privacy .image-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  
  .what-is-solar-privacy .image-container img.active {
    opacity: 1;
  }
  
  /* =====================
   Safety & Security "What is Safety & Security Film" Section Desktop
   ===================== */
  
  .what-is-safety-security .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .what-is-safety-security .text-section {
    width: 45%;
    padding: 2rem 0;
  }
  
  .what-is-safety-security .text-section p {
    font-family: 'Truculenta', sans-serif;
    font-size: 1.3rem;
    color: #232323;
    line-height: 1.8;
    font-weight: 400;
  }
  
  .what-is-safety-security .image-section {
    position: relative;
    width: 45%;
    margin-left: 0;
  }
  
  .what-is-safety-security .background-container {
    position: absolute;
    top: -50px;
    left: 0;
    width: 85%;
    height: 500px !important;
    background: rgba(227, 83, 53, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(227, 83, 53, 0.2);
    z-index: 1;
  }
  
  .what-is-safety-security .image-container {
    width: 80%;
    height: 500px;
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(227, 83, 53, 0.3);
    bottom: 0;
    left: 0;
  }
  
  .what-is-safety-security .image-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  
  .what-is-safety-security .image-container img.active {
    opacity: 1;
}

/* =====================
   Commercial Decorative "What is Commercial Decorative Film" Section Desktop
   ===================== */

  .what-is-commercial-decorative .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .what-is-commercial-decorative .text-section {
    width: 45%;
    padding: 2rem 0;
  }
  
  .what-is-commercial-decorative .text-section p {
    font-family: 'Truculenta', sans-serif;
    font-size: 1.3rem;
    color: #232323;
    line-height: 1.8;
    font-weight: 400;
  }
  
  .what-is-commercial-decorative .image-section {
    position: relative;
    width: 45%;
    margin-left: 0;
  }
  
  .what-is-commercial-decorative .background-container {
    position: absolute;
    top: -50px;
    left: 0;
    width: 85%;
    height: 500px !important;
    background: rgba(227, 83, 53, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(227, 83, 53, 0.2);
    z-index: 1;
  }
  
  .what-is-commercial-decorative .image-container {
    width: 80%;
    height: 500px;
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(227, 83, 53, 0.3);
    bottom: 0;
    left: 0;
  }
  
  .what-is-commercial-decorative .image-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  
  .what-is-commercial-decorative .image-container img.active {
    opacity: 1;
  }
  
  /* =====================
   Commercial Graffiti "What is Commercial Anti-Graffiti Film" Section Desktop
   ===================== */
  
  .what-is-commercial-graffiti .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .what-is-commercial-graffiti .text-section {
    width: 45%;
    padding: 2rem 0;
  }
  
  .what-is-commercial-graffiti .text-section p {
    font-family: 'Truculenta', sans-serif;
    font-size: 1.3rem;
    color: #232323;
    line-height: 1.8;
    font-weight: 400;
  }
  
  .what-is-commercial-graffiti .image-section {
    position: relative;
    width: 45%;
    margin-left: 0;
  }
  
  .what-is-commercial-graffiti .background-container {
    position: absolute;
    top: -50px;
    left: 0;
    width: 85%;
    height: 500px !important;
    background: rgba(227, 83, 53, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(227, 83, 53, 0.2);
    z-index: 1;
  }
  
  .what-is-commercial-graffiti .image-container {
    width: 80%;
    height: 500px;
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(227, 83, 53, 0.3);
    bottom: 0;
    left: 0;
  }
  
  .what-is-commercial-graffiti .image-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  
  .what-is-commercial-graffiti .image-container img.active {
    opacity: 1;
  }
  
  /* =====================
   Residential Decorative "What is Residential Decorative Film" Section Desktop
   ===================== */
  
  .residential-decorative-what-is .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .residential-decorative-what-is .text-section {
    width: 45%;
    padding: 2rem 0;
  }
  
  .residential-decorative-what-is .text-section p {
    font-family: 'Truculenta', sans-serif;
    font-size: 1.3rem;
    color: #232323;
    line-height: 1.8;
    font-weight: 400;
  }
  
  .residential-decorative-what-is .image-section {
    position: relative;
    width: 45%;
    margin-left: 0;
  }
  
  .residential-decorative-what-is .background-container {
    position: absolute;
    top: -50px;
    left: 0;
    width: 85%;
    height: 500px !important;
    background: rgba(227, 83, 53, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(227, 83, 53, 0.2);
    z-index: 1;
  }
  
  .residential-decorative-what-is .image-container {
    width: 80%;
    height: 500px;
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(227, 83, 53, 0.3);
    bottom: 0;
    left: 0;
  }
  
  .residential-decorative-what-is .image-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  
  .residential-decorative-what-is .image-container img.active {
    opacity: 1;
  }
  
  /* =====================
   Residential Solar Control "What is Residential Solar Control Film" Section Desktop
   ===================== */
  
  .residential-solar-control-what-is .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .residential-solar-control-what-is .text-section {
    width: 45%;
    padding: 2rem 0;
  }
  
  .residential-solar-control-what-is .text-section p {
    font-family: 'Truculenta', sans-serif;
    font-size: 1.3rem;
    color: #232323;
    line-height: 1.8;
    font-weight: 400;
  }
  
  .residential-solar-control-what-is .image-section {
    position: relative;
    width: 45%;
    margin-left: 0;
  }
  
  .residential-solar-control-what-is .background-container {
    position: absolute;
    top: -50px;
    left: 0;
    width: 85%;
    height: 500px !important;
    background: rgba(227, 83, 53, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(227, 83, 53, 0.2);
    z-index: 1;
  }
  
  .residential-solar-control-what-is .image-container {
    width: 80%;
    height: 500px;
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(227, 83, 53, 0.3);
    bottom: 0;
    left: 0;
  }
  
  .residential-solar-control-what-is .image-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  
  .residential-solar-control-what-is .image-container img.active {
    opacity: 1;
  }
  
  /* =====================
   Contracting "What is Subcontracting" Section Desktop
   ===================== */
  
  .contracting-what-is .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .contracting-what-is .text-section {
    width: 45%;
    padding: 2rem 0;
  }
  
  .contracting-what-is .text-section p {
    font-family: 'Truculenta', sans-serif;
    font-size: 1.3rem;
    color: #232323;
    line-height: 1.8;
    font-weight: 400;
  }
  
  .contracting-what-is .image-section {
    position: relative;
    width: 45%;
    margin-left: 0;
  }
  
  .contracting-what-is .background-container {
    position: absolute;
    top: -50px;
    left: 0;
    width: 85%;
    height: 500px !important;
    background: rgba(227, 83, 53, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(227, 83, 53, 0.2);
    z-index: 1;
  }
  
  .contracting-what-is .image-container {
    width: 80%;
    height: 500px;
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(227, 83, 53, 0.3);
    bottom: 0;
    left: 0;
  }
  
  .contracting-what-is .image-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  
  .contracting-what-is .image-container img.active {
    opacity: 1;
  }
  
  .what-is-commercial-film .background-container {
    position: absolute;
    top: -50px;
    left: 8rem;
    width: 85%;
    height: 500px !important;
    background: rgba(227, 83, 53, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(227, 83, 53, 0.2);
    z-index: 1;
  }
  
  .what-is-commercial-film .image-container {
    width: 80%;
    height: 500px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(227, 83, 53, 0.3);
  }
  
  .what-is-commercial-film .image-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  
  .what-is-commercial-film .image-container img.active {
    opacity: 1;
  }
  

  

}

/* =====================
   Commercial "What is Commercial Film" Section Mobile Responsive
   ===================== */

/* =====================
   Mobile Responsive Design for What is Commercial Film
   ===================== */

/* 300px and above - Mobile and Tablet */
@media (min-width: 300px) and (max-width: 768px) {
  .what-is-commercial-film {
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
  }
  
  .what-is-commercial-film .container {
    max-width: 100%;
    padding: 0 1.5rem;
    overflow: hidden;
  }
  
  .what-is-commercial-film h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-align: center;
    font-weight: 400;
  }
  
  .what-is-commercial-film .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
  }
  
  .what-is-commercial-film .text-section {
    width: 100%;
    padding: 0;
    order: 1;
  }
  
  .what-is-commercial-film .text-section p {
    font-family: 'Truculenta', sans-serif;
    font-size: 1.2rem;
    color: #232323;
    line-height: 1.6;
    font-weight: 400;
    text-align: center;
  }
  
  .what-is-commercial-film .image-section {
    width: 100%;
    margin-left: 0;
    order: 2;
    display: block;
  }
  
  .what-is-commercial-film .background-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px !important;
    background: rgba(227, 83, 53, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(227, 83, 53, 0.2);
    z-index: 1;
  }
  
  .what-is-commercial-film .image-container {
    width: 80%;
    height: 300px;
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(227, 83, 53, 0.3);
    bottom: 100px;
    left: 10%;
  }
  
  .what-is-commercial-film .image-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  
  .what-is-commercial-film .image-container img.active {
    opacity: 1;
  }
  
  /* Commercial Services Section Mobile Styles */
  .commercial-services {
    padding: 3rem 0;
  }
  
  .commercial-services-header {
    flex-direction: column;
    gap: 1.5rem;
    max-width: calc(100% - 3rem);
    margin: 0 auto 2rem auto;
    padding: 0 1.5rem;
  }
  
  .explore-your-film {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }
  
  .services-main-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.2;
  }
  
  .services-main-desc {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
  }
  
  .commercial-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: calc(100% - 3rem);
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .commercial-service-card {
    height: 200px;
    border-radius: 12px;
  }
  
  .service-card-content {
    padding: 1.5rem;
  }
  
  .service-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .commercial-learn-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  /* Additional mobile styles for 300px-480px range */
  @media (min-width: 300px) and (max-width: 480px) {
    .service-title {
    font-size: 1.4rem;
      margin-bottom: 0.8rem;
    }
    
    .commercial-learn-btn {
      padding: 10px 16px;
      font-size: 0.9rem;
      white-space: nowrap;
      min-width: auto;
    }
    
    .service-card-content {
      padding: 1rem;
    }
    
    .commercial-service-card {
      height: 180px;
    }
  }
  
  /* Extra small mobile styles for 300px-415px range */
  @media (min-width: 300px) and (max-width: 415px) {
    .service-title {
      font-size: 1rem;
      margin-bottom: 0.6rem;
      line-height: 1.2;
    }
    
    .commercial-learn-btn {
      padding: 8px 12px;
      font-size: 0.8rem;
      white-space: nowrap;
      min-width: auto;
    }
    
    .service-card-content {
      padding: 0.8rem;
    }
    
    .commercial-service-card {
      height: 160px;
    }
  }
  
  /* Commercial Decorative Services Mobile Styles */
  .decorative-services {
    padding: 3rem 0;
  }
  
  .decorative-services-header {
    flex-direction: column;
    gap: 1.5rem;
    max-width: calc(100% - 3rem);
    margin: 0 auto 2rem auto;
    padding: 0 1.5rem;
  }
  
  .decorative-services .explore-your-film {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }
  
  .decorative-services .services-main-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.2;
  }
  
  .decorative-services .services-main-desc {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
  }
  
  .decorative-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: calc(100% - 3rem);
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .decorative-service-card {
    height: 200px;
    border-radius: 12px;
  }
  
  .decorative-service-card .service-card-content {
    padding: 1.5rem;
  }
  
  .decorative-service-card .service-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .decorative-service-card .commercial-learn-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  /* Additional mobile styles for 300px-480px range - Decorative */
  @media (min-width: 300px) and (max-width: 480px) {
    .decorative-service-card .service-title {
      font-size: 1.4rem;
      margin-bottom: 0.8rem;
    }
    
    .decorative-service-card .commercial-learn-btn {
      padding: 10px 16px;
      font-size: 0.9rem;
      white-space: nowrap;
      min-width: auto;
    }
    
    .decorative-service-card .service-card-content {
      padding: 1rem;
    }
    
    .decorative-service-card {
      height: 180px;
    }
  }
  
  /* Extra small mobile styles for 300px-415px range - Decorative */
  @media (min-width: 300px) and (max-width: 415px) {
    .decorative-service-card .service-title {
      font-size: 1rem;
      margin-bottom: 0.6rem;
      line-height: 1.2;
    }
    
    .decorative-service-card .commercial-learn-btn {
      padding: 8px 12px;
      font-size: 0.8rem;
      white-space: nowrap;
      min-width: auto;
    }
    
    .decorative-service-card .service-card-content {
      padding: 0.8rem;
    }
    
    .decorative-service-card {
      height: 160px;
    }
  }
  
  /* Ultra small mobile styles for 300px-302px range - Decorative */
  @media (min-width: 300px) and (max-width: 302px) {
    .decorative-service-card .service-title {
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
      line-height: 1.1;
    }
    
    .decorative-service-card .commercial-learn-btn {
      padding: 6px 8px;
      font-size: 0.7rem;
      white-space: nowrap;
      min-width: auto;
    max-width: 100%;
    }
    
    .decorative-service-card .service-card-content {
      padding: 0.6rem;
    }
    
    .decorative-service-card {
      height: 150px;
    }
  }
  
  /* Contact Information Section Mobile Styles */
  .contact {
    padding: 3rem 0;
  }
  
  .contact .container {
    max-width: calc(100% - 3rem);
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .contact-cta-block {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }
  
  
  
  .contact-details {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .contact-details p {
    margin-bottom: 0.8rem;
    text-align: center;
  }
  
  .contact-details a {
    font-size: 1.3rem;
    color: #E35335;
    text-decoration: none;
  }
  
  
  /* Additional mobile styles for 300px-480px range - Contact */
  @media (min-width: 300px) and (max-width: 480px) {
    
    .contact-details {
      font-size: 1.1rem;
      line-height: 1.5;
    }
    
    .contact-details a {
      font-size: 1.1rem;
    }
    
  }
  
  /* Extra small mobile styles for 300px-415px range - Contact */
  @media (min-width: 300px) and (max-width: 415px) {
    
    .contact-details {
      font-size: 1rem;
    line-height: 1.4;
    }
    
    .contact-details a {
      font-size: 1rem;
    }
    
  }
  
  /* Ultra small mobile styles for 300px-302px range - Contact */
  @media (min-width: 300px) and (max-width: 302px) {
    
    .contact-details {
      font-size: 0.9rem;
      line-height: 1.3;
    }
    
    .contact-details a {
      font-size: 0.9rem;
    }
    
  }
  
  /* Benefits Section Mobile Styles - ONLY Text Size Reduction */
  .benefits-section .benefit-heading {
    font-size: 1.8rem;
  }
  
  .benefits-section .benefit-desc {
    font-size: 1.3rem;
  }
  
  /* Additional mobile styles for 300px-480px range - Benefits */
  @media (min-width: 300px) and (max-width: 480px) {
    .benefits-section .benefit-heading {
      font-size: 1.4rem;
    }
    
    .benefits-section .benefit-desc {
      font-size: 1.1rem;
    }
  }
  
  /* Extra small mobile styles for 300px-415px range - Benefits */
  @media (min-width: 300px) and (max-width: 415px) {
    .benefits-section .benefit-heading {
      font-size: 1.2rem;
    }
    
    .benefits-section .benefit-desc {
      font-size: 1rem;
    }
  }
  
  /* Ultra small mobile styles for 300px-302px range - Benefits */
  @media (min-width: 300px) and (max-width: 302px) {
    .benefits-section .benefit-heading {
      font-size: 1rem;
    }
    
    .benefits-section .benefit-desc {
      font-size: 0.9rem;
    }
  }
  
  /* Commercial Submenu Sections Mobile Styles - ONLY Text Size Reduction */
  .commercial-services .benefit-heading {
    font-size: 1.8rem;
  }
  
  .commercial-services .benefit-desc {
    font-size: 1.3rem;
  }
  
  /* Additional mobile styles for 300px-480px range - Commercial Submenus */
  @media (min-width: 300px) and (max-width: 480px) {
    .commercial-services .benefit-heading {
      font-size: 1.4rem;
    }
    
    .commercial-services .benefit-desc {
      font-size: 1.1rem;
    }
  }
  
  /* Extra small mobile styles for 300px-415px range - Commercial Submenus */
  @media (min-width: 300px) and (max-width: 415px) {
    .commercial-services .benefit-heading {
      font-size: 1.2rem;
    }
    
    .commercial-services .benefit-desc {
      font-size: 1rem;
    }
  }
  
  /* Ultra small mobile styles for 300px-302px range - Commercial Submenus */
  @media (min-width: 300px) and (max-width: 302px) {
    .commercial-services .benefit-heading {
      font-size: 1rem;
    }
    
    .commercial-services .benefit-desc {
      font-size: 0.9rem;
    }
  }
  
  /* Residential Benefits Section Mobile Styles - ONLY Text Size Reduction */
  .residential-benefits-mod .benefit-heading {
    font-size: 1.8rem;
  }
  
  .residential-benefits-mod .benefit-desc {
    font-size: 1.3rem;
  }
  
  /* Additional mobile styles for 300px-480px range - Residential Benefits */
  @media (min-width: 300px) and (max-width: 480px) {
    .residential-benefits-mod .benefit-heading {
      font-size: 1.4rem;
    }
    
    .residential-benefits-mod .benefit-desc {
      font-size: 1.1rem;
    }
  }
  
  /* Extra small mobile styles for 300px-415px range - Residential Benefits */
  @media (min-width: 300px) and (max-width: 415px) {
    .residential-benefits-mod .benefit-heading {
      font-size: 1.2rem;
    }
    
    .residential-benefits-mod .benefit-desc {
      font-size: 1rem;
    }
  }
  
  /* Ultra small mobile styles for 300px-302px range - Residential Benefits */
  @media (min-width: 300px) and (max-width: 302px) {
    .residential-benefits-mod .benefit-heading {
      font-size: 1rem;
    }
    
    .residential-benefits-mod .benefit-desc {
      font-size: 0.9rem;
    }
  }
  
  /* Residential Submenu Sections Mobile Styles - ONLY Text Size Reduction */
  .residential-services-mod .benefit-heading {
    font-size: 1.8rem;
  }
  
  .residential-services-mod .benefit-desc {
    font-size: 1.3rem;
  }
  
  /* Additional mobile styles for 300px-480px range - Residential Submenus */
  @media (min-width: 300px) and (max-width: 480px) {
    .residential-services-mod .benefit-heading {
      font-size: 1.4rem;
    }
    
    .residential-services-mod .benefit-desc {
      font-size: 1.1rem;
    }
  }
  
  /* Extra small mobile styles for 300px-415px range - Residential Submenus */
  @media (min-width: 300px) and (max-width: 415px) {
    .residential-services-mod .benefit-heading {
      font-size: 1.2rem;
    }
    
    .residential-services-mod .benefit-desc {
      font-size: 1rem;
    }
  }
  
  /* Ultra small mobile styles for 300px-302px range - Residential Submenus */
  @media (min-width: 300px) and (max-width: 302px) {
    .residential-services-mod .benefit-heading {
      font-size: 1rem;
    }
    
    .residential-services-mod .benefit-desc {
      font-size: 0.9rem;
    }
  }
  
  /* Market Segments Section Mobile Styles - ONLY Text Size Reduction */
  .market-segments-section h3 {
    font-size: 1.8rem;
  }
  
  .market-segments-section p {
    font-size: 1.3rem;
  }
  
  /* Additional mobile styles for 300px-480px range - Market Segments */
  @media (min-width: 300px) and (max-width: 480px) {
    .market-segments-section h3 {
      font-size: 1.4rem;
    }
    
    .market-segments-section p {
      font-size: 1.1rem;
    }
  }
  
  /* Extra small mobile styles for 300px-415px range - Market Segments */
  @media (min-width: 300px) and (max-width: 415px) {
    .market-segments-section h3 {
      font-size: 1.2rem;
    }
    
    .market-segments-section p {
      font-size: 1rem;
    }
  }
  
  /* Ultra small mobile styles for 300px-302px range - Market Segments */
  @media (min-width: 300px) and (max-width: 302px) {
    .market-segments-section h3 {
      font-size: 1rem;
    }
    
    .market-segments-section p {
      font-size: 0.9rem;
    }
  }
  
  /* Solar Privacy Why Choose Us Section Mobile Styles */
  .solar-privacy-when-why-section {
    padding: 3rem 0;
  }
  
  .solar-privacy-when-why-section .container {
    max-width: 100%;
    margin: 0 !important;
    padding: 0 12px !important;
  }
  
  /* Residential Submenu Pages - Container and Text Alignment */
  .residential-decorative-when-why-section .container,
  .residential-solar-control-when-why-section .container {
    max-width: 100%;
    margin: 0 !important;
    padding: 0 12px !important;
  }
  
  .residential-decorative-when-why-section .market-segments-header,
  .residential-decorative-when-why-section .market-segments-title,
  .residential-decorative-when-why-section .market-segments-desc,
  .residential-solar-control-when-why-section .market-segments-header,
  .residential-solar-control-when-why-section .market-segments-title,
  .residential-solar-control-when-why-section .market-segments-desc {
    text-align: center !important;
    width: 100%;
    max-width: 100% !important;
  }
  
  /* Ensure grid cards maintain original styling */
  .residential-decorative-when-why-section .market-segments-grid,
  .residential-solar-control-when-why-section .market-segments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .residential-decorative-when-why-section .market-segment-card,
  .residential-solar-control-when-why-section .market-segment-card {
    text-align: left;
    padding: 1.5rem;
  }
  
  .residential-decorative-when-why-section .market-segment-card p,
  .residential-solar-control-when-why-section .market-segment-card p {
    font-size: 1.3rem;
    line-height: 1.6;
    text-align: left;
  }
  
  /* Contracting Page - Who We Serve Section */
  .contracting-who-we-serve-section .container {
    max-width: 100%;
    margin: 0 !important;
    padding: 0 12px !important;
  }
  
  /* Ensure 12px margin is applied to contracting page */
  .contracting-who-we-serve-section {
    padding: 3rem 0;
  }
  
  .contracting-who-we-serve-section .market-segments-header {
    text-align: center !important;
    margin-bottom: 3rem;
    padding: 0;
    width: 100%;
  }
  
  .contracting-who-we-serve-section .market-segments-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center !important;
    line-height: 1.3;
    width: 100%;
    padding: 0;
  }
  
  .contracting-who-we-serve-section .market-segments-label {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center !important;
    padding: 0;
    width: 100%;
  }
  
  .contracting-who-we-serve-section .market-segments-header,
  .contracting-who-we-serve-section .market-segments-title,
  .contracting-who-we-serve-section .market-segments-label {
    text-align: center !important;
    width: 100%;
    max-width: 100% !important;
  }
  
  .contracting-who-we-serve-section .market-segments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: calc(100% - 24px);
    margin: 0 12px;
    padding: 0;
  }
  
  .contracting-who-we-serve-section .market-segment-card {
    text-align: left;
    padding: 1.5rem;
  }
  
  .contracting-who-we-serve-section .market-segment-card p {
    font-size: 1.3rem !important;
    line-height: 1.6;
    text-align: left;
  }
  
  .contracting-who-we-serve-section .market-segment-card h3 {
    font-size: 1.8rem !important;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  /* Force text size with higher specificity */
  body .contracting-who-we-serve-section .market-segment-card p {
    font-size: 1.3rem !important;
  }
  
  body .contracting-who-we-serve-section .market-segment-card h3 {
    font-size: 1.8rem !important;
  }
  
  .solar-privacy-when-why-section .market-segments-header {
    text-align: center !important;
    margin-bottom: 3rem;
    padding: 0;
    width: 100%;
    max-width: 100% !important;
  }
  
  .solar-privacy-when-why-section .market-segments-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center !important;
    line-height: 1.3;
    width: 100%;
    padding: 0;
    max-width: 100% !important;
  }
  
  .solar-privacy-when-why-section .market-segments-desc {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center !important;
    width: 100%;
    padding: 0;
    max-width: 100% !important;
  }
  
  /* Force center alignment with higher specificity */
  .solar-privacy-when-why-section .market-segments-header,
  .solar-privacy-when-why-section .market-segments-title,
  .solar-privacy-when-why-section .market-segments-desc {
    text-align: center !important;
  }
  
  /* Ultra-specific override for center alignment */
  body .solar-privacy-when-why-section .market-segments-header,
  body .solar-privacy-when-why-section .market-segments-title,
  body .solar-privacy-when-why-section .market-segments-desc {
    text-align: center !important;
  }
  
  /* Commercial Submenu Pages - Center Top Text */
  body .safety-security-when-why-section .market-segments-header,
  body .safety-security-when-why-section .market-segments-title,
  body .safety-security-when-why-section .market-segments-desc {
    text-align: center !important;
  }
  
  body .decorative-when-why-section .market-segments-header,
  body .decorative-when-why-section .market-segments-title,
  body .decorative-when-why-section .market-segments-desc {
    text-align: center !important;
  }
  
  body .graffiti-when-why-section .market-segments-header,
  body .graffiti-when-why-section .market-segments-title,
  body .graffiti-when-why-section .market-segments-desc {
    text-align: center !important;
  }
  
  /* Residential Submenu Pages - Center Top Text */
  body .residential-decorative-when-why-section .market-segments-header,
  body .residential-decorative-when-why-section .market-segments-title,
  body .residential-decorative-when-why-section .market-segments-desc {
    text-align: center !important;
  }
  
  body .residential-solar-control-when-why-section .market-segments-header,
  body .residential-solar-control-when-why-section .market-segments-title,
  body .residential-solar-control-when-why-section .market-segments-desc {
    text-align: center !important;
  }
  
  .solar-privacy-when-why-section .market-segments-label {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: left !important;
    padding: 0;
    width: 100%;
    max-width: 100% !important;
  }
  
  .solar-privacy-when-why-section .market-segments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .solar-privacy-when-why-section .market-segment-card {
    text-align: left;
    padding: 1.5rem;
  }
  
  .solar-privacy-when-why-section .market-segment-card p {
    font-size: 1.3rem;
    line-height: 1.6;
    text-align: left;
  }
  
  /* Additional mobile styles for 300px-480px range - Solar Privacy Why Choose */
  @media (min-width: 300px) and (max-width: 480px) {
    .solar-privacy-when-why-section .market-segments-title {
      font-size: 2.2rem;
      margin-bottom: 0.8rem;
    }
    
    .solar-privacy-when-why-section .market-segments-desc {
      font-size: 1.1rem;
      line-height: 1.5;
    }
    
    .solar-privacy-when-why-section .market-segment-card p {
      font-size: 1.1rem;
      line-height: 1.5;
    }
  }
  
  /* Extra small mobile styles for 300px-415px range - Solar Privacy Why Choose */
  @media (min-width: 300px) and (max-width: 415px) {
    .solar-privacy-when-why-section .market-segments-title {
      font-size: 1.8rem;
      margin-bottom: 0.6rem;
      line-height: 1.2;
    }
    
    .solar-privacy-when-why-section .market-segments-desc {
      font-size: 1rem;
      line-height: 1.4;
    }
    
    .solar-privacy-when-why-section .market-segment-card p {
      font-size: 1rem;
      line-height: 1.4;
    }
  }
  
  /* Ultra small mobile styles for 300px-302px range - Solar Privacy Why Choose */
  @media (min-width: 300px) and (max-width: 302px) {
    .solar-privacy-when-why-section .market-segments-title {
      font-size: 1.6rem;
      margin-bottom: 0.5rem;
      line-height: 1.1;
    }
    
    .solar-privacy-when-why-section .market-segments-desc {
      font-size: 0.9rem;
      line-height: 1.3;
    }
    
    .solar-privacy-when-why-section .market-segment-card p {
      font-size: 0.9rem;
      line-height: 1.3;
    }
  }
  
  /* Solar & Privacy "Why Choose Us" Section Mobile Left Alignment */
  .solar-privacy-when-why-section .market-segments-header {
    text-align: left !important;
  }
  
  .solar-privacy-when-why-section .market-segments-title {
    text-align: left !important;
  }
  
  .solar-privacy-when-why-section .market-segments-desc {
    text-align: left !important;
  }
  
  .solar-privacy-when-why-section .market-segments-label {
    text-align: left !important;
  }
  
  .solar-privacy-when-why-section .market-segment-card {
    text-align: left !important;
  }
  
  .solar-privacy-when-why-section .market-segment-card p {
    text-align: left !important;
  }
}

/* =====================
   Mobile Hamburger Menu
   ===================== */

/* Hamburger Menu Button (Hidden on Desktop) */
.hamburger-menu {
  display: none;
  position: relative;
  z-index: 3000;
}

/* Desktop Styles (769px and above) */
@media (min-width: 769px) {
  .hamburger-menu {
    display: none !important;
  }
  
  .top-navbar-menu {
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    backdrop-filter: none !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
    gap: 1.5rem !important;
    transition: none !important;
    z-index: auto !important;
    box-shadow: none !important;
    overflow: visible !important;
    right: auto !important;
  }
  
  .top-navbar-menu li {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .top-navbar-menu li a {
    display: inline-block !important;
    padding: 0.18rem 0.35rem !important;
    border-bottom: none !important;
    font-size: 1rem !important;
    width: auto !important;
    text-align: center !important;
  }
  
  .top-navbar-menu li a:not(.navbar-btn)::after {
    display: block !important;
  }
  
  .top-navbar-menu li .navbar-btn {
    margin: 0 0 0 1rem !important;
    text-align: center !important;
    width: auto !important;
  }
  
  /* Desktop Dropdown Styles */
  .top-navbar-menu .dropdown {
    width: auto !important;
    display: block !important;
    flex-direction: unset !important;
  }
  
  .top-navbar-menu .dropdown-header {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: auto !important;
    padding: 0 !important;
    border-bottom: none !important;
  }
  
  .top-navbar-menu .dropdown-header a {
    border-bottom: none !important;
    padding: 0.18rem 0.35rem !important;
    font-weight: 900 !important;
    color: #E35335 !important;
  }
  
  .top-navbar-menu .dropdown-menu {
    position: absolute !important;
    display: none !important;
    background: rgba(255, 248, 231, 0.95) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    border: 1px solid rgba(227, 83, 53, 0.1) !important;
    padding: 0.5rem 0 !important;
    margin: 0 !important;
    width: auto !important;
    min-width: 200px !important;
    overflow: visible !important;
    transition: none !important;
  }
  
  .top-navbar-menu .dropdown.active .dropdown-menu {
    display: block !important;
    animation: none !important;
  }
  
  .top-navbar-menu .dropdown-menu li {
    width: auto !important;
    border-bottom: none !important;
  }
  
  .top-navbar-menu .dropdown-menu li:last-child {
    border-bottom: none !important;
  }
  
  .top-navbar-menu .dropdown-menu li a {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
    color: #E35335 !important;
    opacity: 1 !important;
    display: block !important;
    width: auto !important;
    text-align: left !important;
    border-bottom: none !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
  }
  
  .top-navbar-menu .dropdown-menu li a:hover {
    color: #E35335 !important;
    background-color: rgba(227, 83, 53, 0.1) !important;
  }
}

/* Responsive Desktop Scaling */
@media (min-width: 769px) and (max-width: 1024px) {
  .top-navbar-menu {
    gap: 0.8rem !important;
  }
  
  .top-navbar-menu li a {
    font-size: 0.85rem !important;
    padding: 0.12rem 0.25rem !important;
    letter-spacing: 0.08em !important;
  }
  
  .top-navbar-menu li .navbar-btn {
    margin: 0 0 0 0.6rem !important;
    padding: 0.35rem 0.7rem !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.06em !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Show logo on desktop */
  .navbar-logo-left { display: flex !important; }
  .navbar-logo-img { height: 70px !important; }
}

@media (min-width: 769px) and (max-width: 900px) {
  .top-navbar-menu {
    gap: 0.6rem !important;
  }
  
  .top-navbar-menu li a {
    font-size: 0.8rem !important;
    padding: 0.1rem 0.2rem !important;
    letter-spacing: 0.06em !important;
  }
  
  .top-navbar-menu li .navbar-btn {
    margin: 0 0 0 0.5rem !important;
    padding: 0.3rem 0.6rem !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.05em !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .top-navbar-menu .dropdown-menu li a {
    font-size: 0.75rem !important;
    padding: 0.35rem 0.7rem !important;
  }
  
  .navbar-logo-img {
    height: 35px !important;
  }
  .navbar-logo-left { display: flex !important; }
}

@media (min-width: 769px) and (max-width: 800px) {
  .top-navbar-menu {
    gap: 0.4rem !important;
  }
  
  .top-navbar-menu li a {
    font-size: 0.75rem !important;
    padding: 0.08rem 0.15rem !important;
    letter-spacing: 0.05em !important;
  }
  
  .top-navbar-menu li .navbar-btn {
    margin: 0 0 0 0.4rem !important;
    padding: 0.25rem 0.5rem !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.04em !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .top-navbar-menu .dropdown-menu li a {
    font-size: 0.7rem !important;
    padding: 0.3rem 0.6rem !important;
  }
  
  .navbar-logo-img {
    height: 35px !important;
  }
  .navbar-logo-left { display: flex !important; }
}

/* Narrow desktop just above mobile threshold */
@media (min-width: 769px) and (max-width: 780px) {
  .top-navbar-menu {
    gap: 0.3rem !important;
  }
  
  .top-navbar-menu li a {
    font-size: 0.7rem !important;
    padding: 0.06rem 0.12rem !important;
    letter-spacing: 0.04em !important;
  }
  
  .top-navbar-menu li .navbar-btn {
    margin: 0 0 0 0.3rem !important;
    padding: 0.2rem 0.4rem !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.035em !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .top-navbar-menu .dropdown-menu li a {
    font-size: 0.65rem !important;
    padding: 0.25rem 0.5rem !important;
  }
  
  .navbar-logo-left {
    display: none !important;
  }
}

/* Large desktop and ultrawide scaling (1025px and above) */
@media (min-width: 1025px) {
  .top-navbar-menu {
    gap: clamp(1rem, 1.2vw, 2rem) !important;
  }
  .top-navbar-menu li a {
    font-size: clamp(0.95rem, 0.9vw, 1.1rem) !important;
    letter-spacing: clamp(0.06em, 0.1vw, 0.12em) !important;
    padding: 0.18rem 0.35rem !important;
  }
  .top-navbar-menu li .navbar-btn {
    font-size: clamp(0.9rem, 0.85vw, 1.05rem) !important;
    padding: clamp(0.35rem, 0.6vw, 0.6rem) clamp(0.8rem, 1.2vw, 1.2rem) !important;
    letter-spacing: clamp(0.04em, 0.08vw, 0.08em) !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .top-navbar-menu .dropdown-menu li a {
    font-size: clamp(0.85rem, 0.75vw, 1rem) !important;
  }
  /* Hide logo to preserve space on narrower large screens */
  .navbar-logo-left { display: flex !important; }
  .navbar-logo-img { height: 70px !important; }
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 36px;
  position: relative;
  z-index: 3001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #E35335;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger Animation */
.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hamburger-menu {
    display: block;
    margin-right: 1rem;
  }
  
  .top-navbar.with-logo {
    justify-content: space-between;
    padding: 0 1rem;
  }
  
  .navbar-logo-left {
    margin-left: 0;
  }
  
  .navbar-logo-img {
    height: 35px !important;
  }
  
  .top-navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: rgba(255, 248, 231, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 2rem 2rem 2rem;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 2000;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    overflow-y: auto;
  }
  
  .top-navbar-menu.active {
    right: 0;
  }
  
  .top-navbar-menu li {
    width: 100%;
    margin: 0;
    padding: 0;
    height: auto !important;
    align-items: stretch !important;
  }
  
  .top-navbar-menu li a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(227, 83, 53, 0.1);
    font-size: 1.1rem;
    width: 100%;
    text-align: left;
    font-weight: 700 !important;
  }
  
  .top-navbar-menu li a:not(.navbar-btn)::after {
    display: none;
  }
  
  .top-navbar-menu li .navbar-btn {
    margin: 1rem 0 0 0;
    text-align: center;
    width: 100%;
  }
  
  /* Mobile Dropdown Styles */
  .top-navbar-menu .dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .top-navbar-menu .dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(227, 83, 53, 0.1);
  }
  
  .top-navbar-menu .dropdown-header a {
    border-bottom: none;
    padding: 0;
    font-weight: 700;
    color: #E35335;
  }
  
  .top-navbar-menu .dropdown-arrow {
    background: none;
    border: none;
    color: #E35335;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
  }
  
  .top-navbar-menu .dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }
  
  .top-navbar-menu .dropdown-menu {
    position: static !important;
    left: auto !important;
    transform: none !important;
    display: none;
    background: none;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
    width: 100% !important;
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
    transition: all 0.3s ease;
  }
  
  .top-navbar-menu .dropdown.active .dropdown-menu {
    display: block;
    animation: slideDown 0.3s ease;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .top-navbar-menu .dropdown-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(227, 83, 53, 0.05);
  }
  
  .top-navbar-menu .dropdown-menu li:last-child {
    border-bottom: none;
  }
  
  .top-navbar-menu .dropdown-menu li a {
    padding: 0.6rem 0;
    font-size: 1rem;
    color: #333;
    opacity: 1;
    display: block;
    width: 100%;
    text-align: left;
    border-bottom: none;
    font-weight: 700;
  }
  
  .top-navbar-menu .dropdown-menu li a:hover {
    color: #E35335;
    background-color: rgba(227, 83, 53, 0.05);
  }
  
  /* Overlay for mobile menu */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Hide centered logo on mobile when scrolled */
  .custom-navbar.scrolled .centered-logo-bar {
    display: none !important;
  }
}

/* Smaller mobile devices */
@media (max-width: 480px) {
  .top-navbar-menu {
    width: 100%;
    right: -100%;
  }
  
  .navbar-logo-img {
    height: 35px !important;
  }
  
  .hamburger-btn {
    width: 36px;
    height: 32px;
  }
}

/* =====================
   About Page Mobile Responsive Styles
   ===================== */

/* About Hero Mobile Responsive - Progressive Scaling */

/* 300px and below - Smallest mobile */
@media (max-width: 300px) {
  .about-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .about-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  
  .about-hero .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .about-hero .hero-divider {
    width: 120px;
    height: 3px;
    margin: 0 auto 1.5rem auto;
  }
  
  .about-hero .hero-content p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  
  .about-hero .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .about-hero .hero-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 200px;
  }
}

/* 301px - 400px - Small to Medium mobile */
@media (min-width: 301px) and (max-width: 400px) {
  .about-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 16px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .about-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  
  .about-hero .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .about-hero .hero-divider {
    width: 130px;
    height: 3px;
    margin: 0 auto 1.5rem auto;
  }
  
  .about-hero .hero-content p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  
  .about-hero .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .about-hero .hero-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 200px;
  }
}

/* 401px - 500px - Large mobile */
@media (min-width: 401px) and (max-width: 500px) {
  .about-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .about-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  
  .about-hero .hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
    line-height: 1.3;
  }
  
  .about-hero .hero-divider {
    width: 180px;
    height: 4px;
    margin: 0 auto 2.2rem auto;
  }
  
  .about-hero .hero-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.2rem;
    max-width: 100%;
  }
  
  .about-hero .hero-buttons {
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
  }
  
  .about-hero .hero-btn {
    padding: 16px 24px;
    font-size: 1.1rem;
    width: auto;
    min-width: 160px;
    white-space: nowrap;
    text-align: center;
  }
}

/* 501px - 600px - Small tablet */
@media (min-width: 501px) and (max-width: 600px) {
  .about-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 32px;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }
  
  .about-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }
  
  .about-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.3;
  }
  
  .about-hero .hero-divider {
    width: 200px;
    height: 4px;
    margin: 0 0 2.5rem 0;
  }
  
  .about-hero .hero-content p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 100%;
  }
  
  .about-hero .hero-buttons {
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    justify-content: flex-start;
  }
  
  .about-hero .hero-btn {
    padding: 18px 28px;
    font-size: 1.2rem;
    width: auto;
    min-width: 180px;
    white-space: nowrap;
    text-align: center;
  }
}

/* 601px - 768px - Large tablet */
@media (min-width: 601px) and (max-width: 768px) {
  .about-hero {
    height: 100vh;
    background-attachment: scroll;
    padding: 0 48px;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }
  
  .about-hero .hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }
  
  .about-hero .hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 2.2rem;
    line-height: 1.3;
  }
  
  .about-hero .hero-divider {
    width: 220px;
    height: 4px;
    margin: 0 0 2.8rem 0;
  }
  
  .about-hero .hero-content p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2.8rem;
    max-width: 100%;
  }
  
  .about-hero .hero-buttons {
    flex-direction: row;
    gap: 2.5rem;
    align-items: center;
    justify-content: flex-start;
  }
  
  .about-hero .hero-btn {
    padding: 20px 40px;
    font-size: 1.4rem;
    width: auto;
    min-width: 220px;
  }
}

/* About Page Content Mobile Responsive */
@media (max-width: 900px) {
  .what-is-commercial-film {
    padding: 32px 0 3rem 0;
    margin-bottom: 2rem;
  }
  
  .what-is-commercial-film .container {
    padding: 24px 12px;
  }
  
  .what-is-commercial-film h2 {
    font-size: 2rem;
  }
  
  .what-is-commercial-film p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .content-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  
  .text-section {
    width: 100%;
    order: 2;
  }
  
  .image-section {
    width: 100%;
    order: 1;
  }
  
  .image-container {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .what-is-commercial-film {
    padding: 24px 0 2rem 0;
  }
  
  .what-is-commercial-film .container {
    padding: 16px 8px;
  }
  
  .what-is-commercial-film h2 {
    font-size: 1.5rem;
  }
  
  .what-is-commercial-film p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .image-container {
    height: 250px;
  }
}

/* Contact Section Modern Design */
.contact-cta-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 48px 48px;
  background: #f8f9fa;
  box-sizing: border-box;
  gap: 48px;
}

.cta-col-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.cta-col-right {
  display: flex;
  justify-content: center;
}

.cta-main-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #333;
  line-height: 1.2;
  margin: 0;
  font-family: 'IBM Plex Sans', sans-serif;
}

.cta-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.cta-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.social-cards-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 100% !important;
  width: 100% !important;
}

.social-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 80px;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.social-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Social cards as links (Transform Your Space) - same layout and no link styling */
a.social-card {
  color: inherit;
  display: flex;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
}

.facebook-icon {
  background: #1877f2;
}

.instagram-icon {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.linkedin-icon {
  background: #0077b5;
}

.tiktok-icon {
  background: #000;
}

.card-content {
  flex: 1;
}

.card-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 8px 0;
}

.card-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.facebook-dot {
  background: #1877f2;
}

.instagram-dot {
  background: #e6683c;
}

.linkedin-dot {
  background: #0077b5;
}

.tiktok-dot {
  background: #000;
}

.card-status span:last-child {
  font-size: 0.9rem;
  color: #666;
}

/* Mobile Responsive for Contact Section */
@media (max-width: 900px) {
  .contact-cta-block {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }
  
  .cta-col-left {
    text-align: center;
  }
  
  .cta-main-title {
    font-size: 2rem;
  }
  
  .cta-btn {
    align-self: center;
  }
  
  .cta-col-right {
    justify-content: center;
  }
  
  .social-cards-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 100% !important;
    width: 100% !important;
  }
  
  .social-card,
  a.social-card {
    padding: 20px;
    min-height: 72px;
    gap: 14px;
  }
  
  .card-content h4 {
    font-size: 1.05rem;
  }
  
  .card-status span:last-child {
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .contact-cta-block {
    padding: 16px 8px;
    width: calc(100% - 2px);
    max-width: calc(100% - 2px);
  }
  
  .social-cards-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 100% !important;
    width: 100% !important;
  }
  
  .social-card,
  a.social-card {
    padding: 16px;
    min-height: 64px;
    gap: 12px;
  }
  
  .contact .card-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  
  .contact .card-content h4 {
    font-size: 1rem;
  }
  
  .contact .card-status span:last-child {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .social-card,
  a.social-card {
    padding: 14px;
    min-height: 60px;
    gap: 10px;
  }
  
  .contact .card-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
  
  .contact .card-content h4 {
    font-size: 0.95rem;
  }
  
  .contact .card-status span:last-child {
    font-size: 0.8rem;
  }
}

/* Specific mobile responsive for 300-423px range */
@media (min-width: 300px) and (max-width: 423px) {
  .contact-cta-block {
    width: calc(100% - 0px);
    max-width: calc(100% - 0px);
    margin: 8px 0px;
    padding: 12px 8px;
    border-width: 3px;
  }
  
  
  .contact-details {
    text-align: center;
  }
  
  .contact-details p {
    font-size: 0.9rem;
    margin: 0.5rem 0;
  }
  
  .contact-details i {
    margin-right: 0.5rem;
    width: 16px;
    color: #E35335;
  }
}

/* About Benefits Section Mobile Responsive */
@media (max-width: 900px) {
  .about-benefits .benefits-content {
    flex-direction: column;
    gap: 24px;
    padding: 0 12px;
  }
  
  .about-benefits .benefits-image {
    max-width: 100%;
    height: auto;
    min-width: auto;
  }
  
  .about-benefits .benefits-list-col {
    width: 100%;
  }
  
  .about-benefits .benefits-list li {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .about-benefits .benefits-title {
    font-size: 1.2rem;
  }
  
  .about-benefits .benefits-label {
    font-size: 0.8rem;
  }
  
  .about-benefits .benefits-list li {
    font-size: 0.85rem;
  }
  
  .about-benefits .benefit-heading {
    font-size: 1rem;
  }
  
  .about-benefits .benefit-desc {
    font-size: 0.9rem;
  }
}

/* Project Quote Section Mobile Responsive */
@media (max-width: 900px) {
  .project-quote-section {
    padding: 48px 0 32px 0;
  }
  
  .project-quote-section .content-wrapper {
    flex-direction: column;
    gap: 2rem;
    padding: 0 16px;
  }
  
  .project-quote-section .text-section {
    width: 100%;
    order: 2;
  }
  
  .project-quote-section .image-section {
    width: 100%;
    order: 1;
  }
  
  .project-quote-section .image-container {
    height: 300px;
  }
  
  .project-quote-title {
    font-size: 1.8rem;
  }
  
  .project-quote-subtitle {
    font-size: 1rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .form-group {
    width: 100%;
    flex: 1 1 100%;
  }
}

@media (max-width: 600px) {
  .project-quote-section {
    padding: 32px 0 24px 0;
  }
  
  .project-quote-section .content-wrapper {
    gap: 1.5rem;
    padding: 0 12px;
  }
  
  .project-quote-section .image-container {
    height: 250px;
  }
  
  .project-quote-title {
    font-size: 1.5rem;
  }
  
  .project-quote-subtitle {
    font-size: 0.9rem;
  }
  
  .quote-btn {
    width: 100%;
    padding: 14px 0;
    font-size: 1rem;
  }
}

/* Full Desktop Footer Styles for Training Page - 1050px and above */
@media (min-width: 1050px) {
    /* Footer Content - Horizontal Layout (Same as 851-1049px) */
    .footer-content {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
    }
    
    /* Footer Logo Section - Left Side Layout (Largest) */
    .footer-logo-section {
        position: relative;
        padding: 0;
        margin-right: 0;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex: 1;
    }
    
    .footer-logo {
        position: static;
        top: auto;
        left: auto;
        margin: 0 0 2rem 0;
        z-index: 10;
    }
    
    .footer-logo-img {
        max-width: 150px;
        height: auto;
        margin: 0;
        filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
    }
    
    .footer-tagline-text {
        position: static;
        top: auto;
        left: auto;
        text-align: left;
        margin: 0;
        padding: 0;
    }
    
    .tagline-main {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .tagline-standard {
        font-size: 2.8rem;
        margin-bottom: 2.5rem;
    }
    
    /* Training Overlay - Right Side Layout (Largest) */
    .training-overlay {
        background: #133E87;
        padding: 2rem;
        border-radius: 8px;
        margin: 0;
        box-shadow: 0 4px 15px rgba(19, 62, 135, 0.3);
        position: relative;
        text-align: left;
        max-width: 360px;
        flex-shrink: 0;
    }
    
    .overlay-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .overlay-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .overlay-form {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .overlay-email-field {
        width: 100%;
        min-width: auto;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .overlay-enroll-btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Footer Content Section - Full width below the horizontal layout */
    .footer-content-section {
        color: #333;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2.5rem;
        width: 100%;
        margin-top: 3rem;
    }
    
    .footer-subsection {
        margin-bottom: 0;
        text-align: left;
    }
    
    .footer-section h3 {
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
        font-weight: 700;
        color: #333;
    }
    
    .footer-section h4 {
        margin-bottom: 1rem;
        font-size: 1.1rem;
        font-weight: 600;
        color: #333;
    }
    
    .footer-section ul li {
        margin-bottom: 1rem;
    }
    
    .footer-section a {
        color: #555;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 1rem;
    }
    
    .footer-section a:hover {
        color: #E35335;
        font-weight: 600;
    }
    
    /* Contact Details */
    .contact-details p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .social-icons {
        gap: 1.25rem;
    }
    
    .social-icon {
        font-size: 1.3rem;
    }
    
    /* Footer Bottom Content */
    .footer-bottom-content {
        text-align: left;
        color: #333;
        grid-column: 1 / -1;
        margin-top: 2.5rem;
    }
    
    .footer-bottom-content p {
        margin-bottom: 0.75rem;
        font-size: 1rem;
    }
    
    .footer-separator {
        border: none;
        height: 1px;
        background-color: #999;
        margin: 2.5rem 0 2rem 0;
    }
}

/* Progressive Desktop Footer Styles for Training Page - 851px to 1049px */
@media (max-width: 1049px) and (min-width: 851px) {
    /* Footer Content - Horizontal Layout (Same as 750-850px) */
    .footer-content {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 2.5rem;
    }
    
    /* Footer Logo Section - Left Side Layout (Larger) */
    .footer-logo-section {
        position: relative;
        padding: 0;
        margin-right: 0;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex: 1;
    }
    
    .footer-logo {
        position: static;
        top: auto;
        left: auto;
        margin: 0 0 1.5rem 0;
        z-index: 10;
    }
    
    .footer-logo-img {
        max-width: 140px;
        height: auto;
        margin: 0;
        filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
    }
    
    .footer-tagline-text {
        position: static;
        top: auto;
        left: auto;
        text-align: left;
        margin: 0;
        padding: 0;
    }
    
    .tagline-main {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }
    
    .tagline-standard {
        font-size: 2.4rem;
        margin-bottom: 2rem;
    }
    
    /* Training Overlay - Right Side Layout (Larger) */
    .training-overlay {
        background: #133E87;
        padding: 1.75rem;
        border-radius: 8px;
        margin: 0;
        box-shadow: 0 4px 15px rgba(19, 62, 135, 0.3);
        position: relative;
        text-align: left;
        max-width: 320px;
        flex-shrink: 0;
    }
    
    .overlay-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .overlay-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .overlay-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .overlay-email-field {
        width: 100%;
        min-width: auto;
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .overlay-enroll-btn {
        width: 100%;
        padding: 0.8rem 1.25rem;
        font-size: 0.95rem;
    }
    
    /* Footer Content Section - Full width below the horizontal layout */
    .footer-content-section {
        color: #333;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
        width: 100%;
        margin-top: 2.5rem;
    }
    
    .footer-subsection {
        margin-bottom: 0;
        text-align: left;
    }
    
    .footer-section h3 {
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
        font-weight: 700;
        color: #333;
    }
    
    .footer-section h4 {
        margin-bottom: 1rem;
        font-size: 1rem;
        font-weight: 600;
        color: #333;
    }
    
    .footer-section ul li {
        margin-bottom: 0.75rem;
    }
    
    .footer-section a {
        color: #555;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.95rem;
    }
    
    .footer-section a:hover {
        color: #E35335;
        font-weight: 600;
    }
    
    /* Contact Details */
    .contact-details p {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .social-icon {
        font-size: 1.2rem;
    }
    
    /* Footer Bottom Content */
    .footer-bottom-content {
        text-align: left;
        color: #333;
        grid-column: 1 / -1;
        margin-top: 2rem;
    }
    
    .footer-bottom-content p {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
    
    .footer-separator {
        border: none;
        height: 1px;
        background-color: #999;
        margin: 2rem 0 1.5rem 0;
    }
}

/* Small Desktop Footer Styles for Training Page - 751px to 850px */
@media (max-width: 850px) and (min-width: 751px) {
    /* Footer Logo Section Small Desktop - Desktop Layout but Smaller */
    .footer-logo-section {
        position: relative;
        padding: 0;
        margin-right: 1rem;
        text-align: left;
    }
    
    .footer-logo {
        position: absolute;
        top: -15px;
        left: -100px;
        z-index: 10;
    }
    
    .footer-logo-img {
        max-width: 130px;
        height: auto;
        margin: 0;
        filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
    }
    
    .footer-tagline-text {
        position: absolute;
        top: 140px;
        left: -100px;
        text-align: left;
    }
    
    .tagline-main {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .tagline-standard {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    /* Training Overlay Small Desktop - Desktop Layout but Smaller */
    .training-overlay {
        background: #133E87;
        padding: 1.25rem;
        border-radius: 8px;
        margin: 5rem 1.25rem 0 0;
        box-shadow: 0 4px 15px rgba(19, 62, 135, 0.3);
        position: relative;
        text-align: left;
    }
    
    .overlay-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .overlay-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .overlay-form {
        display: flex;
        gap: 0.6rem;
        flex-wrap: wrap;
    }
    
    .overlay-email-field {
        flex: 1;
        min-width: 160px;
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .overlay-enroll-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    /* Footer Content Section Small Desktop - Desktop Layout but Smaller */
    .footer-content-section {
        color: #333;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-subsection {
        margin-bottom: 0;
        text-align: left;
    }
    
    .footer-section h3 {
        margin-bottom: 1.25rem;
        font-size: 1rem;
        font-weight: 700;
        color: #333;
    }
    
    .footer-section h4 {
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
        font-weight: 600;
        color: #333;
    }
    
    .footer-section ul li {
        margin-bottom: 0.6rem;
    }
    
    .footer-section a {
        color: #555;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.85rem;
    }
    
    .footer-section a:hover {
        color: #E35335;
        font-weight: 600;
    }
    
    /* Contact Details Small Desktop */
    .contact-details p {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .social-icons {
        gap: 0.8rem;
    }
    
    .social-icon {
        font-size: 1.1rem;
    }
    
    /* Footer Bottom Content Small Desktop */
    .footer-bottom-content {
        text-align: left;
        color: #333;
        grid-column: 1 / -1;
        margin-top: 1.5rem;
    }
    
    .footer-bottom-content p {
        margin-bottom: 0.4rem;
        font-size: 0.8rem;
    }
    
    .footer-separator {
        border: none;
        height: 1px;
        background-color: #999;
        margin: 1.5rem 0 1rem 0;
    }
}

/* Special Layout for 750-850px - Overlay Right, Logo/Text Left */
@media (max-width: 850px) and (min-width: 750px) {
    /* Footer Content - Horizontal Layout */
    .footer-content {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
    }
    
    /* Footer Logo Section - Left Side Layout */
    .footer-logo-section {
        position: relative;
        padding: 0;
        margin-right: 0;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex: 1;
    }
    
    .footer-logo {
        position: static;
        top: auto;
        left: auto;
        margin: 0 0 1rem 0;
        z-index: 10;
    }
    
    .footer-logo-img {
        max-width: 120px;
        height: auto;
        margin: 0;
        filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
    }
    
    .footer-tagline-text {
        position: static;
        top: auto;
        left: auto;
        text-align: left;
        margin: 0;
        padding: 0;
    }
    
    .tagline-main {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .tagline-standard {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    /* Training Overlay - Right Side Layout */
    .training-overlay {
        background: #133E87;
        padding: 1.5rem;
        border-radius: 8px;
        margin: 0;
        box-shadow: 0 4px 15px rgba(19, 62, 135, 0.3);
        position: relative;
        text-align: left;
        max-width: 280px;
        flex-shrink: 0;
    }
    
    .overlay-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .overlay-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .overlay-form {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .overlay-email-field {
        width: 100%;
        min-width: auto;
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .overlay-enroll-btn {
        width: 100%;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Footer Content Section - Full width below the horizontal layout */
    .footer-content-section {
        color: #333;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.5rem;
        width: 100%;
        margin-top: 2rem;
    }
    
    .footer-subsection {
        margin-bottom: 0;
        text-align: left;
    }
    
    .footer-section h3 {
        margin-bottom: 1.25rem;
        font-size: 1rem;
        font-weight: 700;
        color: #333;
    }
    
    .footer-section h4 {
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
        font-weight: 600;
        color: #333;
    }
    
    .footer-section ul li {
        margin-bottom: 0.6rem;
    }
    
    .footer-section a {
        color: #555;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.85rem;
    }
    
    .footer-section a:hover {
        color: #E35335;
        font-weight: 600;
    }
    
    /* Contact Details */
    .contact-details p {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .social-icons {
        gap: 0.8rem;
    }
    
    .social-icon {
        font-size: 1.1rem;
    }
    
    /* Footer Bottom Content */
    .footer-bottom-content {
        text-align: left;
        color: #333;
        grid-column: 1 / -1;
        margin-top: 1.5rem;
    }
    
    .footer-bottom-content p {
        margin-bottom: 0.4rem;
        font-size: 0.8rem;
    }
    
    .footer-separator {
        border: none;
        height: 1px;
        background-color: #999;
        margin: 1.5rem 0 1rem 0;
    }
}

/* Tablet Footer Styles for Training Page - 501px to 750px */
@media (max-width: 750px) and (min-width: 501px) {
    /* Footer Logo Section Tablet Optimization - Larger */
    .footer-logo-section {
        text-align: center;
        padding: 2rem 0;
        margin: 0;
    }
    
    .footer-logo {
        position: static;
        top: auto;
        left: auto;
        margin: 0 auto 2rem auto;
        display: block;
    }
    
    .footer-logo-img {
        max-width: 140px;
        height: auto;
        margin: 0 auto;
        display: block;
    }
    
    .footer-tagline-text {
        position: static;
        top: auto;
        left: auto;
        text-align: center;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .tagline-main {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .tagline-standard {
        font-size: 2.6rem;
        margin-bottom: 2rem;
    }
    
    /* Training Overlay Tablet Optimization - Larger */
    .training-overlay {
        margin: 3rem auto 0 auto;
        padding: 2rem;
        max-width: 80%;
        text-align: center;
    }
    
    .overlay-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .overlay-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .overlay-form {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }
    
    .overlay-email-field {
        flex: 1;
        min-width: 200px;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .overlay-enroll-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        white-space: nowrap;
    }
    
    /* Footer Content Section Tablet - Larger */
    .footer-content-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 2rem;
    }
    
    .footer-subsection {
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section ul li {
        margin-bottom: 1rem;
    }
    
    .footer-section a {
        font-size: 0.95rem;
    }
    
    /* Contact Details Tablet - Larger */
    .contact-details p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .social-icons {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .social-icon {
        font-size: 1.4rem;
    }
    
    /* Footer Bottom Content Tablet - Larger */
    .footer-bottom-content {
        text-align: center;
        padding: 0 2rem;
        grid-column: 1 / -1;
    }
    
    .footer-bottom-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
    
    .footer-separator {
        margin: 2.5rem 0 1.5rem 0;
    }
}

/* Mobile Footer Styles for Training Page - 401px to 500px */
@media (max-width: 500px) and (min-width: 401px) {
    /* Footer Logo Section Mobile Optimization - Larger */
    .footer-logo-section {
        text-align: center;
        padding: 1.5rem 0;
        margin: 0;
    }
    
    .footer-logo {
        position: static;
        top: auto;
        left: auto;
        margin: 0 auto 1.5rem auto;
        display: block;
    }
    
    .footer-logo-img {
        max-width: 120px;
        height: auto;
        margin: 0 auto;
        display: block;
    }
    
    .footer-tagline-text {
        position: static;
        top: auto;
        left: auto;
        text-align: center;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
    
    .tagline-main {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }
    
    .tagline-standard {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    /* Training Overlay Mobile Optimization - Larger */
    .training-overlay {
        margin: 2.5rem auto 0 auto;
        padding: 1.5rem;
        max-width: 85%;
        text-align: center;
    }
    
    .overlay-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .overlay-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .overlay-form {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .overlay-email-field {
        width: 100%;
        min-width: auto;
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .overlay-enroll-btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Footer Content Section Mobile - Larger */
    .footer-content-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .footer-subsection {
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.75rem;
    }
    
    .footer-section a {
        font-size: 0.9rem;
    }
    
    /* Contact Details Mobile - Larger */
    .contact-details p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .social-icons {
        justify-content: center;
        gap: 1.25rem;
    }
    
    .social-icon {
        font-size: 1.3rem;
    }
    
    /* Footer Bottom Content Mobile - Larger */
    .footer-bottom-content {
        text-align: center;
        padding: 0 1.5rem;
    }
    
    .footer-bottom-content p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .footer-separator {
        margin: 2rem 0 1.25rem 0;
    }
}

/* Override Footer Colors for 300-749px Range - Keep Original Colors */
@media (max-width: 749px) {
    .footer-content-section {
        color: #333 !important;
    }
    
    .footer-section h3,
    .footer-section h4 {
        color: #333 !important;
    }
    
    .footer-section a {
        color: #555 !important;
    }
    
    .footer-section a:hover {
        color: #E35335 !important;
    }
    
    .footer-bottom-content {
        color: #333 !important;
    }
    
    .footer-bottom-content p {
        color: #333 !important;
    }
    
    .footer-separator {
        background-color: #999 !important;
    }
    
    /* Fix Contact Info Alignment */
    .footer-subsection {
        text-align: center !important;
    }
    
    .contact-details {
        text-align: center !important;
    }
    
    .contact-details p {
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .social-icons {
        justify-content: center !important;
    }
    
    /* Hide Contact Icons */
    .contact-details i {
        display: none !important;
    }
}

/* Override Footer Bottom Content Colors for 750-768px Range - Keep Dark Gray */
@media (max-width: 768px) and (min-width: 750px) {
    .footer-bottom-content {
        color: #333 !important;
    }
    
    .footer-bottom-content p {
        color: #333 !important;
    }
    
    .image-disclaimer {
        color: #333 !important;
    }
}

/* Mobile Footer Styles for Training Page - 300px to 400px */
@media (max-width: 400px) and (min-width: 300px) {
    /* Footer Logo Section Mobile Optimization */
    .footer-logo-section {
        text-align: center;
        padding: 1rem 0;
        margin: 0;
    }
    
    .footer-logo {
        position: static;
        top: auto;
        left: auto;
        margin: 0 auto 1rem auto;
        display: block;
    }
    
    .footer-logo-img {
        max-width: 100px;
        height: auto;
        margin: 0 auto;
        display: block;
    }
    
    .footer-tagline-text {
        position: static;
        top: auto;
        left: auto;
        text-align: center;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .tagline-main {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .tagline-standard {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    /* Training Overlay Mobile Optimization */
    .training-overlay {
        margin: 2rem auto 0 auto;
        padding: 1rem;
        max-width: 90%;
        text-align: center;
    }
    
    .overlay-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .overlay-description {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .overlay-form {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .overlay-email-field {
        width: 100%;
        min-width: auto;
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .overlay-enroll-btn {
        width: 100%;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Footer Content Section Mobile */
    .footer-content-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .footer-subsection {
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section a {
        font-size: 0.85rem;
    }
    
    /* Contact Details Mobile */
    .contact-details p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .social-icons {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-icon {
        font-size: 1.2rem;
    }
    
    /* Footer Bottom Content Mobile */
    .footer-bottom-content {
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-bottom-content p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    .footer-separator {
        margin: 1.5rem 0 1rem 0;
    }
}

/* Extra Small Mobile Footer Styles - Below 300px */
@media (max-width: 299px) {
    .footer-logo-img {
        max-width: 80px;
    }
    
    .tagline-main {
        font-size: 1rem;
    }
    
    .tagline-standard {
        font-size: 1.5rem;
    }
    
    .training-overlay {
        margin: 1.5rem auto 0 auto;
        padding: 0.75rem;
    }
    
    .overlay-title {
        font-size: 0.9rem;
    }
    
    .overlay-description {
        font-size: 0.75rem;
    }
    
    .overlay-email-field,
    .overlay-enroll-btn {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .footer-content-section {
        padding: 0 0.5rem;
    }
    
    .footer-section h3 {
        font-size: 0.9rem;
    }
    
    .footer-section a {
        font-size: 0.8rem;
    }
    
    .footer-bottom-content {
        padding: 0 0.5rem;
    }
    
    .footer-bottom-content p {
        font-size: 0.75rem;
    }
}


