:root {
    --primary-color: #104D29;
    /* Deep Green */
    --primary-dark: #0a331b;
    /* Darker Green for contrasts */
    --accent-color: #D6AC4E;
    /* Gold */
    --accent-glow: rgba(214, 172, 78, 0.5);
    --text-dark: #333333;
    --text-light: #f2f2f2;
    --white: #ffffff;
    --bg-light: #F2F2F2;
    /* User requested Background */
    --glass: rgba(16, 77, 41, 0.85);
    /* Green Glass */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html,
body {
    width: 100%;
    overflow-x: hidden !important;
    /* Critical fix for mobile white spaces */
    position: relative;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

h1,
h2 {
    font-weight: 900;
}

a {
    text-decoration: none;
    transition: var(--transition);
    color: var(--primary-color);
}

a:hover {
    color: var(--accent-color);
}

/* Navbar */
.navbar {
    background-color: var(--primary-color);
    padding: 0;
    /* Reduced to fit larger logo */
    min-height: 80px;
    /* Ensure bar has substance */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    color: var(--accent-color) !important;
    font-weight: 800;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

/* DESKTOP LOGO */
.navbar-brand img {
    height: 135px;
    /* Increased from 90px */
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);

    /* NEW WHITE SHADOW: Double shadow for extra visibility and glow */
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));

    /* Negative margins allow the logo to be bigger than the navbar */
    margin-top: -30px;
    margin-bottom: -30px;

    position: relative;
    z-index: 100;
}

/* --- MOBILE SPECIFIC UPDATES --- */
@media (max-width: 991px) {
    .navbar {
        min-height: 70px;
        padding: 5px 0;
    }

    /* Make logo much bigger on phone without pushing navbar height */
    .navbar-brand img {
        height: 120px;
        /* Increased from 100px */

        /* Adjust negative margins for mobile alignment */
        margin-top: -25px;
        margin-bottom: -25px;

        /* Ensure the white shadow persists on mobile */
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
    }

    /* Fix Layout and Centering for Mobile Menu */
    .navbar-collapse {
        background-color: var(--primary-color);
        padding-bottom: 20px;
        text-align: center;
        /* Center text */
    }

    .navbar-nav {
        align-items: center !important;
        /* Force flex items to center */
        width: 100%;
    }

    /* Reset desktop margins that cause off-center alignment */
    .nav-link {
        margin-left: 0 !important;
        margin-bottom: 15px;
        font-size: 1.2rem;
        display: inline-block;
    }

    /* Fix Button Alignment */
    .nav-contact-box {
        margin-right: 0 !important;
        margin-left: 0 !important;
        display: inline-block;
        margin-top: 10px;
    }

    /* Fix WhatsApp Icon Alignment */
    .nav-whatsapp-icon {
        font-size: 2.5rem;
        /* Larger touch target */
        margin-top: 0;
        margin-bottom: 5px;
    }

    /* Navbar Toggler Styling */
    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.2) !important;
        padding: 0.5rem;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
}

/* ------------------------------- */

/* Desktop Nav Link Styles */
@media (min-width: 992px) {
    .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        margin-left: 20px;
        font-weight: 500;
        font-size: 1.1rem;
        position: relative;
    }
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    right: 0;
    background-color: var(--accent-color);
    transition: width 0.3s;
    box-shadow: 0 0 10px var(--accent-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-contact-box {
    background-color: var(--accent-color);
    color: var(--primary-color) !important;
    padding: 10px 25px !important;
    border-radius: 5px;
    font-weight: 700 !important;
    /* Margins handled in media queries now */
    box-shadow: 0 4px 15px rgba(214, 172, 78, 0.3);
}

/* Default desktop margin for contact box */
@media (min-width: 992px) {
    .nav-contact-box {
        margin-left: 0 !important;
        margin-right: 20px;
    }
}

.nav-contact-box:hover {
    background-color: var(--white);
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 172, 78, 0.5);
}

.nav-contact-box::after {
    display: none !important;
}

/* WhatsApp Icon Styling */
.nav-whatsapp-icon {
    font-size: 2rem;
    color: #25D366 !important;
    /* WhatsApp Green */
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
    /* Alignment handled in media queries */
}

.nav-whatsapp-icon:hover {
    transform: scale(1.2);
    color: #fff !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    overflow: hidden;
    padding-top: 76px;
    /* Navbar height */
    color: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    margin-bottom: 0;
    transition: clip-path 0.5s ease-out;
    width: 100%;
}

#tsparticles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 15px;
    /* Prevent text touching edges on mobile */
}

.hero-title {
    font-size: 4.5rem;
    background: linear-gradient(to right, #fff, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(214, 172, 78, 0.3));
}

.hero-text {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 750px;
    margin: 0 auto 50px;
    font-weight: 300;
}

/* Buttons */
.btn-primary-custom {
    background: linear-gradient(45deg, var(--accent-color), #f0c14b);
    color: var(--primary-dark);
    border: none;
    padding: 15px 45px;
    font-weight: 800;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(214, 172, 78, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(214, 172, 78, 0.5);
    color: var(--primary-dark);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 13px 43px;
    /* Compensate for border */
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Section Styling */
.section-padding {
    padding: 100px 0;
    position: relative;
    /* Ensure it stays in flow */
}

.bg-light {
    background-color: #ffffff !important;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    /* Responsive font size */
    text-transform: uppercase;
    width: 100%;
    /* Fix centering */
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: var(--accent-color);
    margin: 15px auto 0;
    border-radius: 10px;
}

/* Cards */
.custom-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition);
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.custom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-color);
    transition: var(--transition);
    transform: scaleX(0);
    transform-origin: left;
}

.custom-card:hover::before {
    transform: scaleX(1);
}

.custom-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(16, 77, 41, 0.15);
}

.card-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: var(--transition);
}

.custom-card:hover .card-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

.custom-card h4 {
    color: var(--primary-color);
    font-weight: 800;
}

/* Brands Area */
.brand-box {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.brand-box:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(214, 172, 78, 0.2);
}

.brand-box h5 {
    margin: 0;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    position: relative;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    margin-top: -50px;
    padding-top: 100px;
}

footer h5 {
    color: var(--accent-color);
    margin-bottom: 30px;
    font-size: 1.4rem;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 12px;
}

footer a:hover {
    color: var(--accent-color);
    padding-right: 10px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.95rem;
}

/* Form Controls */
.form-control {
    border-radius: 10px;
    padding: 12px 20px;
    border: 2px solid #e1e1e1;
    background-color: var(--white);
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(214, 172, 78, 0.25);
}

/* =========================================
   New "Shock" & Content Styles (Fixed)
   ========================================= */

/* Fixed Full Width Utilities - Removed negative margin hack that breaks mobile */
.w-100-shock {
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
    margin: 0;
}

/* Enhanced Hero */
.hero-title-shock {
    font-size: clamp(2.5rem, 8vw, 6rem);
    /* Better mobile scaling */
    font-weight: 900;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: -2px;
    background: linear-gradient(to right, #ffffff 20%, var(--accent-color) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 25px rgba(214, 172, 78, 0.4));
    margin-bottom: 20px;
    padding-bottom: 10px;
    word-wrap: break-word;
    /* Prevent overflow */
}

.hero-subtitle-shock {
    font-size: clamp(1rem, 4vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    border-right: 5px solid var(--accent-color);
    padding-right: 20px;
    display: inline-block;
}

/* Style for the new English Subtitle */
.hero-subtitle-en {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: -20px;
    /* Pull it closer to the Arabic text */
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 1px;
    direction: ltr;
    /* Ensure English direction */
}

/* Featured Projects */
.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, var(--primary-dark), transparent);
    padding: 30px;
    transform: translateY(20px);
    opacity: 0.9;
    transition: var(--transition);
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(16, 77, 41, 0.3);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-title {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.project-tag {
    background: var(--accent-color);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Why Choose Us */
.feature-box-shock {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    background: var(--white);
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-box-shock:hover {
    background: var(--primary-dark);
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.feature-box-shock:hover h4,
.feature-box-shock:hover p {
    color: var(--white);
}

.feature-icon-shock {
    font-size: 4rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(214, 172, 78, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 10rem;
    color: rgba(214, 172, 78, 0.1);
    font-family: serif;
}

.client-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid var(--accent-color);
    object-fit: cover;
}

/* CTA */
.cta-section {
    background: var(--primary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
}

/* Stats Section */
.stats-section {
    margin: 80px 0;
    padding: 0 15px;
    /* Add padding to prevent side stick on mobile */
}

.stats-bar-inner {
    background-color: var(--primary-color);
    padding: 40px 20px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(16, 77, 41, 0.2);
}

.stats-bar-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre-v2.png');
    opacity: 0.05;
    z-index: -1;
}

.stat-item {
    text-align: center;
    padding: 10px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 10px;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating Candy Background */
.floating-candy-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-candy {
    position: absolute;
    opacity: 0.1;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
    animation: float-around linear infinite;
}

@keyframes float-around {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(5vw, -5vh) rotate(120deg);
    }

    66% {
        transform: translate(-5vw, 5vh) rotate(240deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* About Page Specific Styles */
.about-intro-section {
    padding: 80px 0;
    background: var(--white);
}

.about-intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto;
}

/* Timeline Styles */
/* Timeline Styles - Native RTL Support */
.timeline-section {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

.timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
}

/* Center Line */
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    z-index: 1;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
    z-index: 2;
}

/* RTL Logic: align-self follows page direction */
/* align-self: flex-start will be ON THE RIGHT in RTL */
.timeline-left {
    align-self: flex-start;
}

/* align-self: flex-end will be ON THE LEFT in RTL */
.timeline-right {
    align-self: flex-end;
}

/* Dot positioning inside the item, relative to the center line */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--white);
    border: 4px solid var(--accent-color);
    top: 30px;
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 10px var(--accent-glow);
}

/* Dot for items on the right side (flex-start) */
.timeline-left::after {
    left: -10px;
    /* Moves it exactly to the center line */
}

/* Dot for items on the left side (flex-end) */
.timeline-right::after {
    right: -10px;
    /* Moves it exactly to the center line */
}

.timeline-content {
    padding: 25px 30px;
    background-color: var(--white);
    position: relative;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-top: 4px solid var(--accent-color);
    width: 100%;
    box-sizing: border-box;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(16, 77, 41, 0.1);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: 800;
}

.timeline-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Mobile Layout for Timeline */
@media (max-width: 768px) {
    .timeline::after {
        left: auto;
        right: 20px;
        /* Move line to the right side on mobile RTL */
        transform: none;
    }

    .timeline-item {
        width: 100%;
        align-self: stretch !important;
        padding: 10px 45px 10px 15px;
        /* Adjust padding for side line */
        text-align: right;
    }

    .timeline-item::after {
        right: 11px !important;
        /* Align dot with the mobile side line */
        left: auto !important;
    }

    .timeline-content {
        text-align: right;
    }
}

/* Premium Component Styles restored */
.premium-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(16, 77, 41, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(16, 77, 41, 0.12);
    border-color: var(--accent-color);
}

.premium-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(16, 77, 41, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: var(--transition);
}

.premium-card:hover .premium-card-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(360deg);
}

.premium-card h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.premium-card p {
    margin: 0;
    color: #666;
    font-size: 1rem;
}

/* Offerings List Style */
.offering-item {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: var(--transition);
    border-right: 4px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.offering-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 25px rgba(16, 77, 41, 0.1);
}

.offering-icon {
    margin-left: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Vision & Mission Special Section */
.vision-mission-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.vision-mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    opacity: 0.1;
    border-radius: 0 0 0 100%;
}

.vision-mission-box h3 {
    color: var(--accent-color);
    font-size: 2.2rem;
}

@media (max-width: 768px) {
    .floating-candy {
        opacity: 0.05;
    }

    .hero-section {
        padding-top: 100px;
        min-height: 80vh;
    }

    .hero-title-shock {
        font-size: clamp(2.2rem, 12vw, 3.5rem);
        line-height: 1.3;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        max-width: 300px;
        margin: 10px auto;
        /* Add margin for stacking */
    }
}