/* ========================================
   Noor Al Safa - Premium Design System
   Design by: Modern Electrical Contractor
   ======================================== */

/* Import AOS Animation Library */
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

/* ========================================
   CSS Variables - Design Language
   ======================================== */
:root {
    /* Color Palette - Brown & Elegant */
    --primary-brown: #8B4513;
    --secondary-brown: #A0522D;
    --elegant-white: #FFFFFF;
    --cream-white: #FAF9F7;
    --sophisticated-black: #1A1A1A;
    --charcoal-black: #2D2D2D;
    
    /* Gradients */
    --gradient-brown: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.25);
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   Global Resets & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Text Gradient Animation */
.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
}

.text-gradient-animated {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

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

/* ========================================
   Hero Section - Premium Animated
   ======================================== */
.hero-section {
    background: var(--gradient-dark);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Floating Particles Background */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    animation: float 8s infinite;
}

.hero-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particles::after {
    top: 60%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(100px, -100px); }
}

/* Glowing Orbs */
.hero-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: orbFloat 10s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #A0522D 0%, transparent 70%);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #D4AF37 0%, transparent 70%);
    top: 50%;
    right: -5%;
    animation-delay: 3s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #8B4513 0%, transparent 70%);
    bottom: 10%;
    left: 30%;
    animation-delay: 6s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

.addc-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.6) 0%, rgba(160, 82, 45, 0.5) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    color: rgba(255, 215, 0, 0.95);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--elegant-white);
    margin-bottom: 1rem;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: rgba(42, 42, 42, 0.6);
    border: 1.5px solid rgba(139, 69, 19, 0.5);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-badge i {
    color: #D4AF37;
    font-size: 1rem;
}

.hero-badge:hover {
    border-color: rgba(139, 69, 19, 0.8);
    background: rgba(42, 42, 42, 0.8);
    transform: translateY(-2px);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.btn-primary-custom {
    padding: 14px 36px;
    background: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
    border: none;
    border-radius: 50px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-custom:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(139, 69, 19, 0.5);
    color: var(--elegant-white);
}

.btn-outline-custom {
    padding: 14px 36px;
    background: rgba(42, 42, 42, 0.5);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background: var(--gradient-brown);
    border-color: transparent;
    transform: translateY(-3px);
    color: var(--elegant-white);
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    background: var(--secondary-brown);
    border-radius: 3px;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Hero Worker Carousel */
.hero-worker-carousel-wrapper {
    position: absolute;
    right: 2%;
    top: 30%;
    transform: translateY(-50%);
    z-index: 3;
}

.hero-worker-carousel {
    position: relative;
    width: 245px;
    height: 360px;
}

.worker-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: 20px;
    overflow: hidden;
}

.worker-image-container.active {
    opacity: 1;
    z-index: 2;
}

.worker-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.worker-electric-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid transparent;
    border-radius: 20px;
    background: linear-gradient(45deg, #FFD700, #A0522D, #8B4513, #FFD700);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 3px;
    animation: electricBorder 3s linear infinite;
}

@keyframes electricBorder {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

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

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(160, 82, 45, 0.1);
    color: var(--primary-brown);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

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

.about-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.addc-badge-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 20px 30px;
    background: var(--elegant-white);
    border-left: 4px solid var(--primary-brown);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.addc-badge-box:hover {
    transform: translateX(10px);
}

.addc-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--elegant-white);
    font-size: 1.5rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background: var(--elegant-white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-brown);
    opacity: 0.05;
    transition: left 0.5s ease;
}

.stat-box:hover::before {
    left: 100%;
}

.stat-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--elegant-white);
    font-size: 1.8rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 10px 0;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Workers */
.about-workers {
    margin-top: 80px;
}

.about-worker-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.about-worker-card:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: var(--shadow-xl);
}

.about-worker-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.worker-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-brown);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition-normal);
}

.about-worker-card:hover .worker-overlay {
    opacity: 0.9;
}

.worker-overlay i {
    font-size: 4rem;
    color: var(--elegant-white);
    animation: zoomIn 0.5s ease;
}

@keyframes zoomIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

/* ========================================
   Services Section - 3D Cards
   ======================================== */
.services-section {
    background: var(--gradient-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-label-light {
    display: inline-block;
    color: var(--elegant-white);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.section-title-light {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--elegant-white) !important;
}

.section-description-light {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* Sparkle Effects */
.sparkle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

/* Service Cards 3D */
.service-card-3d {
    perspective: 1000px;
    height: 100%;
}

.service-card-inner {
    background: #273142;
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-3d:hover .service-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(217, 121, 53, 0.25);
}

.service-card-3d.highlighted-service .service-card-inner {
    border: 2px solid rgba(245, 158, 11, 0.5);
    background: #2d3848;
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-dot {
    width: 6px;
    height: 6px;
    background: #d97935;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(217, 121, 53, 0.6);
    flex-shrink: 0;
    margin-top: 4px;
}

.service-card-3d.highlighted-service .service-dot {
    background: #fbbf24;
    box-shadow: 0 0 12px rgba(251, 191, 36, 0.8);
}

.service-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d97935 0%, #c2641f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.service-card-3d:hover .service-icon-modern {
    transform: scale(1.05);
}

.service-icon-modern i {
    font-size: 1.6rem;
    color: var(--elegant-white);
    z-index: 2;
}

.service-title-modern {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--elegant-white);
    margin-bottom: 12px;
}

.service-card-3d.highlighted-service .service-title-modern {
    color: #fbbf24;
}

.service-description-modern {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 18px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.service-tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.service-tag:hover {
    background: rgba(217, 121, 53, 0.2);
    border-color: rgba(217, 121, 53, 0.3);
    color: var(--elegant-white);
}

/* Team Action Banner */
.team-action-banner {
    position: relative;
    margin-top: 60px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.team-action-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-action-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 45, 45, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: var(--elegant-white);
    padding: 0 60px;
}

.team-action-overlay h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    color: var(--elegant-white);
}

.team-action-subtitle {
    font-size: 1.15rem;
    color: #f59e0b;
    font-weight: 600;
    margin: 0;
}

/* ========================================
   Workers Gallery Section
   ======================================== */
.workers-gallery-section {
    background: #e8e8e8;
    padding: 100px 0;
}

.section-badge-orange {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #d97935 0%, #c2641f 100%);
    color: var(--elegant-white);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(217, 121, 53, 0.3);
}

.section-badge-orange i {
    font-size: 0.95rem;
}

.worker-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.worker-badge-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--elegant-white);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.worker-badge-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.worker-badge-pill i {
    font-size: 1rem;
}

.badge-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.badge-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.badge-green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.badge-purple {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.section-description {
    font-size: 1.1rem;
    color: #666;
}

.worker-gallery-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
}

.worker-gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.worker-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 450px;
}

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

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

.worker-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    padding: 35px 25px;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.worker-overlay-content {
    color: var(--elegant-white);
}

.worker-overlay-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--elegant-white);
    margin-bottom: 6px;
}

.worker-overlay-specialty {
    font-size: 1.05rem;
    color: #d97935;
    font-weight: 600;
    margin-bottom: 15px;
}

.worker-certified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(217, 121, 53, 0.15);
    border: 1.5px solid #d97935;
    border-radius: 8px;
    color: #d97935;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.worker-gallery-card:hover .worker-certified-badge {
    background: #d97935;
    color: var(--elegant-white);
    transform: scale(1.05);
}

.worker-certified-badge i {
    font-size: 0.9rem;
}

/* Electric Frame with Corner Accents */
.worker-electric-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    pointer-events: none;
    z-index: 2;
}

.corner-accent {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 3px solid #d97935;
    opacity: 0;
    transition: all 0.4s ease;
}

.worker-gallery-card:hover .corner-accent {
    opacity: 1;
}

.corner-tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.corner-tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.corner-bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.corner-br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.worker-corner-highlight {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-top: 4px solid #d97935;
    border-right: 4px solid #d97935;
    z-index: 3;
}

/* ========================================
   Why Choose Us (Features) Section
   ======================================== */
.features-section {
    background: #fafaf8;
    padding: 100px 0;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 237, 179, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.text-gradient-orange {
    background: linear-gradient(135deg, #d97935 0%, #c2641f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title-light {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f1f1f;
}

.section-description-light {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.feature-card-premium {
    background: var(--elegant-white);
    border: 2px solid transparent;
    border-radius: 18px;
    padding: 38px 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #fef3c7;
    background: linear-gradient(to bottom, #fffbeb 0%, #fef9e7 100%);
}

.feature-card-premium.highlighted {
    border: 2px solid #fef3c7;
    background: linear-gradient(to bottom, #fffbeb 0%, #fef9e7 100%);
    box-shadow: 0 4px 15px rgba(217, 121, 53, 0.15);
}

.feature-icon-box {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: all var(--transition-normal);
}

.feature-card-premium:hover .feature-icon-box {
    transform: scale(1.08);
}

.feature-icon-box i {
    font-size: 2rem;
    color: #d97935;
}

.checkmark-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.checkmark-badge i {
    font-size: 0.85rem;
    color: var(--elegant-white);
}

.feature-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 0;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    background: #1f1f1f;
    padding: 100px 0;
}

.contact-section .section-label {
    color: #D4AF37;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.8rem;
}

.contact-section .section-title {
    color: var(--elegant-white);
}

.contact-section .section-description {
    color: rgba(255, 255, 255, 0.65);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Contact Info Cards */
.contact-info-card {
    background: #232d3f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 28px 22px;
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-info-card:hover {
    background: #283548;
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d97935 0%, #c2641f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all var(--transition-normal);
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.08);
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--elegant-white);
}

.contact-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #d97935;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--elegant-white);
    margin-bottom: 5px;
    word-break: break-word;
}

.contact-info {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

/* Company Info Banner */
.company-info-banner {
    background: linear-gradient(135deg, #e88a3c 0%, #d97935 50%, #c2641f 100%);
    border-radius: 20px;
    padding: 32px 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(217, 121, 53, 0.3);
}

.company-info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.company-info-icon i {
    font-size: 1.6rem;
    color: var(--elegant-white);
}

.company-info-content {
    flex: 1;
}

.company-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--elegant-white);
    margin-bottom: 3px;
}

.company-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 12px;
}

.company-description {
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0;
}

/* Contact Form Card */
.contact-form-card {
    background: var(--elegant-white);
    border-radius: 24px;
    padding: 42px 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.contact-form-card .form-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #3d3d3d;
    margin-bottom: 8px;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 1.5px solid #e5e5e5;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    background: #fafafa;
    color: #333;
}

.contact-form-card .form-control::placeholder {
    color: #9ca3af;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: #d97935;
    box-shadow: 0 0 0 0.15rem rgba(217, 121, 53, 0.08);
    background: var(--elegant-white);
    outline: none;
}

.contact-form-card textarea.form-control {
    resize: none;
    min-height: 130px;
}

/* Send Message Button */
.btn-send-message {
    background: linear-gradient(135deg, #d97935 0%, #c2641f 100%);
    color: var(--elegant-white);
    border: none;
    border-radius: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 14px rgba(217, 121, 53, 0.35);
}

.btn-send-message:hover {
    background: linear-gradient(135deg, #e88a3c 0%, #d97935 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 121, 53, 0.45);
    color: var(--elegant-white);
}

.btn-send-message i {
    transition: transform var(--transition-normal);
}

.btn-send-message:hover i {
    transform: translateX(4px);
}

/* Success Animation */
.success-animation {
    display: none;
    text-align: center;
    padding: 40px;
}

.success-animation.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #4BB543;
}

.icon-line {
    height: 5px;
    background-color: #4BB543;
    display: block;
    border-radius: 2px;
    position: absolute;
}

.line-tip {
    top: 40px;
    left: 20px;
    width: 25px;
    transform: rotate(45deg);
}

.line-long {
    top: 33px;
    right: 15px;
    width: 40px;
    transform: rotate(-45deg);
}

.icon-circle {
    top: -4px;
    left: -4px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba(75, 181, 67, 0.2);
}

.icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    z-index: 1;
    height: 85px;
    position: absolute;
    transform: rotate(-45deg);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: #1f1f1f;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 20px;
}

.footer-logo-section {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
    filter: brightness(1.1);
}

.footer-logo-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #d97935 0%, #c2641f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-logo-icon i {
    font-size: 1.5rem;
    color: var(--elegant-white);
}

.footer-logo-text {
    line-height: 1.2;
}

.footer-brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--elegant-white);
    margin: 0;
}

.footer-brand-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #d97935;
    margin: 0;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.65);
}

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

.social-link {
    width: 42px;
    height: 42px;
    background: #2a3542;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-normal);
    text-decoration: none;
    font-size: 0.95rem;
}

.social-link:hover {
    background: #d97935;
    color: var(--elegant-white);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--elegant-white);
    margin-bottom: 22px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--elegant-white);
    transform: translateX(3px);
}

/* Services List with Orange Bullets */
.footer-services-list {
    list-style: none;
    padding: 0;
}

.footer-services-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.footer-services-list i {
    color: #d97935;
    font-size: 0.5rem;
}

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

.footer-contact li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.footer-contact i {
    color: #d97935;
    margin-top: 3px;
    font-size: 1rem;
}

.footer-contact strong {
    color: var(--elegant-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
    margin-top: 30px;
}

.footer-copyright {
    margin: 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-badge {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

@media (max-width: 767px) {
    .footer-badge {
        justify-content: center;
    }
}

.addc-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

/* ========================================
   WhatsApp Floating Button
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--elegant-white);
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all var(--transition-normal);
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
    color: var(--elegant-white);
}

.whatsapp-float i {
    animation: whatsappRing 1.5s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }
}

@keyframes whatsappRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

/* ========================================
   Scroll to Top Button
   ======================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-brown);
    border: none;
    border-radius: 50%;
    color: var(--elegant-white);
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(139, 69, 19, 0.4);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(139, 69, 19, 0.5);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (min-width: 1400px) {
    .hero-worker-carousel-wrapper {
        right: 5%;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-worker-carousel-wrapper {
        right: 2%;
        z-index: 1;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title,
    .section-title-light {
        font-size: 2.5rem;
    }
    
    .hero-badges {
        gap: 0.75rem;
    }
    
    .hero-badge {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .hero-worker-carousel-wrapper {
        display: none;
    }
    
    .team-action-overlay {
        padding: 0 40px;
    }
    
    .team-action-overlay h3 {
        font-size: 2rem;
    }
    
    .team-action-subtitle {
        font-size: 1.05rem;
    }
    
    .worker-badges {
        gap: 10px;
    }
    
    .worker-badge-pill {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 60px 0;
        min-height: auto;
    }
    
    .hero-orbs {
        display: none;
    }
    
    .hero-particles {
        display: none;
    }
    
    .hero-content {
        padding: 0 15px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .addc-badge {
        padding: 8px 18px;
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .hero-badges {
        justify-content: center;
        gap: 0.6rem;
        margin: 1.5rem 0;
    }
    
    .hero-badge {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .hero-badge i {
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .scroll-down {
        display: none;
    }
    
    .section-title,
    .section-title-light {
        font-size: 1.85rem;
        line-height: 1.3;
    }
    
    .section-description,
    .section-description-light {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    .about-section,
    .services-section,
    .workers-gallery-section,
    .features-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-box {
        padding: 25px 20px;
    }
    
    .service-card-inner {
        padding: 28px 22px;
    }
    
    .service-title-modern {
        font-size: 1.1rem;
    }
    
    .service-description-modern {
        font-size: 0.85rem;
    }
    
    .team-action-overlay {
        padding: 0 25px;
        text-align: center;
        align-items: center;
    }
    
    .team-action-overlay h3 {
        font-size: 1.6rem;
    }
    
    .team-action-subtitle {
        font-size: 0.95rem;
    }
    
    .worker-badges {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 0 20px;
    }
    
    .worker-badge-pill {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .worker-image-wrapper {
        height: 350px;
    }
    
    .feature-card-premium {
        padding: 30px 25px;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .company-info-banner {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .company-name {
        font-size: 1.2rem;
    }
    
    .company-subtitle {
        font-size: 0.85rem;
    }
    
    .company-description {
        font-size: 0.82rem;
    }
    
    .footer {
        padding-top: 60px;
    }
    
    .footer-logo-section {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-brand-name {
        font-size: 1.2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-heading {
        font-size: 1.05rem;
        margin-top: 30px;
        margin-bottom: 18px;
    }
    
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
    }
    
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.85rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
    }
    
    .hero-badge {
        width: 100%;
        justify-content: center;
    }
    
    .section-title,
    .section-title-light {
        font-size: 1.6rem;
    }
    
    .section-label,
    .section-label-light,
    .section-badge-orange {
        font-size: 0.75rem;
        padding: 8px 16px;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .addc-badge-box {
        padding: 18px 20px;
    }
    
    .service-icon-modern {
        width: 50px;
        height: 50px;
    }
    
    .service-icon-modern i {
        font-size: 1.4rem;
    }
    
    .team-action-img {
        height: 200px;
    }
    
    .team-action-overlay h3 {
        font-size: 1.3rem;
    }
    
    .team-action-subtitle {
        font-size: 0.85rem;
    }
    
    .worker-overlay-title {
        font-size: 1.2rem;
    }
    
    .worker-overlay-specialty {
        font-size: 0.95rem;
    }
    
    .worker-certified-badge {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
    
    .corner-accent {
        width: 35px;
        height: 35px;
        border-width: 2px;
    }
    
    .worker-electric-frame {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-description {
        font-size: 0.88rem;
    }
    
    .contact-info-card {
        padding: 22px 18px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 1.1rem;
    }
    
    .contact-value {
        font-size: 0.95rem;
    }
    
    .company-info-banner {
        padding: 20px 18px;
    }
    
    .company-info-icon {
        width: 50px;
        height: 50px;
    }
    
    .company-info-icon i {
        font-size: 1.3rem;
    }
}
