:root {
    /* Luma Brand Colors - Matching Logo */
    --primary-black: #000000;
    --primary-orange: #FF8C00;
    --accent-orange: #FFA500;
    --primary-blue: #1E90FF;
    --accent-blue: #4169E1;
    --electric-blue: #00BFFF;
    --pure-white: #FFFFFF;
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #f5f5f5;
    
    /* Spacing */
    --section-padding: 120px 20px;
    --container-max-width: 1400px;
    --border-radius: 16px;
    
    /* Shadows */
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 16px 40px rgba(0, 0, 0, 0.2);
    --shadow-gold-glow: 0 0 40px rgba(255, 140, 0, 0.3);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--primary-black);
    color: var(--pure-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Logo Intro Animation ========== */
.logo-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 50%, var(--primary-black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeOutIntro 1s ease-in-out 2.5s forwards;
}

.logo-intro-content {
    position: relative;
    animation: logoEntry 2s ease-out forwards;
}

.intro-logo {
    width: 500px;
    max-width: 85vw;
    height: auto;
    filter: drop-shadow(0 0 50px rgba(255, 140, 0, 0.8)) 
            drop-shadow(0 0 100px rgba(30, 144, 255, 0.6));
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoEntry {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(0);
    }
    100% {
        transform: scale(1) translateY(0);
    }
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 50px rgba(255, 140, 0, 0.8)) 
                drop-shadow(0 0 100px rgba(30, 144, 255, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 70px rgba(255, 140, 0, 1)) 
                drop-shadow(0 0 120px rgba(30, 144, 255, 0.8));
    }
}

@keyframes fadeOutIntro {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* ========== Page Transition Animation ========== */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 50%, var(--primary-black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeOutTransition 1s ease-in-out 1.5s forwards;
}

.transition-icon {
    width: 200px;
    height: 200px;
    animation: iconTransitionEntry 1.5s ease-out forwards;
}

.transition-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 40px rgba(255, 140, 0, 0.8)) 
            drop-shadow(0 0 80px rgba(30, 144, 255, 0.6));
}

@keyframes iconTransitionEntry {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-20deg);
        filter: drop-shadow(0 0 0px rgba(255, 140, 0, 0)) 
                drop-shadow(0 0 0px rgba(30, 144, 255, 0));
    }
    50% {
        opacity: 1;
        transform: scale(1.15) rotate(5deg);
        filter: drop-shadow(0 0 60px rgba(255, 140, 0, 1)) 
                drop-shadow(0 0 100px rgba(30, 144, 255, 0.8));
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 40px rgba(255, 140, 0, 0.8)) 
                drop-shadow(0 0 80px rgba(30, 144, 255, 0.6));
    }
}

@keyframes fadeOutTransition {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* ========== Navigation ========== */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 50px;
    z-index: 1000;
    padding: 15px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
                0 0 0 1px rgba(255, 140, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

nav.hidden {
    opacity: 0;
    pointer-events: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 16px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-orange));
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.5));
}

.cta-nav {
    background: linear-gradient(180deg, var(--primary-orange) 0%, #B8860B 100%);
    color: var(--primary-black);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 16px rgba(255, 140, 0, 0.35),
                0 3px 8px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.cta-nav:hover {
    background: linear-gradient(180deg, var(--accent-orange) 0%, var(--primary-orange) 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.45),
                0 0 30px rgba(255, 140, 0, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--pure-white);
    transition: all 0.3s ease;
}

/* ========== Hero Section ========== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 180px 20px 100px 20px;
    position: relative;
    overflow: hidden;
    background: #000000;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('LUMA Background.jpg') center center / cover no-repeat;
    opacity: 0.7;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.15) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(255, 140, 0, 0.1) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
    filter: blur(100px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
    filter: blur(100px);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--pure-white);
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
}

.highlight-gold,
.highlight-orange {
    color: var(--primary-orange);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.highlight-gold::after,
.highlight-orange::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-orange));
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.6);
}

.highlight-blue {
    color: var(--accent-blue);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.highlight-blue::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    box-shadow: 0 0 10px rgba(30, 144, 255, 0.6);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 50px 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-features {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
}

.hero-feature svg {
    width: 24px;
    height: 24px;
    color: var(--primary-orange);
    flex-shrink: 0;
}
.btn-primary,
.btn-secondary {
    background: linear-gradient(180deg, var(--primary-orange) 0%, #B8860B 100%);
    color: var(--primary-black);
    padding: 18px 42px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.35),
                0 4px 10px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover,
.btn-secondary:hover {
    background: linear-gradient(180deg, var(--accent-orange) 0%, var(--primary-orange) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 140, 0, 0.5),
                0 0 40px rgba(255, 140, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background: linear-gradient(180deg, var(--primary-orange) 0%, #B8860B 100%);
    color: var(--primary-black);
    border-color: var(--accent-orange);
}

/* ========== Section Headers ========== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--pure-white) 0%, var(--primary-orange) 50%, var(--primary-blue) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
    animation: shimmerText 8s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.services .section-title,
.why-choose .section-title,
.about .section-title,
.contact .section-title {
    background: linear-gradient(135deg, var(--pure-white) 0%, var(--primary-orange) 50%, var(--primary-blue) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services .section-subtitle,
.why-choose .section-subtitle,
.about .section-subtitle,
.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.section-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 760px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

/* ========== Services Section ========== */
.services {
    padding: 100px 20px;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 140, 0, 0.05) 0%, transparent 60%),
                linear-gradient(180deg, var(--primary-black) 0%, #0a0a0a 50%, var(--primary-black) 100%);
    position: relative;
    overflow: hidden;
}

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

.service-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(0, 0, 0, 0.98));
    border-radius: 12px;
    padding: 0;
    text-align: left;
    border: 1px solid rgba(255, 140, 0, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 140, 0, 0.5);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8),
                0 0 30px rgba(255, 140, 0, 0.2);
}

.service-icon {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
}

.service-icon svg {
    width: 120px;
    height: 120px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    padding: 0 30px;
    padding-top: 30px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
    padding: 0 30px;
    font-size: 15px;
}

.service-link {
    display: inline-block;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0 30px 30px 30px;
    font-size: 15px;
}

.service-link:hover {
    color: var(--primary-blue);
    transform: translateX(3px);
}

/* ========== Why Choose Us Section ========== */
.why-choose {
    padding: var(--section-padding);
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 140, 0, 0.05) 0%, transparent 60%),
                linear-gradient(180deg, var(--primary-black) 0%, #0a0a0a 50%, var(--primary-black) 100%);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(0, 0, 0, 0.98));
    border-radius: 18px;
    padding: 40px;
    text-align: left;
    border: 1px solid rgba(255, 140, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(255, 140, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue), var(--primary-orange));
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 140, 0, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8),
                0 0 30px rgba(255, 140, 0, 0.25);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--primary-orange), #B8860B);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
    margin-bottom: 20px;
    padding: 12px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    color: #000000;
}

.feature-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    background: linear-gradient(90deg, var(--primary-orange), var(--pure-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* ========== Case Studies Section ========== */
.case-studies {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--medium-gray) 50%, var(--dark-gray) 100%);
    position: relative;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.case-study-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(0, 0, 0, 0.98));
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 140, 0, 0.3);
    transition: all 0.4s ease;
    text-decoration: none;
}

.case-study-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(30, 144, 255, 0.1));
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.case-study-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 140, 0, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(255, 140, 0, 0.3);
}

.case-study-card:hover::before {
    opacity: 0.8;
}

.case-study-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    padding: 40px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.case-study-overlay h3 {
    font-size: 28px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-study-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.view-more {
    color: var(--primary-orange);
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.case-study-card:hover .view-more {
    transform: translateX(5px);
}

/* ========== About Section ========== */
.about {
    padding: var(--section-padding);
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 140, 0, 0.05) 0%, transparent 60%),
                linear-gradient(180deg, var(--primary-black) 0%, #0a0a0a 50%, var(--primary-black) 100%);
    position: relative;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text h3:first-of-type {
    margin-top: 0;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(0, 0, 0, 0.98));
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.highlight-box:hover {
    transform: translateX(5px);
    border-color: rgba(255, 140, 0, 0.5);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8),
                0 0 20px rgba(255, 140, 0, 0.2);
}

.highlight-box:hover::before {
    transform: scaleX(1);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.highlight-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary-blue);
}

.highlight-box h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-orange);
    font-weight: 700;
}

.highlight-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ========== Contact Section ========== */
.contact {
    padding: var(--section-padding);
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 140, 0, 0.08) 0%, transparent 60%),
                linear-gradient(180deg, var(--primary-black) 0%, #0a0a0a 50%, var(--primary-black) 100%);
    position: relative;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(0, 0, 0, 0.98));
    border-radius: 16px;
    padding: 50px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(255, 140, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-orange);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 8px;
    color: var(--pure-white);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.2);
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 10px;
}

/* ========== JotForm Custom Styling ========== */
.jotform-container {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(0, 0, 0, 0.98));
    border-radius: 16px;
    padding: 50px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(255, 140, 0, 0.1);
}

/* Override JotForm default styles to match our theme */
.jotform-container iframe,
.jotform-container form {
    background: transparent !important;
}

/* Style JotForm elements */
.jotform-container .form-all {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.jotform-container .form-label {
    color: var(--primary-orange) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}

.jotform-container input[type="text"],
.jotform-container input[type="email"],
.jotform-container input[type="tel"],
.jotform-container select,
.jotform-container textarea {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 140, 0, 0.3) !important;
    border-radius: 8px !important;
    color: var(--pure-white) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    padding: 14px !important;
}

.jotform-container input[type="text"]:focus,
.jotform-container input[type="email"]:focus,
.jotform-container input[type="tel"]:focus,
.jotform-container select:focus,
.jotform-container textarea:focus {
    border-color: var(--primary-orange) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.2) !important;
    outline: none !important;
}

.jotform-container select option {
    background: var(--dark-gray) !important;
    color: var(--pure-white) !important;
}

.jotform-container .form-submit-button,
.jotform-container button[type="submit"] {
    background: linear-gradient(180deg, var(--primary-orange) 0%, #B8860B 100%) !important;
    color: var(--primary-black) !important;
    padding: 18px 42px !important;
    border-radius: 50px !important;
    border: none !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.35),
                0 4px 10px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    width: 100% !important;
    margin-top: 10px !important;
}

.jotform-container .form-submit-button:hover,
.jotform-container button[type="submit"]:hover {
    background: linear-gradient(180deg, var(--accent-orange) 0%, var(--primary-orange) 100%) !important;
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 12px 30px rgba(255, 140, 0, 0.5),
                0 0 40px rgba(255, 140, 0, 0.3) !important;
}

.jotform-container .form-textbox,
.jotform-container .form-textarea,
.jotform-container .form-dropdown {
    background: rgba(255, 255, 255, 0.05) !important;
}

.jotform-container .form-line {
    margin-bottom: 20px !important;
}

.jotform-container .form-required {
    color: var(--primary-orange) !important;
}

.jotform-container .form-description,
.jotform-container .form-sub-label {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Placeholder text color */
.jotform-container input::placeholder,
.jotform-container textarea::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Remove JotForm branding/footer if present */
.jotform-container .form-pagebreak,
.jotform-container .form-footer {
    background: transparent !important;
    border: none !important;
}

/* Hide JotForm footer completely */
.jotform-container .form-footer,
.jotform-container .form-all .form-footer,
.jotform-container [class*="jotform-footer"],
.jotform-container [class*="poweredBy"],
.jotform-container .powered-by,
.jotform-container .formFooter,
.jotform-container .form-all > div:last-child,
.jotform-container a[href*="jotform.com"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Prevent page scroll on form field focus */
.jotform-container input[type="text"],
.jotform-container input[type="email"],
.jotform-container input[type="tel"],
.jotform-container select,
.jotform-container textarea {
    scroll-margin-top: 0 !important;
}

.jotform-container .form-line {
    scroll-margin-top: 0 !important;
}

/* Disable JotForm's automatic scroll behavior */
.jotform-container * {
    scroll-behavior: auto !important;
}

@media (max-width: 768px) {
    .jotform-container {
        padding: 30px;
    }
}

/* ========== WhatsApp Floating Button ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4),
                0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6),
                0 12px 32px rgba(0, 0, 0, 0.4);
    animation: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Pulse animation */
@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4),
                    0 8px 24px rgba(0, 0, 0, 0.3),
                    0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4),
                    0 8px 24px rgba(0, 0, 0, 0.3),
                    0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* Bounce in animation on page load */
.whatsapp-float {
    animation: whatsappPulse 2s ease-in-out infinite, bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(100px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(0);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ========== Footer ========== */
.footer {
    background: var(--primary-black);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 140, 0, 0.3);
}

.footer-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--accent-orange);
    font-weight: 600;
    font-style: italic;
}

/* ========== Services Overview Section ========== */
.services-overview {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--primary-black) 100%);
}

.division-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.division-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.division-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.division-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 140, 0, 0.3);
}

.division-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 968px) {
    .division-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1), rgba(0, 0, 0, 0.8));
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 140, 0, 0.6);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.2);
}

.service-detail-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-card ul {
    list-style: none;
    padding: 0;
}

.service-detail-card ul li {
    color: rgba(255, 255, 255, 0.85);
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    line-height: 1.6;
}

.service-detail-card ul li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
}

@media (max-width: 768px) {
    .services-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Case Study Pages ========== */
.case-study-page nav {
    top: 20px;
}

.page-header {
    padding: 140px 20px 40px 20px;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 50%, var(--primary-black) 100%);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 140, 0, 0.1), transparent 70%);
}

.page-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
}

.page-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.case-studies-detail {
    padding: var(--section-padding);
    background: var(--primary-black);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.project-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(0, 0, 0, 0.98));
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 140, 0, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 140, 0, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(255, 140, 0, 0.2);
}

.project-image-placeholder {
    height: 250px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15), rgba(30, 144, 255, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid rgba(255, 140, 0, 0.3);
    padding: 40px;
}

.project-image-placeholder svg {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.6));
}

.project-content {
    padding: 30px;
}

.project-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.meta-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.project-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 20px;
}

.project-highlights {
    list-style: none;
    padding: 0;
}

.project-highlights li {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 25px;
    margin-bottom: 8px;
    position: relative;
}

.project-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-black) 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    nav {
        width: 95%;
        padding: 15px 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        border: 1px solid rgba(255, 140, 0, 0.3);
        border-radius: 20px;
        margin: 0 2.5%;
        width: 95%;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    .nav-links.active {
        max-height: 500px;
        opacity: 1;
        pointer-events: auto;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 100;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 20px;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .intro-logo {
        width: 300px;
    }
    
    .hero {
        padding: 100px 15px 60px 15px;
    }
    
    .section-padding {
        padding: 80px 15px;
    }
    
    .service-card,
    .feature-card {
        padding: 30px 20px;
    }
}

/* ========== NEW PROJECT SYSTEM WITH CAROUSEL ========== */
.project-showcase {
    padding: 40px 20px 80px 20px;
    background: var(--primary-black);
}

.project-showcase .container {
    max-width: 1200px;
}

.project-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

/* Project Card */
.project-showcase-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(0, 0, 0, 0.98));
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 140, 0, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
}

.project-showcase-card:hover {
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.8),
                0 0 40px rgba(255, 140, 0, 0.15);
    transform: translateY(-5px);
}

/* Carousel Container */
.project-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(0, 0, 0, 0.98));
}

@media (max-width: 768px) {
    .project-carousel {
        min-height: 300px;
    }
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(0, 0, 0, 0.98));
}

.carousel-slide:empty {
    display: none;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: auto;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 140, 0, 0.5);
    color: var(--primary-orange);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 24px;
    backdrop-filter: blur(10px);
    opacity: 0;
}

.project-carousel:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: rgba(255, 140, 0, 0.9);
    color: var(--primary-black);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
}

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

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

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 140, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: var(--primary-orange);
    width: 30px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.6);
}

.carousel-indicator:hover {
    background: rgba(255, 140, 0, 0.7);
}

/* Image Counter */
.carousel-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: var(--pure-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 140, 0, 0.3);
    z-index: 10;
}

/* Project Content */
.project-showcase-content {
    padding: 40px;
}

.project-showcase-header {
    margin-bottom: 25px;
}

.project-showcase-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-showcase-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.meta-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.meta-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-orange);
    font-weight: 600;
}

.meta-value {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Services List */
.project-services {
    margin-bottom: 25px;
}

.project-services h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-orange);
    margin-bottom: 15px;
    font-weight: 600;
}

.services-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.services-list li {
    color: rgba(255, 255, 255, 0.85);
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.services-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 18px;
}

/* Description Accordion */
.project-description-wrapper {
    border-top: 1px solid rgba(255, 140, 0, 0.2);
    padding-top: 25px;
}

.description-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 8px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.description-toggle:hover {
    background: rgba(255, 140, 0, 0.15);
    border-color: rgba(255, 140, 0, 0.5);
}

.description-toggle-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.description-toggle-icon {
    font-size: 20px;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.description-toggle.active .description-toggle-icon {
    transform: rotate(180deg);
}

.description-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.description-content.expanded {
    max-height: 1000px;
}

.description-inner {
    padding: 25px 20px 10px;
}

.description-inner p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.description-inner p:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Projects */
@media (max-width: 768px) {
    .project-showcase-content {
        padding: 25px;
    }
    
    .project-showcase-title {
        font-size: 24px;
    }
    
    .project-showcase-meta {
        grid-template-columns: 1fr;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .carousel-controls {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .project-carousel {
        aspect-ratio: 4 / 3;
    }
    
    .project-showcase-content {
        padding: 20px;
    }
    
    .project-showcase-title {
        font-size: 20px;
    }
    
    .meta-value {
        font-size: 14px;
    }
    
    .description-toggle {
        padding: 12px 15px;
    }
    
    .description-toggle-text {
        font-size: 14px;
    }
}
