/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
    --primary: #FDE014;
    --primary-dark: #E5C900;
    --primary-light: #FFEB61;

    --bg-dark: #f8f9fa;
    --bg-darker: #ffffff;
    --bg-card: #ffffff;

    --text-light: #212529;
    --text-muted: #6c757d;

    --transition: all 0.3s ease;
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-primary {
    color: var(--primary);
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   TYPOGRAPHY & HEADINGS
   ========================================= */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin-bottom: 2rem;
    border-radius: 2px;
}

.section {
    padding: 6rem 0;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-darker);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(253, 224, 20, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--text-light);
    color: var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--bg-darker);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    padding: 1rem 0;
    transition: padding 0.3s ease-in-out;
}

.header.scrolled {
    padding: 0.5rem 0;
    background-color: transparent;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
    border: 1px solid transparent;
    border-radius: 20px;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}

.header.scrolled .nav-container {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    border-radius: 5px;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease;
    object-fit: contain;
}

.logo-img:hover {
    transform: scale(1.05);
}

.header.scrolled .logo-img {
    height: 55px;
}

/* Logo Switching Logic */
.logo-dark {
    display: none;
}

.header.scrolled .logo-light {
    display: none;
}

.header.scrolled .logo-dark {
    display: block;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.nav-link:hover {
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 50%;
    transform: translateX(50%);
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.store-link {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.8rem !important;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease !important;
    backdrop-filter: blur(5px);
}

.store-link:hover {
    background-color: var(--primary) !important;
    color: #111 !important;
    border-color: var(--primary) !important;
    box-shadow: 0 5px 15px rgba(253, 224, 20, 0.4);
    transform: translateY(-3px);
}

.header.scrolled .store-link {
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.1);
}

.header:not(.scrolled) .nav-link {
    color: #ffffff;
}

.header:not(.scrolled) .store-link {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.store-link::after {
    display: none;
}

.store-link:hover {
    background-color: var(--primary);
    color: var(--bg-darker) !important;
    border-color: var(--primary);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-light);
    background: none;
    border: none;
    cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background-image: url('media/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0.9) 0%, rgba(15, 15, 15, 0.5) 50%, rgba(15, 15, 15, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #ffffff;
    animation: fadeUp 1s ease;
}

.neon-text {
    color: var(--primary);
    text-shadow:
        0 0 5px rgba(253, 224, 20, 0.4),
        0 0 15px rgba(253, 224, 20, 0.6),
        0 0 30px rgba(253, 224, 20, 0.8),
        0 0 50px var(--primary);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    animation: fadeUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    animation: fadeUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border-radius: 30px;
    padding: 0.8rem 1.8rem;
    font-weight: 700;
    transition: var(--transition);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    color: #ffffff;
}

/* Floating Product Cards */
.floating-cards-container {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 2;
    animation: fadeUp 1s ease 0.6s;
    animation-fill-mode: both;
}

.floating-card {
    width: 140px;
    height: 140px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.4s ease;
    background-color: #111;
}

.floating-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #111;
}

.floating-card.top-card {
    transform: translateX(-15px);
}

.floating-card.bottom-card {
    transform: translateX(15px);
}

.floating-card:hover {
    transform: translateY(-10px) translateX(0);
    border-color: var(--primary);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* =========================================
   ABOUT SECTION
   ========================================= */
.about {
    padding: 0;
    background-color: #f8f9fa;
    overflow: hidden;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    width: 400%;
    height: 250%;
    background: radial-gradient(ellipse at center, rgba(253, 224, 20, 0.15) 0%, transparent 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    animation: pulseLight 6s infinite alternate ease-in-out;
}

.about-split {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
    position: relative;
    z-index: 1;
}

.about-content-side {
    flex: 1;
    min-width: 300px;
    padding: 6rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-text-content {
    max-width: 650px;
    width: 100%;
}

.about-image-side {
    flex: 1;
    min-width: 300px;
    background-image: url('media/about.png');
    background-size: cover;
    background-position: center;
    min-height: 400px;
    box-shadow: inset 15px 0 30px rgba(0, 0, 0, 0.05);
}

.about-desc {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #444;
}

.about-desc strong {
    color: #111;
    font-size: 1.3rem;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.shadow-card {
    background-color: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(253, 224, 20, 0.15);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    text-align: center;
    border: 1px solid rgba(253, 224, 20, 0.2);
    position: relative;
    overflow: hidden;
}

.shadow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(253, 224, 20, 0.2), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.shadow-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(253, 224, 20, 0.35);
    border-color: rgba(253, 224, 20, 0.6);
}

.shadow-card:hover::before {
    left: 150%;
}

.small-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: #111;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(253, 224, 20, 0.4);
    transition: transform 0.3s ease;
}

.shadow-card:hover .small-icon {
    transform: scale(1.15) rotate(10deg);
}

.shadow-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.shadow-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services {
    background-color: #fdfdfd;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(253, 224, 20, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.services-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 4rem;
    z-index: 1;
}

.timeline-line {
    position: absolute;
    top: 80px;
    left: 5%;
    right: 5%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary) 20%, var(--primary) 80%, transparent);
    box-shadow: 0 0 15px rgba(253, 224, 20, 0.6);
    z-index: 0;
}

.service-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 1.5rem;
}

.service-icon-top {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(253, 224, 20, 0.6);
    height: 60px;
    display: flex;
    align-items: flex-end;
    transition: transform 0.3s ease;
}

.service-dot {
    width: 26px;
    height: 26px;
    background-color: #fff;
    border: 4px solid #ebd076;
    border-radius: 50%;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 15px rgba(253, 224, 20, 0.8), inset 0 0 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glowing-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(253, 224, 20, 0.15);
    position: relative;
    transition: all 0.4s ease;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.glowing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(253, 224, 20, 0.15);
    border-color: var(--primary);
}

.service-item:hover .service-icon-top {
    transform: scale(1.1) translateY(-5px);
}

.service-item:hover .service-dot {
    transform: scale(1.2);
    box-shadow: 0 0 25px rgba(253, 224, 20, 1), inset 0 0 5px rgba(0, 0, 0, 0.1);
}

.glowing-card h3 {
    color: #111;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.glowing-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =========================================
   WHY US SECTION
   ========================================= */
.why-us {
    background-color: #0a0b0d;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(253, 224, 20, 0.1);
    border-bottom: 1px solid rgba(253, 224, 20, 0.1);
}

.why-us .section-title {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(253, 224, 20, 0.3);
}

.why-us .section-subtitle {
    color: #cccccc !important;
}

.why-us .section-subtitle strong {
    color: var(--primary);
}

.why-us::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    width: 90vw;
    height: 90vw;
    background: radial-gradient(ellipse at center, rgba(253, 224, 20, 0.12) 0%, transparent 65%);
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
    animation: pulseLight 5s infinite alternate ease-in-out;
}

@keyframes pulseLight {
    0% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(253, 224, 20, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 40px rgba(253, 224, 20, 0.15);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
    text-shadow: 0 0 20px rgba(253, 224, 20, 0.6);
    display: inline-block;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) translateY(-5px);
}

.feature-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-weight: 700;
}

.feature-item p {
    color: #aaaaaa;
    font-size: 1rem;
    line-height: 1.7;
}

/* =========================================
   PROJECTS SECTION
   ========================================= */
.projects {
    background-color: var(--bg-dark);
}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.project-img {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.project-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transition: var(--transition);
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-card:hover .project-overlay {
    bottom: 0;
}

.project-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
    color: #ffffff;
}

.project-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.project-role {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: var(--primary);
    color: var(--bg-darker);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
}

/* =========================================
   CTA SLIDER SECTION
   ========================================= */
.cta-slider-section {
    position: relative;
    background-color: #0a0b0d;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-slider-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(ellipse at center, rgba(253, 224, 20, 0.15) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
    animation: pulseLightAlt 6s infinite alternate ease-in-out;
}

.cta-slider-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(ellipse at center, rgba(253, 224, 20, 0.1) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
    animation: pulseLightAlt 8s infinite alternate-reverse ease-in-out;
}

@keyframes pulseLightAlt {
    0% {
        opacity: 0.5;
        transform: scale(0.9) translate(0, 0);
    }

    100% {
        opacity: 1;
        transform: scale(1.15) translate(30px, -30px);
    }
}

.cta-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.cta-text-side {
    flex: 1;
    color: #fff;
    text-align: right;
}

.cta-text-side h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.3;
}

.cta-text-side p {
    font-size: 1.15rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-btn {
    box-shadow: 0 10px 20px rgba(253, 224, 20, 0.3);
    font-size: 1.15rem;
    padding: 1rem 2.5rem;
}

.cta-btn:hover {
    box-shadow: 0 15px 30px rgba(253, 224, 20, 0.5);
    transform: translateY(-5px) !important;
}

.cta-slider-side {
    flex: 1.2;
    position: relative;
}

/* Premium Card Container for Banners */
.slider-container {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 4s ease-in-out;
    transform: scale(1.02);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slider-controls {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary);
    width: 25px;
    border-radius: 5px;
}

.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards ease-out;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

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

@media (max-width: 992px) {
    .cta-layout {
        flex-direction: column-reverse;
        text-align: center;
        gap: 3rem;
    }

    .cta-text-side {
        text-align: center;
    }
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: #ffffff;
    color: #333333;
    padding-top: 5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50vw;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 70px;
    margin-bottom: 1.5rem;
}

.about-col p {
    color: #555555;
    margin-bottom: 2rem;
    max-width: 400px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #333333;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid #eeeeee;
}

.social-links a:hover {
    background-color: var(--primary);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(253, 224, 20, 0.3);
    border-color: var(--primary);
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #111111;
    position: relative;
    padding-bottom: 0.5rem;
    display: inline-block;
    font-weight: 800;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.links-col ul {
    list-style: none;
    padding: 0;
}

.links-col ul li {
    margin-bottom: 1rem;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    color: #555555;
}

.links-col ul li a,
.contact-info li a {
    color: #555555;
    transition: var(--transition);
}

.links-col ul li a:hover,
.contact-info li a:hover {
    color: var(--primary);
    padding-right: 5px;
}

.contact-info li i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 5px;
}

.footer-bottom {
    background-color: #f8f9fa;
    padding: 1.5rem 0;
    border-top: 1px solid #eeeeee;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #666666;
    font-size: 0.95rem;
    margin: 0;
}



/* =========================================
   FLOATING WHATSAPP
   ========================================= */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6), 0 0 40px rgba(37, 211, 102, 0.3);
    z-index: 100;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.8), 0 0 50px rgba(37, 211, 102, 0.5);
}

/* =========================================
   MODAL & LEARN MORE
   ========================================= */
.btn-learn-more {
    margin-top: auto;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--primary);
    color: #111;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-learn-more:hover::before {
    width: 100%;
}

.btn-learn-more:hover {
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(253, 224, 20, 0.3);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalFadeIn 0.4s ease;
    overflow: hidden;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

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

.close-modal {
    color: #fff;
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover,
.close-modal:focus {
    background: rgba(0, 0, 0, 0.8);
    text-decoration: none;
}

.modal-body {
    display: flex;
    flex-direction: column;
}

.modal-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.modal-text {
    padding: 2rem;
}

.modal-text h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.modal-text p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

@media (min-width: 768px) {
    .modal-body {
        flex-direction: row;
    }

    .modal-img {
        width: 40%;
        height: auto;
    }

    .modal-text {
        width: 60%;
    }
}

/* =========================================
   PREMIUM RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

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

    .section-title {
        font-size: 2.2rem;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .cta-layout {
        flex-direction: column-reverse;
        text-align: center;
        gap: 3rem;
    }

    .cta-text-side {
        text-align: center;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {

    /* Header & Navigation */
    .header {
        padding: 0.5rem 0;
    }

    .nav-container {
        padding: 0.5rem 1rem;
    }

    .logo-img,
    .header.scrolled .logo-img {
        height: 50px;
    }

    .nav-toggle {
        display: block;
        background: transparent;
        border: none;
        color: #fff;
        font-size: 1.8rem;
        cursor: pointer;
        z-index: 1001;
    }

    .header.scrolled .nav-toggle,
    .header.logo-black .nav-toggle {
        color: #111;
    }

    .header:has(.nav-menu.active) .nav-toggle {
        color: #ffffff !important;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: rgba(10, 11, 13, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        width: 100%;
    }

    .nav-menu .nav-link {
        color: #ffffff !important;
        font-size: 1.3rem;
        font-weight: 700;
    }

    .nav-menu .nav-link:hover {
        color: var(--primary) !important;
    }

    .nav-menu .store-link {
        margin-top: 1rem;
        width: auto;
        padding: 0.8rem 2rem !important;
        text-align: center;
        background-color: var(--primary) !important;
        color: #111 !important;
        border: none !important;
        border-radius: 30px !important;
        font-size: 1.1rem !important;
        font-weight: 700;
        white-space: nowrap;
        box-shadow: 0 5px 15px rgba(253, 224, 20, 0.3);
    }

    .nav-menu .store-link:hover {
        background-color: #ffffff !important;
        color: #111 !important;
    }

    /* Hero Section */
    .hero {
        min-height: 80vh;
    }

    .hero-content {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .hero-content h1 {
        font-size: 2.3rem;
        line-height: 1.4;
    }

    .hero-content p {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    /* Sections */
    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Why Us Section Lighting - Mobile */
    .why-us::before {
        content: '';
        position: absolute;
        width: 1500px;
        height: 1500px;
        background: radial-gradient(ellipse at center, rgba(253, 224, 20, 0.08) 0%, transparent 60%);
        top: -10%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 0;
        pointer-events: none;
        animation: pulseLight 5s infinite alternate ease-in-out;
    }

    .why-us::after {
        content: '';
        position: absolute;
        bottom: -10%;
        left: 50%;
        width: 1500px;
        height: 1500px;
        background: radial-gradient(ellipse at center, rgba(253, 224, 20, 0.08) 0%, transparent 60%);
        bottom: -10%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 0;
        pointer-events: none;
        animation: pulseLight 5s infinite alternate ease-in-out reverse;
    }

    .features-grid::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 1500px;
        height: 1500px;
        background: radial-gradient(ellipse at center, rgba(253, 224, 20, 0.08) 0%, transparent 60%);
        transform: translate(-50%, -50%);
        z-index: 0;
        pointer-events: none;
        animation: pulseLight 6s infinite alternate ease-in-out;
    }

    /* Services & Projects */
    .services-timeline {
        flex-direction: column;
        gap: 2.5rem;
        margin-top: 2rem;
    }

    .timeline-line {
        display: none;
    }

    .service-item {
        padding: 0;
        width: 100%;
        margin-bottom: 2rem;
    }

    .service-icon-top {
        margin-bottom: 15px;
        height: auto;
    }

    .service-dot {
        display: block;
        margin-bottom: -13px;
        z-index: 10;
        position: relative;
    }

    .services-grid,
    .projects-gallery,
    .features-grid,
    .about-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* CTA Section */
    .cta-slider-section::before {
        width: 200%;
        height: 120%;
        background: radial-gradient(ellipse at center, rgba(253, 224, 20, 0.12) 0%, transparent 75%);
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .cta-slider-section::after {
        width: 200%;
        height: 120%;
        background: radial-gradient(ellipse at center, rgba(253, 224, 20, 0.12) 0%, transparent 75%);
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .cta-text-side h2 {
        font-size: 2rem;
    }

    .cta-text-side p {
        font-size: 1rem;
    }

    .slider-container {
        height: 250px;
        border-radius: 15px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 1.5rem auto;
    }

    .about-col p {
        margin: 0 auto 2rem auto;
    }

    .social-links,
    .contact-info li,
    .links-col ul li a {
        justify-content: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom-content {
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
    }

    /* Modal */
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .modal-img {
        height: 200px;
    }

    .modal-text {
        padding: 1.5rem;
    }

    .modal-text h3 {
        font-size: 1.5rem;
    }

    /* WhatsApp Floating Button */
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 20px;
        left: 20px;
    }
}

/* =========================================
   EXTRA SMALL SCREENS (Mobile Phones < 480px)
   ========================================= */
@media (max-width: 480px) {
    .footer-bottom-content {
        gap: 1rem;
    }
}