/* ============================================
   EBM ELECTRICAL INSTALLATION COMPANY LIMITED
   style.css - Premium Complete Design
   Colors: Royal Blue | Orange | Teal
   ============================================ */

/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== ROOT VARIABLES ===== */
:root {
    --royal-blue: #0A1A3A;
    --royal-blue-dark: #050D1F;
    --royal-blue-light: #1A2A5A;
    --orange: #E8751A;
    --orange-dark: #D6650A;
    --orange-light: #F5A060;
    --teal: #008080;
    --teal-dark: #005555;
    --metallic-grey: #A8A9AD;
    --metallic-grey-dark: #7A7B7F;
    --white: #FFFFFF;
    --dark: #1A1A1A;
    --light-grey: #F5F5F5;
    
    --shadow: 0 15px 50px rgba(10,26,58,0.15);
    --shadow-hover: 0 25px 70px rgba(10,26,58,0.2);
    --shadow-orange: 0 10px 40px rgba(232,117,26,0.3);
    --shadow-blue: 0 15px 50px rgba(10,26,58,0.25);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius: 16px;
    --radius-sm: 10px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--royal-blue-dark);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--orange), var(--royal-blue-light));
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--orange);
}

::selection {
    background: var(--orange);
    color: var(--white);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-block;
    padding: 16px 44px;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: var(--shadow-orange);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 45px rgba(232,117,26,0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 44px;
    background: transparent;
    color: var(--royal-blue);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--royal-blue);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-secondary:hover {
    background: var(--royal-blue);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-blue);
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 12px;
    position: relative;
}

.section-header .subtitle::before,
.section-header .subtitle::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--orange);
    vertical-align: middle;
    margin: 0 14px;
    border-radius: 10px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 800;
    color: var(--royal-blue);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-header .divider {
    width: 60px;
    height: 4px;
    background: var(--orange);
    margin: 0 auto 20px;
    border-radius: 10px;
}

.section-header p {
    font-size: 18px;
    color: var(--metallic-grey);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   LOGO
   ============================================ */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    color: var(--royal-blue);
    letter-spacing: 1.5px;
}

.logo-main .orange {
    color: var(--orange);
}

.logo-sub {
    font-size: 11px;
    color: var(--metallic-grey);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--royal-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 400;
    border-bottom: 2px solid var(--orange);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar .highlight {
    color: var(--orange);
    font-weight: 600;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    background: var(--white);
    border-bottom: 3px solid var(--orange);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 5px 30px rgba(10,26,58,0.12);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    padding: 5px 0;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--orange);
    transition: var(--transition);
    border-radius: 10px;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--orange);
}

.nav-menu a.nav-cta {
    padding: 10px 28px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: var(--shadow-orange);
}

.nav-menu a.nav-cta::after {
    display: none;
}

.nav-menu a.nav-cta:hover {
    background: var(--royal-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--royal-blue);
    font-size: 15px;
}

.nav-phone i {
    font-size: 16px;
    width: 38px;
    height: 38px;
    background: rgba(10,26,58,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--royal-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 10px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO / BANNER - Picha 6 (Desktop & Mobile)
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

/* Slide backgrounds - Picha 6 */
.slide:nth-child(1) {
    background-image: url('../images/banner/slide-1.jpg');
}
.slide:nth-child(2) {
    background-image: url('../images/banner/slide-2.jpg');
}
.slide:nth-child(3) {
    background-image: url('../images/banner/slide-3.jpg');
}
.slide:nth-child(4) {
    background-image: url('../images/banner/slide-4.jpg');
}
.slide:nth-child(5) {
    background-image: url('../images/banner/slide-5.jpg');
}
.slide:nth-child(6) {
    background-image: url('../images/banner/slide-6.jpg');
}

/* Overlay - Nyepesi (45%) */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5,13,31,0.45);
    z-index: 1;
}

/* Slide Content - Left Side */
.slide-content {
    position: relative;
    z-index: 2;
    flex: 0 0 55%;
    max-width: 55%;
    padding-right: 40px;
    color: var(--white);
    animation: fadeInLeft 0.8s ease;
}

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

.slide-content .badge {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 6px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 30px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-orange);
}

.slide-content h2 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 3px 15px rgba(0,0,0,0.15);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.slide-content h2 span {
    color: var(--orange);
}

.hero-list {
    list-style: none;
    font-size: 18px;
    margin: 15px 0;
}

.hero-list li {
    margin: 8px 0;
    position: relative;
    padding-left: 30px;
}

.hero-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

.slide-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin: 20px 0 20px;
    color: rgba(255,255,255,0.85);
    font-style: italic;
    letter-spacing: 1.5px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Slide Image - Right Side (Desktop only) */
.slide-image {
    flex: 0 0 40%;
    max-width: 40%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.8s ease;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    z-index: 2;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 20;
}

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

.dot.active {
    background: var(--orange);
    transform: scale(1.3);
    border-color: var(--white);
    box-shadow: 0 0 20px rgba(232,117,26,0.4);
}

.dot:hover {
    background: var(--orange);
}


/* ============================================
   RESPONSIVE - SLIDER (Desktop & Mobile)
   ============================================ */

/* Tablet - picha ya kulia inafichwa */
@media (max-width: 992px) {
    .slide {
        padding: 0 40px;
        justify-content: center;
        text-align: center;
    }

    .slide-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .slide-content h2 {
        font-size: 36px;
    }

    .hero-list li {
        padding-left: 0;
    }

    .hero-list li::before {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .slide-image {
        display: none;
    }
}

/* Mobile - Fixed, inaonekana vizuri */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .slider-container {
        height: 100%;
        width: 100%;
    }

    .slider {
        height: 100%;
        width: 100%;
    }

    .slide {
        padding: 40px 24px;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 100%;
        width: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        left: 0;
    }

    /* Overlay - nyeusi zaidi kwa simu */
    .slide::before {
        background: rgba(5,13,31,0.60);
    }

    .slide-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
        text-align: center;
        animation: fadeInUp 0.8s ease;
        padding: 20px 0;
        margin: 0 auto;
        width: 100%;
    }

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

    .slide-content .badge {
        font-size: 10px;
        padding: 4px 16px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .slide-content h2 {
        font-size: 28px;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .hero-list {
        font-size: 15px;
        margin: 10px 0;
    }

    .hero-list li {
        padding-left: 0;
        margin: 4px 0;
    }

    .hero-list li::before {
        display: none;
    }

    .slide-content h3 {
        font-size: 18px;
        margin: 12px 0 18px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 13px;
        justify-content: center;
    }

    .slide-image {
        display: none;
    }

    .slider-dots {
        bottom: 20px;
        gap: 12px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
    }

    .slide {
        padding: 30px 16px;
    }

    .slide-content {
        padding: 10px 0;
    }

    .slide-content h2 {
        font-size: 24px;
    }

    .hero-list {
        font-size: 14px;
    }

    .slide-content h3 {
        font-size: 16px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 10px 16px;
        font-size: 12px;
    }

    .slider-dots {
        bottom: 15px;
        gap: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */
.services-preview {
    padding: 100px 0;
    background: var(--light-grey);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: var(--radius);
    text-align: center;
    border-bottom: 5px solid var(--orange);
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,26,58,0.02), rgba(232,117,26,0.02));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

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

.service-icon {
    font-size: 28px;
    color: var(--orange);
    width: 70px;
    height: 70px;
    background: rgba(232,117,26,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--orange);
    color: var(--white);
    transform: rotate(8deg) scale(1.05);
}

.service-card h3 {
    color: var(--royal-blue);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--metallic-grey);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-link {
    color: var(--orange);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    color: var(--royal-blue);
    gap: 12px;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    padding: 80px 0;
    background: var(--white);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--dark);
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

.video-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-card .video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(232,117,26,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    transition: var(--transition);
    pointer-events: none;
}

.video-card:hover .video-play {
    background: var(--orange);
    transform: translate(-50%, -50%) scale(1.1);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .subtitle {
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.about-content h2 {
    font-family: var(--font-heading);
    color: var(--royal-blue);
    font-size: 38px;
    font-weight: 800;
    margin: 12px 0 20px;
}

.about-content p {
    color: var(--metallic-grey);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0 30px;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    color: var(--white);
    background: var(--royal-blue);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature h4 {
    color: var(--dark);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.feature p {
    color: var(--metallic-grey);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 0;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.03);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose {
    padding: 100px 0;
    background: var(--light-grey);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.choose-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.choose-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: var(--shadow-hover);
}

.choose-icon {
    font-size: 28px;
    color: var(--royal-blue);
    width: 70px;
    height: 70px;
    background: rgba(10,26,58,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: var(--transition);
}

.choose-card:hover .choose-icon {
    background: var(--royal-blue);
    color: var(--white);
}

.choose-card h4 {
    color: var(--royal-blue);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.choose-card p {
    color: var(--metallic-grey);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(232,117,26,0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.02);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-content h2 span {
    color: var(--orange);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 70px 0;
    background: var(--royal-blue-dark);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
    border-color: var(--orange);
}

.stat-card h4 {
    font-size: 44px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.stat-card p {
    font-size: 16px;
    opacity: 0.85;
    margin-top: 6px;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 140px 0 70px;
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(232,117,26,0.05);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.02);
    border-radius: 50%;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

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

.page-header .divider {
    width: 80px;
    height: 4px;
    background: var(--orange);
    margin: 18px auto;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 20px rgba(232,117,26,0.3);
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ============================================
   SERVICES DETAILED
   ============================================ */
.services-detailed {
    padding: 80px 0;
    background: var(--white);
}

.service-detailed-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--light-grey);
}

.service-detailed-card:last-child {
    border-bottom: none;
}

.service-detailed-card .service-info h3 {
    color: var(--royal-blue);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}

.service-detailed-card .service-info h3 i {
    margin-right: 10px;
}

.service-detailed-card .service-info p {
    color: var(--metallic-grey);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-detailed-card .service-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-detailed-card .service-info ul li {
    color: var(--metallic-grey);
    font-size: 15px;
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
}

.service-detailed-card .service-info ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

.service-detailed-card .service-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-detailed-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
    transition: var(--transition);
}

.service-detailed-card .service-image:hover img {
    transform: scale(1.03);
}

/* ============================================
   PROJECTS / GALLERY
   ============================================ */
.projects-gallery {
    padding: 80px 0;
    background: var(--light-grey);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.project-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px;
    background: linear-gradient(transparent, rgba(10,26,58,0.9));
    color: var(--white);
}

.project-overlay h4 {
    font-size: 19px;
    font-weight: 700;
}

.project-overlay span {
    font-size: 13px;
    opacity: 0.8;
    display: block;
    margin-top: 4px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    color: var(--royal-blue);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--metallic-grey);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background: var(--light-grey);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.contact-detail:hover {
    background: #e8e8e8;
    border-left-color: var(--orange);
    transform: translateX(5px);
}

.contact-detail .detail-icon {
    font-size: 20px;
    width: 45px;
    height: 45px;
    background: rgba(232,117,26,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--orange);
}

.contact-detail .detail-text h4 {
    color: var(--dark);
    font-size: 16px;
    font-weight: 700;
}

.contact-detail .detail-text p {
    color: var(--metallic-grey);
    font-size: 15px;
    margin: 0;
}

.contact-social h4 {
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    color: var(--white);
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}

.contact-form {
    background: var(--light-grey);
    padding: 40px;
    border-radius: var(--radius);
}

.contact-form h3 {
    color: var(--royal-blue);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    display: block;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.3s;
    background: var(--white);
}

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

.contact-form .form-group textarea {
    height: 150px;
    resize: vertical;
}

/* ============================================
   BOOKING FORM
   ============================================ */
.booking-section {
    padding: 80px 0;
    background: var(--white);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.booking-form {
    background: var(--light-grey);
    padding: 40px;
    border-radius: var(--radius);
}

.booking-form h3 {
    color: var(--royal-blue);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form .form-group label {
    display: block;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.booking-form .form-group input,
.booking-form .form-group textarea,
.booking-form .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.3s;
    background: var(--white);
}

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

.booking-form .form-group textarea {
    height: 120px;
    resize: vertical;
}

.booking-info h2 {
    color: var(--royal-blue);
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
}

.booking-info h2 span {
    color: var(--orange);
}

.booking-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.booking-feature-icon {
    background: var(--orange);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.booking-feature h4 {
    color: var(--royal-blue);
    font-size: 18px;
    font-weight: 700;
}

.booking-feature p {
    color: var(--metallic-grey);
    font-size: 14px;
}

.booking-contact-box {
    margin-top: 30px;
    padding: 25px;
    background: var(--royal-blue);
    border-radius: var(--radius);
    color: var(--white);
}

.booking-contact-box p {
    font-size: 14px;
    opacity: 0.8;
}

.booking-contact-box .phone {
    font-size: 20px;
    font-weight: 700;
}

.booking-contact-box .phone i {
    color: var(--orange);
}

.booking-contact-box .whatsapp-link {
    color: var(--orange);
    font-weight: 600;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    padding: 0 0 80px;
    background: var(--white);
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--royal-blue-dark);
    color: var(--white);
    padding: 70px 0 0;
    border-top: 3px solid var(--orange);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 900;
    color: var(--orange);
    letter-spacing: 1.5px;
}

.footer-logo small {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    display: block;
    margin-top: 4px;
}

.footer-about p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.9;
    max-width: 340px;
    margin-top: 16px;
}

.footer h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--orange);
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 14px;
}

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

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    padding: 7px 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--orange);
    padding-left: 10px;
}

.footer-col p {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    padding: 7px 0;
}

.footer-col p i {
    color: var(--orange);
    width: 20px;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--orange);
    color: var(--royal-blue-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-orange);
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.25);
    font-size: 14px;
}

.footer-bottom .highlight {
    color: var(--orange);
    font-weight: 600;
}

/* ============================================
   DEVELOPER LINK - Blinking Animation
   ============================================ */
.developer-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--orange);
    font-weight: 600;
    transition: all 0.3s ease;
}

.developer-link .dev-name {
    display: inline-block;
    animation: blinkGlow 1.5s ease-in-out infinite;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes blinkGlow {
    0% {
        opacity: 0.6;
        text-shadow: 0 0 5px rgba(232,117,26,0.2);
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(232,117,26,0.6), 0 0 40px rgba(232,117,26,0.3);
        transform: scale(1.02);
    }
    100% {
        opacity: 0.6;
        text-shadow: 0 0 5px rgba(232,117,26,0.2);
    }
}

.developer-link:hover .dev-name {
    animation: none;
    color: var(--orange-light);
    text-shadow: 0 0 30px rgba(232,117,26,0.8);
    transform: scale(1.05);
}

.developer-link:hover {
    color: var(--orange-light);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 34px;
    box-shadow: 0 8px 30px rgba(37,211,102,0.35);
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 8px 30px rgba(37,211,102,0.35); }
    50% { box-shadow: 0 8px 50px rgba(37,211,102,0.55); }
    100% { box-shadow: 0 8px 30px rgba(37,211,102,0.35); }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .service-detailed-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .slide {
        padding: 0 40px;
        justify-content: center;
        text-align: center;
    }
    .slide-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
        text-align: center;
    }
    .slide-content h2 {
        font-size: 36px;
    }
    .hero-list li {
        padding-left: 0;
    }
    .hero-list li::before {
        display: none;
    }
    .hero-buttons {
        justify-content: center;
    }
    .slide-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        font-size: 12px;
    }
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 18px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        display: none;
        border-top: 3px solid var(--orange);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-phone {
        display: none;
    }
    .hero {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        width: 100%;
    }
    .slide {
        padding: 40px 24px;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 100%;
        width: 100%;
    }
    .slide::before {
        background: rgba(5,13,31,0.60);
    }
    .slide-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
        text-align: center;
        animation: fadeInUp 0.8s ease;
        padding: 20px 0;
    }
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .slide-content .badge {
        font-size: 10px;
        padding: 4px 16px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    .slide-content h2 {
        font-size: 28px;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    .hero-list {
        font-size: 15px;
        margin: 10px 0;
    }
    .hero-list li {
        padding-left: 0;
        margin: 4px 0;
    }
    .hero-list li::before {
        display: none;
    }
    .slide-content h3 {
        font-size: 18px;
        margin: 12px 0 18px;
    }
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 13px;
    }
    .slide-image {
        display: none;
    }
    .slider-dots {
        bottom: 20px;
        gap: 12px;
    }
    .dot {
        width: 12px;
        height: 12px;
    }
    .section-header h2 {
        font-size: 30px;
    }
    .service-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .video-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .about-content h2 {
        font-size: 28px;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .choose-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stat-card h4 {
        font-size: 34px;
    }
    .cta-content h2 {
        font-size: 28px;
    }
    .projects-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }
    .footer-about p {
        max-width: 100%;
        margin: 16px auto 0;
    }
    .footer-logo {
        align-items: center;
    }
    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-col p {
        justify-content: center;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .section-padding {
        padding: 60px 0;
    }
    .contact-form,
    .booking-form {
        padding: 25px;
    }
    .map-container iframe {
        height: 250px;
    }
    .page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
    }
    .slide {
        padding: 30px 16px;
    }
    .slide-content {
        padding: 10px 0;
    }
    .slide-content h2 {
        font-size: 24px;
    }
    .hero-list {
        font-size: 14px;
    }
    .slide-content h3 {
        font-size: 16px;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 10px 16px;
        font-size: 12px;
    }
    .slider-dots {
        bottom: 15px;
        gap: 10px;
    }
    .dot {
        width: 10px;
        height: 10px;
    }
    .stat-card h4 {
        font-size: 28px;
    }
    .stat-card p {
        font-size: 14px;
    }
    .cta-content h2 {
        font-size: 24px;
    }
    .cta-content p {
        font-size: 15px;
    }
    .page-header h1 {
        font-size: 26px;
    }
    .page-header p {
        font-size: 15px;
    }
    .section-header h2 {
        font-size: 26px;
    }
    .service-card {
        padding: 30px 20px;
    }
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    .choose-card {
        padding: 30px 20px;
    }
    .logo-img {
        height: 40px;
    }
    .logo-main {
        font-size: 20px;
    }
    .logo-sub {
        font-size: 9px;
    }
    .nav-menu a {
        font-size: 13px;
    }
    .project-card img {
        height: 220px;
    }
    .about-image img {
        min-height: 250px;
    }
    .contact-detail {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    .social-icon {
        padding: 8px 18px;
        font-size: 12px;
    }
    .video-card .video-play {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}