﻿html {
    font-size: 14px;
    background: #1c1c1c;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
    background: #1c1c1c;
}

body {
    margin-bottom: 60px;
    background: #1c1c1c;
    color: white;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}
/* Dope Hero Section */
.hero-dope {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Animated Background */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(240, 185, 0, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(240, 185, 0, 0.05) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(240, 185, 0, 0.08) 0%, transparent 50%);
    animation: particleFloat 20s infinite linear;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

/* Gold Sweep Effect */
.gold-sweep {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200%;
    height: 150%;
    background: linear-gradient(135deg, transparent 0%, rgba(240, 185, 0, 0.15) 30%, rgba(240, 185, 0, 0.25) 50%, rgba(240, 185, 0, 0.15) 70%, transparent 100%);
    transform: rotate(-12deg);
    animation: goldSweep 8s ease-in-out infinite;
}

@keyframes goldSweep {
    0%, 100% {
        opacity: 0.3;
        transform: rotate(-12deg) translateX(0px);
    }

    50% {
        opacity: 0.6;
        transform: rotate(-12deg) translateX(50px);
    }
}

.hero-texture-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(240,185,0,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'), linear-gradient(135deg, rgba(0,0,0,0.8) 0%, transparent 50%);
}

/* Logo Styles */
/* Logo Container */
.logo-container {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-logo-dope {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(240, 185, 0, 0.3)) drop-shadow(0 0 40px rgba(240, 185, 0, 0.2)) drop-shadow(0 0 60px rgba(240, 185, 0, 0.1));
    transition: all 0.5s ease;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(240, 185, 0, 0.3)) drop-shadow(0 0 40px rgba(240, 185, 0, 0.2));
    }

    100% {
        filter: drop-shadow(0 0 25px rgba(240, 185, 0, 0.4)) drop-shadow(0 0 50px rgba(240, 185, 0, 0.3)) drop-shadow(0 0 75px rgba(240, 185, 0, 0.1));
    }
}

.hero-logo-dope:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(240, 185, 0, 0.6)) drop-shadow(0 0 60px rgba(240, 185, 0, 0.4)) drop-shadow(0 0 90px rgba(240, 185, 0, 0.2));
}

/* Keep all the other awesome CSS from before */
.hero-dope {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* All the other amazing styles remain the same... */

/* Hero Content */
/*.hero-content-dope {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}*/

.hero-text-dope {
    text-align: left;
}

.hero-title-dope {
    margin-bottom: 2rem;
}

.title-line-1, .title-line-2 {
    display: block;
    font-size: 3.5rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.1;
}

.title-line-2 {
    font-weight: 700;
    background: linear-gradient(135deg, #F0B900 0%, #ffd700 50%, #F0B900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-dope {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #e8e8e8;
    margin-bottom: 3rem;
    max-width: 600px;
    font-weight: 300;
}

/* Enhanced CTA Buttons */
.hero-cta-dope {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-hero-gold, .btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn-hero-gold {
    background: linear-gradient(135deg, #F0B900, #dba600, #F0B900);
    background-size: 200% 200%;
    color: #000;
    box-shadow: 0 10px 30px rgba(240, 185, 0, 0.4);
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.btn-hero-outline {
    border: 2px solid rgba(255,255,255,0.3);
    color: #ffffff;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.btn-hero-gold:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(240, 185, 0, 0.6);
}

.btn-hero-outline:hover {
    transform: translateY(-5px);
    border-color: #F0B900;
    background: rgba(240, 185, 0, 0.1);
    box-shadow: 0 15px 30px rgba(240, 185, 0, 0.3);
}

.btn-sparkle, .btn-pulse {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-hero-gold:hover .btn-sparkle {
    animation: sparkle 1s ease infinite;
}

.btn-hero-outline:hover .btn-pulse {
    animation: pulse 1s ease infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.2) rotate(180deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}

/* Stats Badge */
.hero-stats-dope {
    display: flex;
    align-items: center;
}

.stat-badge {
    background: linear-gradient(135deg, rgba(240, 185, 0, 0.1), rgba(240, 185, 0, 0.05));
    border: 1px solid rgba(240, 185, 0, 0.3);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #F0B900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-desc {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: #F0B900;
    position: relative;
    animation: scrollBounce 2s infinite;
}

    .scroll-arrow::before, .scroll-arrow::after {
        content: '';
        position: absolute;
        bottom: -8px;
        width: 2px;
        height: 10px;
        background: #F0B900;
        transform: rotate(45deg);
    }

    .scroll-arrow::before {
        left: -4px;
    }

    .scroll-arrow::after {
        right: -4px;
    }

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-dope {
        min-height: 100vh;
        height: auto;
        padding: 2rem 0;
    }

    .logo-part-1 {
        font-size: 3rem;
    }

    .logo-part-2, .logo-part-3 {
        font-size: 2rem;
    }

    .hero-content-dope {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .title-line-1, .title-line-2 {
        font-size: 2.2rem;
    }

    .hero-subtitle-dope {
        font-size: 1.1rem;
    }

    .hero-cta-dope {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero-gold, .btn-hero-outline {
        justify-content: center;
    }

    .stat-badge {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .title-line-1, .title-line-2 {
        font-size: 4rem;
    }

    .hero-subtitle-dope {
        font-size: 1.4rem;
    }
}
/* ======================================
   PREMIUM GLASSY + ANGLED + GOLD STYLE
====================================== */

/* Full viewport hero */
.hero-premium {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: #1c1c1c;
    background-image: url('/images/texture-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Enhanced overlay */
.hero-texture {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100% );
}

/* Extended gold angled slice */
.gold-angle {
    position: absolute;
    top: -25%;
    right: -15%;
    width: 180%;
    height: 70%;
    background: linear-gradient(135deg, #F0B900, #d9a200, #F0B900);
    transform: rotate(-8deg);
    opacity: 0.92;
}

/* Enhanced glass content block */
.hero-glass {
    position: relative;
    z-index: 3;
    padding: 60px 50px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    max-width: 900px;
    margin: 0 auto;
    width: 90%;
}

/* Larger logo */
.hero-logo {
    max-width: 300px;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.5));
    margin-bottom: 2rem !important;
}

/* Enhanced title & subtitle */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #F0B900;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    color: #f8f9fa;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-size: 1.3rem;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Enhanced gold button */
.btn-gold {
    background: linear-gradient(135deg, #F0B900, #dba600);
    color: #000;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

    .btn-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(240, 185, 0, 0.5);
    }

/* Enhanced light outline button */
.btn-outline-light {
    border: 2px solid #FFF;
    color: #FFF;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

    .btn-outline-light:hover {
        background: rgba(255,255,255,0.14);
        transform: translateY(-2px);
    }

/* Divider angle */
/* Updated Angled Divider */
.angle-divider {
    height: 100px;
    background: linear-gradient(135deg, #1c1c1c 0%, #2d2d2d 100%);
    transform: skewY(-3deg);
    position: relative;
    overflow: hidden;
}

    .angle-divider::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #F0B900, transparent);
    }

/* Signature section - CHANGED TO DARK */
/* Premium Signature Section */
.signature-premium {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

    .signature-premium::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #F0B900, transparent);
    }

    .signature-premium::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #F0B900, transparent);
    }

/* Value Pillars */
.value-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.pillar {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

    .pillar::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(240, 185, 0, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .pillar:hover::before {
        left: 100%;
    }

    .pillar:hover {
        transform: translateY(-15px) scale(1.02);
        background: linear-gradient(145deg, rgba(240, 185, 0, 0.1), rgba(240, 185, 0, 0.05));
        border-color: #F0B900;
        box-shadow: 0 20px 40px rgba(240, 185, 0, 0.2);
    }

.pillar-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.pillar h3 {
    color: #F0B900;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.pillar p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Signature Content Grid */
.signature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.content-left h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.gold-gradient {
    background: linear-gradient(135deg, #F0B900 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #e8e8e8;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

    .stat:hover {
        background: rgba(240, 185, 0, 0.05);
        border-color: rgba(240, 185, 0, 0.3);
        transform: translateY(-5px);
    }

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #F0B900;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #aaa;
    font-weight: 500;
}

/* Decade Badge */
.decade-badge {
    background: linear-gradient(135deg, rgba(240, 185, 0, 0.1), rgba(240, 185, 0, 0.05));
    border: 1px solid rgba(240, 185, 0, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-top: 2rem;
}

    .decade-badge span {
        color: #F0B900;
        font-weight: 600;
        font-size: 1rem;
    }

/* Expertise Card */
.expertise-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

    .expertise-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #F0B900, #ffd700, #F0B900);
    }

    .expertise-card h4 {
        color: #F0B900;
        margin-bottom: 2rem;
        font-size: 1.8rem;
        font-weight: 700;
    }

.expertise-list {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

    .expertise-list li {
        padding: 1rem 0;
        color: #fff;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 1.1rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .expertise-list li:hover {
            color: #F0B900;
            padding-left: 10px;
        }

        .expertise-list li:last-child {
            border-bottom: none;
        }

/* Enhanced CTA Group */
.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-gold, .btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-gold {
    background: linear-gradient(135deg, #F0B900, #dba600);
    color: #000;
    box-shadow: 0 8px 25px rgba(240, 185, 0, 0.3);
}

    .btn-gold:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(240, 185, 0, 0.5);
        color: #000;
    }

.btn-outline-light {
    border: 2px solid #FFF;
    color: #FFF;
    background: transparent;
}

    .btn-outline-light:hover {
        background: rgba(255,255,255,0.1);
        transform: translateY(-3px);
        color: #FFF;
    }

.btn-arrow, .btn-icon {
    transition: transform 0.3s ease;
}

.btn-gold:hover .btn-arrow {
    transform: translateX(3px);
}

.btn-outline-light:hover .btn-icon {
    transform: scale(1.2);
}
.particles-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.particle {
    position: absolute;
    background: #F0B900;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s infinite ease-in-out;
}
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.pillar:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 1.5s ease;
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .signature-premium {
        padding: 80px 0;
    }

    .signature-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .value-pillars {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .content-left h2 {
        font-size: 2.2rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .expertise-card {
        padding: 2rem;
    }

    .cta-group {
        flex-direction: column;
    }

    .btn-gold, .btn-outline-light {
        width: 100%;
        justify-content: center;
    }
}
/* Exceptional CTA Section */
.cta-exceptional {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    overflow: hidden;
    border-top: 1px solid rgba(240, 185, 0, 0.2);
    border-bottom: 1px solid rgba(240, 185, 0, 0.2);
}

/* Background Elements */
.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(240, 185, 0, 0.1) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(240, 185, 0, 0.05) 0%, transparent 50%);
    animation: ctaParticleMove 15s ease-in-out infinite;
}

@keyframes ctaParticleMove {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

.cta-gold-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(90deg, transparent 0%, rgba(240, 185, 0, 0.1) 20%, rgba(240, 185, 0, 0.2) 50%, rgba(240, 185, 0, 0.1) 80%, transparent 100%);
    clip-path: polygon(0 100%, 100% 50%, 100% 100%, 0% 100%);
    animation: waveShift 8s ease-in-out infinite;
}

@keyframes waveShift {
    0%, 100% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(-30px);
    }
}

.cta-texture {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="1" cy="1" r="1" fill="rgba(240,185,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

/* CTA Content */
.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-heading {
    margin-bottom: 4rem;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-title-highlight {
    background: linear-gradient(135deg, #F0B900 0%, #ffd700 50%, #F0B900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

    .cta-title-highlight::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, transparent, #F0B900, transparent);
        animation: highlightPulse 2s ease-in-out infinite;
    }

@keyframes highlightPulse {
    0%, 100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.cta-subtitle {
    font-size: 1.3rem;
    color: #e8e8e8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Stats Showcase */
.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .stat-item:hover {
        background: rgba(240, 185, 0, 0.1);
        border-color: rgba(240, 185, 0, 0.3);
        transform: translateY(-5px);
    }

.stat-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(240, 185, 0, 0.3));
}

.stat-info {
    text-align: left;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #F0B900;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 500;
}

/* Enhanced CTA Buttons */
.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary {
    position: relative;
    display: inline-flex;
    padding: 0;
    border: none;
    border-radius: 15px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 200px;
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem 2.5rem;
    width: 100%;
    justify-content: center;
}

/* Primary Button */
.btn-cta-primary {
    background: linear-gradient(135deg, #F0B900, #dba600, #F0B900);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

    .btn-cta-primary .btn-text {
        color: #000;
        font-weight: 700;
        font-size: 1.1rem;
    }

    .btn-cta-primary .btn-arrow {
        color: #000;
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

.btn-glow {
    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-cta-primary:hover .btn-glow {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(240, 185, 0, 0.6);
}

    .btn-cta-primary:hover .btn-arrow {
        transform: translateX(5px);
    }

/* Secondary Button */
.btn-cta-secondary {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

    .btn-cta-secondary .btn-text {
        color: #ffffff;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .btn-cta-secondary .btn-whatsapp {
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

.btn-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(37, 211, 102, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover .btn-pulse {
    width: 100%;
    height: 100%;
}

.btn-cta-secondary:hover {
    transform: translateY(-5px);
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

    .btn-cta-secondary:hover .btn-whatsapp {
        transform: scale(1.2);
    }

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.03);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

    .trust-item:hover {
        background: rgba(240, 185, 0, 0.1);
        border-color: rgba(240, 185, 0, 0.3);
        transform: translateY(-3px);
    }

.trust-icon {
    font-size: 1.2rem;
}

.trust-item span {
    color: #e8e8e8;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-exceptional {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .trust-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

}
/* Ensure sections have visible backgrounds */
.hero-dope, .cta-exceptional, .signature-premium {
    background: #1c1c1c !important; /* Solid dark gray instead of pure black */
}

/* Make sure text has good contrast */
.hero-title-dope, .cta-title, .signature-content h2 {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
/* Large screens */
@media (min-width: 1200px) {
    .cta-title {
        font-size: 4rem;
    }

    .cta-subtitle {
        font-size: 1.4rem;
    }
}
/* Large screens */
@media (min-width: 1200px) {
    .content-left h2 {
        font-size: 3.5rem;
    }

    .lead {
        font-size: 1.4rem;
    }
}

/* Glass strip */
.glass-strip {
    display: flex;
    height: 260px;
    background: #1c1c1c;
}

.glass-img {
    flex: 1;
    background-size: cover;
    background-position: center;
    filter: brightness(0.85) contrast(1.1);
    backdrop-filter: blur(2px);
}

/* Dark CTA */
.cta-deep {
    padding: 100px 0;
    background: #111;
    color: white;
}

/* Ensure no white background anywhere */
.container {
    background: transparent;
}

section {
    background: #1c1c1c;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-premium {
        min-height: 100vh;
        height: auto;
        padding: 2rem 0;
    }

    .hero-glass {
        padding: 40px 25px;
        margin: 2rem auto;
    }

    .hero-logo {
        max-width: 200px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn-gold,
    .btn-outline-light {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .gold-angle {
        width: 200%;
        height: 60%;
        top: -15%;
    }

    .glass-strip {
        flex-direction: column;
        height: auto;
    }

    .glass-img {
        height: 200px;
    }
}

/* Extra large screens */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-glass {
        padding: 80px 60px;
    }
}
/* Clean Footer Styles */
.footer-map-simple {
    text-align: center;
    padding: 2rem 0;
}

    .footer-map-simple h3 {
        color: #F0B900;
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

.map-subtitle {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.map-wrapper {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.simple-location {
    margin-top: 1rem;
}

    .simple-location p {
        color: #e8e8e8;
        margin-bottom: 0.8rem;
        font-size: 1rem;
    }

.contact-link {
    color: #F0B900;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .contact-link:hover {
        color: #ffd700;
        padding-left: 5px;
    }

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    background: rgba(0,0,0,0.3);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: #999;
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

    .footer-legal a {
        color: #ccc;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

        .footer-legal a:hover {
            color: #F0B900;
        }

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-map-simple h3 {
        font-size: 1.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .map-wrapper {
        margin: 0 1rem 1.5rem;
    }
}
/* ======================================
   PREMIUM NAVIGATION STYLES
====================================== */

.navbar {
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(240, 185, 0, 0.2);
    transition: all 0.3s ease;
}

    .navbar.scrolled {
        background: rgba(10, 10, 10, 0.98) !important;
        padding: 0.5rem 0;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    }

/* Logo */
.nav-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.navbar-brand:hover .nav-logo {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(240, 185, 0, 0.5));
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

    .navbar-nav .nav-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: #F0B900;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover {
        color: #F0B900 !important;
        background: rgba(240, 185, 0, 0.1);
    }

        .navbar-nav .nav-link:hover::before {
            width: 80%;
        }

    .navbar-nav .nav-link.active {
        color: #F0B900 !important;
        background: rgba(240, 185, 0, 0.15);
    }

        .navbar-nav .nav-link.active::before {
            width: 80%;
            background: #F0B900;
        }

/* Get Quote Button */
.btn-gold-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #F0B900, #dba600);
    color: #000 !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(240, 185, 0, 0.3);
}

    .btn-gold-nav:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(240, 185, 0, 0.5);
        color: #000 !important;
    }

/* Mobile Toggle Button */
.navbar-toggler {
    border: 1px solid rgba(240, 185, 0, 0.3);
    padding: 0.25rem 0.5rem;
}

    .navbar-toggler:focus {
        box-shadow: 0 0 0 2px rgba(240, 185, 0, 0.25);
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(240, 185, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid rgba(240, 185, 0, 0.2);
    }

    .navbar-nav .nav-link {
        margin: 0.2rem 0;
        text-align: center;
    }

    .btn-gold-nav {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
}

/* Scroll Behavior */
.navbar {
    transition: all 0.3s ease;
}

/* Ensure content doesn't go behind fixed nav */
body {
    padding-top: 80px;
}

@media (max-width: 991px) {
    body {
        padding-top: 70px;
    }
}
/* ======================================
   HYBRID SERVICES STYLES
====================================== */

/* Service Card Layout */
.service-card {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    padding: 4rem 3rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(240, 185, 0, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .service-card:hover::before {
        left: 100%;
    }

    .service-card:hover {
        transform: translateY(-10px);
        border-color: rgba(240, 185, 0, 0.3);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

/* Service Visual Section */
.service-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
    width: 300px;
}

.service-icon {
    font-size: 4rem;
    filter: drop-shadow(0 0 15px rgba(240, 185, 0, 0.3));
}

.service-preview {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(240, 185, 0, 0.3);
    transition: all 0.3s ease;
}

    .service-preview:hover {
        border-color: rgba(240, 185, 0, 0.6);
        box-shadow: 0 10px 25px rgba(240, 185, 0, 0.2);
    }

    .service-preview img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .service-preview:hover img {
        transform: scale(1.05);
    }

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-preview:hover .preview-overlay {
    opacity: 1;
}

.view-gallery-btn {
    padding: 0.8rem 1.5rem;
    background: #F0B900;
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .view-gallery-btn:hover {
        background: #ffd700;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(240, 185, 0, 0.4);
    }

/* Mini Gallery */
.mini-gallery {
    display: flex;
    gap: 0.8rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.mini-gallery-item {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

    .mini-gallery-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(240, 185, 0, 0);
        transition: background 0.3s ease;
    }

    .mini-gallery-item:hover::before {
        background: rgba(240, 185, 0, 0.2);
    }

    .mini-gallery-item:hover {
        transform: scale(1.1);
        border-color: #F0B900;
        box-shadow: 0 5px 15px rgba(240, 185, 0, 0.3);
    }

    .mini-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Service Content */
.service-content {
    flex: 1;
}

    .service-content h3 {
        color: #F0B900;
        font-size: 2rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
    }

    .service-content p {
        color: #e8e8e8;
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.8rem;
}

    .service-features li {
        color: #ccc;
        padding: 0.8rem 1rem;
        background: rgba(255,255,255,0.03);
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,0.05);
        transition: all 0.3s ease;
        position: relative;
        padding-left: 2.5rem;
    }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 1rem;
            color: #F0B900;
            font-weight: bold;
        }

        .service-features li:hover {
            background: rgba(240, 185, 0, 0.05);
            border-color: rgba(240, 185, 0, 0.2);
            transform: translateX(5px);
        }

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-card {
        flex-direction: column;
        gap: 2rem;
        padding: 2.5rem 1.5rem;
        text-align: center;
    }

    .service-visual {
        width: 100%;
    }

    .service-preview {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .service-content h3 {
        font-size: 1.7rem;
    }

    .mini-gallery {
        justify-content: center;
        flex-wrap: wrap;
    }

    .service-features {
        grid-template-columns: 1fr;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .service-visual {
        width: 350px;
    }

    .service-preview {
        height: 220px;
    }
}
/* Fallback for missing images */
.service-preview img,
.mini-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #2d2d2d, #3d3d3d); /* Fallback background */
}

    /* When image fails to load, show this instead */
    .service-preview img[src=""],
    .service-preview img:not([src]) {
        background: linear-gradient(135deg, #1e3a5f, #2d4f7c);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .service-preview img[src=""]:before,
        .service-preview img:not([src]):before {
            content: "📷 Image Coming Soon";
            color: #fff;
            font-size: 1rem;
            text-align: center;
        }

/* Add service icons for all services */
.service-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}
/* Fallback Styles for Missing Images */
.preview-fallback,
.gallery-fallback {
    display: none;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
}

/* Preview Fallbacks */
.preview-fallback {
    position: absolute;
    top: 0;
    left: 0;
}

.township-fallback {
    background: linear-gradient(135deg, #1e3a5f, #2d4f7c);
}

.water-fallback {
    background: linear-gradient(135deg, #1f4e5f, #2d6b7c);
}

.mechanical-fallback {
    background: linear-gradient(135deg, #5f1e1e, #7c2d2d);
}

.building-fallback {
    background: linear-gradient(135deg, #5f4e1e, #7c6b2d);
}

.management-fallback {
    background: linear-gradient(135deg, #1e5f3a, #2d7c4f);
}

.civil-fallback {
    background: linear-gradient(135deg, #5f1e5f, #7c2d7c);
}

.fallback-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

    .fallback-icons span {
        font-size: 2rem;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
        animation: float 3s ease-in-out infinite;
    }

        .fallback-icons span:nth-child(2) {
            animation-delay: 0.5s;
        }

        .fallback-icons span:nth-child(3) {
            animation-delay: 1s;
        }

        .fallback-icons span:nth-child(4) {
            animation-delay: 1.5s;
        }

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.fallback-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

/* Gallery Fallbacks */
.gallery-fallback {
    background: rgba(255,255,255,0.05);
    border: 2px dashed rgba(255,255,255,0.2);
    color: #ccc;
}

    .gallery-fallback span {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .gallery-fallback small {
        font-size: 0.7rem;
        font-weight: 500;
    }

/* Ensure images don't break layout */
.service-preview img,
.mini-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-gallery-item {
    position: relative;
    overflow: hidden;
}
/* ======================================
   DOPE WHY CHOOSE US SECTION
====================================== */

.services-why {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

    /* Animated Background Elements */
    .services-why::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 30%, rgba(240, 185, 0, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(240, 185, 0, 0.05) 0%, transparent 50%);
        animation: backgroundPulse 8s ease-in-out infinite;
    }

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

.services-why::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #F0B900, transparent);
}

.why-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

    .why-content h2 {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 4rem;
        background: linear-gradient(135deg, #ffffff 0%, #F0B900 50%, #ffffff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
        display: inline-block;
    }

        .why-content h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #F0B900, transparent);
            animation: linePulse 2s ease-in-out infinite;
        }

@keyframes linePulse {
    0%, 100% {
        width: 100px;
        opacity: 0.7;
    }

    50% {
        width: 150px;
        opacity: 1;
    }
}

/* Why Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-item {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.05) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

    .why-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(240, 185, 0, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .why-item:hover::before {
        left: 100%;
    }

    .why-item:hover {
        transform: translateY(-15px) scale(1.05);
        border-color: rgba(240, 185, 0, 0.3);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(240, 185, 0, 0.1), inset 0 0 30px rgba(240, 185, 0, 0.05);
    }

/* Why Icons */
.why-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(240, 185, 0, 0.3));
    animation: iconFloat 3s ease-in-out infinite;
    position: relative;
}

    .why-icon::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80px;
        height: 80px;
        background: radial-gradient(circle, rgba(240, 185, 0, 0.2) 0%, transparent 70%);
        border-radius: 50%;
        z-index: -1;
        animation: glowPulse 2s ease-in-out infinite;
    }

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Different animations for each icon */
.why-item:nth-child(1) .why-icon {
    animation-delay: 0s;
}

.why-item:nth-child(2) .why-icon {
    animation-delay: 0.5s;
}

.why-item:nth-child(3) .why-icon {
    animation-delay: 1s;
}

.why-item:nth-child(4) .why-icon {
    animation-delay: 1.5s;
}

.why-item h4 {
    color: #F0B900;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

    .why-item h4::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #F0B900;
        transition: width 0.3s ease;
    }

.why-item:hover h4::after {
    width: 100%;
}

.why-item p {
    color: #e8e8e8;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 300;
    margin: 0;
    opacity: 0.9;
}

/* Floating Particles */
.why-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: #F0B900;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s linear infinite;
}

    .particle:nth-child(1) {
        top: 20%;
        left: 10%;
        width: 4px;
        height: 4px;
        animation-delay: 0s;
    }

    .particle:nth-child(2) {
        top: 60%;
        left: 80%;
        width: 6px;
        height: 6px;
        animation-delay: 2s;
    }

    .particle:nth-child(3) {
        top: 80%;
        left: 20%;
        width: 3px;
        height: 3px;
        animation-delay: 4s;
    }

@keyframes particleFloat {
    0% {
        transform: translateY(100px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-why {
        padding: 80px 0;
    }

    .why-content h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-item {
        padding: 2.5rem 1.5rem;
    }

        .why-item:hover {
            transform: translateY(-8px) scale(1.02);
        }

    .why-icon {
        font-size: 3.5rem;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .why-content h2 {
        font-size: 4rem;
    }

    .why-grid {
        gap: 3rem;
    }

    .why-item {
        padding: 4rem 2.5rem;
    }
}


/* ======================================
   DOPEST CTA SECTION
====================================== */

.services-cta {
    padding: 140px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(240, 185, 0, 0.2);
    border-bottom: 1px solid rgba(240, 185, 0, 0.2);
}

    /* Animated Background */
    .services-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 10% 20%, rgba(240, 185, 0, 0.15) 0%, transparent 40%), radial-gradient(circle at 90% 80%, rgba(240, 185, 0, 0.1) 0%, transparent 40%), radial-gradient(circle at 50% 50%, rgba(240, 185, 0, 0.05) 0%, transparent 60%);
        animation: ctaBackgroundShift 15s ease-in-out infinite;
    }

@keyframes ctaBackgroundShift {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }

    33% {
        transform: scale(1.1) rotate(120deg);
        opacity: 0.9;
    }

    66% {
        transform: scale(1.05) rotate(240deg);
        opacity: 0.8;
    }
}

/* Gold Wave Effect */
.services-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 150px;
    background: linear-gradient(90deg, transparent 0%, rgba(240, 185, 0, 0.2) 25%, rgba(240, 185, 0, 0.4) 50%, rgba(240, 185, 0, 0.2) 75%, transparent 100%);
    animation: goldWave 8s ease-in-out infinite;
    transform: translateX(-25%);
}

@keyframes goldWave {
    0%, 100% {
        transform: translateX(-25%) translateY(0px);
        opacity: 0.6;
    }

    50% {
        transform: translateX(-25%) translateY(-10px);
        opacity: 0.8;
    }
}

/* CTA Content */
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

    .cta-content h2 {
        font-size: 4rem;
        font-weight: 800;
        margin-bottom: 2rem;
        background: linear-gradient(135deg, #ffffff 0%, #F0B900 25%, #ffd700 50%, #F0B900 75%, #ffffff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 300% 300%;
        animation: titleShine 4s ease-in-out infinite;
        position: relative;
        display: inline-block;
    }

@keyframes titleShine {
    0%, 100% {
        background-position: 0% 50%;
        text-shadow: 0 0 30px rgba(240, 185, 0, 0.3);
    }

    50% {
        background-position: 100% 50%;
        text-shadow: 0 0 50px rgba(240, 185, 0, 0.6), 0 0 80px rgba(240, 185, 0, 0.3);
    }
}

.cta-content h2::before,
.cta-content h2::after {
    content: '✨';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    opacity: 0;
    animation: sparkleFloat 3s ease-in-out infinite;
}

.cta-content h2::before {
    left: -60px;
    animation-delay: 0s;
}

.cta-content h2::after {
    right: -60px;
    animation-delay: 1.5s;
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(-50%) scale(0.8) rotate(0deg);
        opacity: 0;
    }

    50% {
        transform: translateY(-50%) scale(1.2) rotate(180deg);
        opacity: 1;
    }
}

.cta-content p {
    font-size: 1.4rem;
    color: #e8e8e8;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

    .cta-content p::after {
        content: '';
        position: absolute;
        bottom: -1rem;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 2px;
        background: linear-gradient(90deg, transparent, #F0B900, transparent);
        animation: lineGlow 2s ease-in-out infinite;
    }

@keyframes lineGlow {
    0%, 100% {
        width: 100px;
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(240, 185, 0, 0.3);
    }

    50% {
        width: 150px;
        opacity: 1;
        box-shadow: 0 0 20px rgba(240, 185, 0, 0.6);
    }
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

/* Enhanced Gold Button */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 3rem;
    background: linear-gradient(135deg, #F0B900 0%, #ffd700 25%, #F0B900 50%, #ffd700 75%, #F0B900 100%);
    background-size: 400% 400%;
    color: #000;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: gradientFlow 3s ease infinite;
    box-shadow: 0 10px 30px rgba(240, 185, 0, 0.4), 0 0 0 1px rgba(240, 185, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.3);
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.btn-gold::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-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(240, 185, 0, 0.6), 0 0 0 1px rgba(240, 185, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.4);
    animation: gradientFlow 1s ease infinite;
}

.btn-gold:active {
    transform: translateY(-2px) scale(1.02);
}

/* Enhanced Outline Button */
.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 3rem;
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.2rem;
    border: 2px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

    .btn-outline-light::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(240, 185, 0, 0.1) 0%, rgba(255,255,255,0.05) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .btn-outline-light:hover::before {
        opacity: 1;
    }

    .btn-outline-light:hover {
        transform: translateY(-5px);
        border-color: #25D366;
        background: rgba(37, 211, 102, 0.1);
        box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3), 0 0 0 1px rgba(37, 211, 102, 0.2);
        color: #ffffff;
    }

    .btn-outline-light:active {
        transform: translateY(-2px);
    }

/* Button Icons */
.btn-gold::after {
    content: '🚀';
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-gold:hover::after {
    transform: translateX(5px) rotate(45deg);
}

.btn-outline-light::after {
    content: '💬';
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-outline-light:hover::after {
    transform: scale(1.2);
}

/* Floating Elements */
.cta-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: floatAround 20s linear infinite;
}

    .floating-element:nth-child(1) {
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }

    .floating-element:nth-child(2) {
        top: 60%;
        left: 80%;
        animation-delay: 5s;
    }

    .floating-element:nth-child(3) {
        top: 80%;
        left: 20%;
        animation-delay: 10s;
    }

    .floating-element:nth-child(4) {
        top: 40%;
        left: 90%;
        animation-delay: 15s;
    }

@keyframes floatAround {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.1;
    }

    25% {
        transform: translate(100px, 50px) rotate(90deg) scale(1.2);
        opacity: 0.2;
    }

    50% {
        transform: translate(50px, 100px) rotate(180deg) scale(1);
        opacity: 0.1;
    }

    75% {
        transform: translate(-50px, 50px) rotate(270deg) scale(0.8);
        opacity: 0.05;
    }

    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
        opacity: 0.1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-cta {
        padding: 100px 0;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }

    .btn-gold,
    .btn-outline-light {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1.2rem 2rem;
    }

    .cta-content h2::before,
    .cta-content h2::after {
        display: none;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .cta-content h2 {
        font-size: 4.5rem;
    }

    .cta-content p {
        font-size: 1.5rem;
    }
}
/* ======================================
   DOPE CLIENTELE PAGE STYLES
====================================== */

/* Clientele Hero */
.clientele-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    overflow: hidden;
    text-align: center;
}

.clientele-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(240, 185, 0, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(240, 185, 0, 0.1) 0%, transparent 50%);
    animation: heroPulse 10s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.clientele-hero-content h1 {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #F0B900 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: titleShimmer 4s ease-in-out infinite;
}

.clientele-hero-content .lead {
    font-size: 1.3rem;
    color: #e8e8e8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Projects Showcase */
.projects-showcase {
    padding: 100px 0;
    background: #1c1c1c;
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

    .showcase-header h2 {
        font-size: 3rem;
        color: #ffffff;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #ffffff 0%, #F0B900 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .showcase-header p {
        font-size: 1.2rem;
        color: #ccc;
        max-width: 600px;
        margin: 0 auto;
    }

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
}

    .project-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(240, 185, 0, 0.1), transparent);
        transition: left 0.6s ease;
        z-index: 1;
    }

    .project-card:hover::before {
        left: 100%;
    }

    .project-card:hover {
        transform: translateY(-15px) scale(1.02);
        border-color: rgba(240, 185, 0, 0.3);
        box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(240, 185, 0, 0.1);
    }

/* Project Image */
.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

    .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-fallback {
    display: none;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2d2d2d, #3d3d3d);
    color: #ccc;
}

.fallback-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(240, 185, 0, 0.3));
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-category {
    background: rgba(240, 185, 0, 0.9);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    align-self: flex-start;
    margin-bottom: 0.5rem;
}

.project-overlay h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Project Content */
.project-content {
    padding: 2rem;
}

    .project-content h3 {
        color: #F0B900;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }

.project-location {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-description {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(255,255,255,0.05);
    color: #ccc;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.project-card:hover .feature-tag {
    background: rgba(240, 185, 0, 0.1);
    border-color: rgba(240, 185, 0, 0.3);
    color: #F0B900;
}

/* Clients Section */
.clients-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

    .clients-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #F0B900, transparent);
    }

.clients-header {
    text-align: center;
    margin-bottom: 4rem;
}

    .clients-header h2 {
        font-size: 3rem;
        color: #ffffff;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #ffffff 0%, #F0B900 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .clients-header p {
        font-size: 1.2rem;
        color: #ccc;
        max-width: 600px;
        margin: 0 auto;
    }

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.client-category {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .client-category:hover {
        transform: translateY(-10px);
        border-color: rgba(240, 185, 0, 0.3);
        background: rgba(240, 185, 0, 0.05);
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }

    .client-category h3 {
        color: #F0B900;
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }

.client-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .client-list li {
        color: #e8e8e8;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        position: relative;
        padding-left: 1.5rem;
        transition: all 0.3s ease;
    }

        .client-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #F0B900;
            font-weight: bold;
        }

        .client-list li:hover {
            color: #F0B900;
            padding-left: 2rem;
        }

        .client-list li:last-child {
            border-bottom: none;
        }

/* Clientele Stats */
.clientele-stats {
    padding: 80px 0;
    background: #0f0f0f;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

    .stat-item:hover {
        background: rgba(240, 185, 0, 0.05);
        border-color: rgba(240, 185, 0, 0.2);
        transform: translateY(-5px);
    }

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #F0B900;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Clientele CTA */
.clientele-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

    .clientele-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 30% 70%, rgba(240, 185, 0, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 30%, rgba(240, 185, 0, 0.05) 0%, transparent 50%);
        animation: ctaFloat 8s ease-in-out infinite;
    }

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

    .cta-content h2 {
        font-size: 3rem;
        color: #ffffff;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #ffffff 0%, #F0B900 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .cta-content p {
        font-size: 1.2rem;
        color: #e8e8e8;
        margin-bottom: 3rem;
        line-height: 1.6;
    }

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Enhanced Buttons */
.btn-gold, .btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: linear-gradient(135deg, #F0B900, #dba600);
    color: #000;
    box-shadow: 0 8px 25px rgba(240, 185, 0, 0.4);
}

    .btn-gold:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(240, 185, 0, 0.6);
    }

.btn-outline-light {
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

    .btn-outline-light:hover {
        transform: translateY(-3px);
        border-color: #25D366;
        background: rgba(37, 211, 102, 0.1);
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .clientele-hero-content h1 {
        font-size: 2.5rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-header h2,
    .clients-header h2 {
        font-size: 2.2rem;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-gold, .btn-outline-light {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .clientele-hero-content h1 {
        font-size: 4.5rem;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}




/* ======================================
   DOPE CONTACT PAGE STYLES
====================================== */

/* Contact Hero */
.contact-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    overflow: hidden;
    text-align: center;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(240, 185, 0, 0.15) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(240, 185, 0, 0.1) 0%, transparent 50%);
    animation: contactHeroPulse 8s ease-in-out infinite;
}

@keyframes contactHeroPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.contact-hero-content h1 {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #F0B900 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: titleShimmer 4s ease-in-out infinite;
}

.contact-hero-content .lead {
    font-size: 1.3rem;
    color: #e8e8e8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Main Section */
.contact-main {
    padding: 100px 0;
    background: #1c1c1c;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-section {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

    .contact-form-section h2 {
        color: #F0B900;
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }

.form-subtitle {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        color: #e8e8e8;
        margin-bottom: 0.5rem;
        font-weight: 500;
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 10px;
        color: #ffffff;
        font-size: 1rem;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #F0B900;
            background: rgba(240, 185, 0, 0.05);
            box-shadow: 0 0 0 2px rgba(240, 185, 0, 0.1);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #F0B900, #dba600);
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

    .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(240, 185, 0, 0.5);
    }

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-arrow {
    transform: translateX(5px);
}

/* Director Profile */
.director-profile {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.director-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(240, 185, 0, 0.3);
}

.profile-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d2d2d, #3d3d3d);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fallback-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px rgba(240, 185, 0, 0.3));
}

.director-content {
    text-align: center;
}

    .director-content h3 {
        color: #F0B900;
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }

.director-title {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.director-bio p {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
}

.director-qualifications {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.qualification {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ccc;
    font-size: 0.9rem;
}

.qual-icon {
    font-size: 1.2rem;
}

/* Contact Details */
.contact-details {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

    .contact-details h4 {
        color: #F0B900;
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
    filter: drop-shadow(0 0 5px rgba(240, 185, 0, 0.3));
}

.contact-text strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.contact-text p {
    color: #ccc;
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.contact-text em {
    color: #F0B900;
    font-style: normal;
    font-size: 0.8rem;
}

/* Quick Actions */
.quick-actions h4 {
    color: #F0B900;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .action-btn:hover {
        transform: translateY(-3px);
        background: rgba(255,255,255,0.1);
    }

.whatsapp-btn:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.call-btn:hover {
    border-color: #F0B900;
    background: rgba(240, 185, 0, 0.1);
}

.email-btn:hover {
    border-color: #EA4335;
    background: rgba(234, 67, 53, 0.1);
}

.action-icon {
    font-size: 1.3rem;
}

/* Map Section */
/* Address Carousel */
.address-carousel {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.carousel-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 1.5rem;
}

    .carousel-header h5 {
        color: #F0B900;
        font-size: 1.2rem;
        margin: 0;
        font-weight: 600;
    }

.carousel-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-prev,
.carousel-next {
    background: rgba(240, 185, 0, 0.1);
    border: 1px solid rgba(240, 185, 0, 0.3);
    border-radius: 8px;
    color: #F0B900;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

    .carousel-prev:hover,
    .carousel-next:hover {
        background: rgba(240, 185, 0, 0.2);
        transform: scale(1.1);
    }

.carousel-counter {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

.carousel-track {
    position: relative;
    min-height: 120px;
    overflow: hidden;
}

.address-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    pointer-events: none;
}

    .address-slide.active {
        opacity: 1;
        transform: translateX(0);
        pointer-events: all;
    }

.office-badge {
    background: rgba(240, 185, 0, 0.2);
    color: #F0B900;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(240, 185, 0, 0.3);
    margin-top: 0.5rem;
    display: inline-block;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .indicator.active {
        background: #F0B900;
        transform: scale(1.2);
    }

    .indicator:hover {
        background: #F0B900;
        transform: scale(1.1);
    }

/* Updated Map Section */
.current-location {
    margin-top: 1rem;
    text-align: center;
}

#currentOffice {
    color: #F0B900;
    font-weight: 600;
    font-size: 0.9rem;
}

.map-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* Business Hours */
.business-hours {
    padding: 80px 0;
    background: #1c1c1c;
}

.hours-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

    .hours-content h2 {
        font-size: 2.5rem;
        color: #ffffff;
        margin-bottom: 3rem;
        background: linear-gradient(135deg, #ffffff 0%, #F0B900 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.hours-item {
    background: rgba(255,255,255,0.05);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

    .hours-item:hover {
        background: rgba(240, 185, 0, 0.05);
        border-color: rgba(240, 185, 0, 0.2);
        transform: translateY(-5px);
    }

.day {
    color: #F0B900;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.time {
    color: #e8e8e8;
    font-size: 1rem;
}

/* Contact CTA */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

    .contact-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 80%, rgba(240, 185, 0, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(240, 185, 0, 0.05) 0%, transparent 50%);
        animation: ctaFloat 6s ease-in-out infinite;
    }

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

    .cta-content h2 {
        font-size: 3rem;
        color: #ffffff;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #ffffff 0%, #F0B900 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .cta-content p {
        font-size: 1.2rem;
        color: #e8e8e8;
        margin-bottom: 3rem;
        line-height: 1.6;
    }

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-section,
    .director-profile,
    .contact-details {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-gold, .btn-outline-light {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
/* Enhanced Form Styles */
.form-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-email, .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-email {
    background: linear-gradient(135deg, #F0B900, #dba600);
    color: #000;
}

.btn-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(240, 185, 0, 0.4);
}

.btn-whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border: 2px solid rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    background: rgba(37, 211, 102, 0.2);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.form-note {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(240, 185, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(240, 185, 0, 0.2);
}

.form-note p {
    color: #F0B900;
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
}

/* Mobile responsive for form actions */
@media (max-width: 768px) {
    .form-actions {
        grid-template-columns: 1fr;
    }
}
/* ======================================
   DOPE ABOUT PAGE STYLES
   Building Excellence Since 2005
====================================== */

/* About Hero */
.about-hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    overflow: hidden;
    text-align: center;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(240, 185, 0, 0.2) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(240, 185, 0, 0.15) 0%, transparent 50%);
    animation: heroFloat 8s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

.about-hero-content h1 {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #F0B900 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: titleShimmer 6s ease-in-out infinite;
}

.about-hero-content .lead {
    font-size: 1.3rem;
    color: #e8e8e8;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #F0B900;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(240, 185, 0, 0.5);
}

.stat-label {
    color: #ccc;
    font-size: 1rem;
    font-weight: 500;
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background: #1c1c1c;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #F0B900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-timeline {
    position: relative;
}

    .story-timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, #F0B900, transparent);
    }

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    min-width: 100px;
    font-weight: 700;
    color: #F0B900;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(240, 185, 0, 0.3);
}

.timeline-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image {
    width: 100%;
    max-width: 400px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #2d2d2d, #3d3d3d);
    border: 2px solid rgba(240, 185, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fallback-icons {
    text-align: center;
}

    .fallback-icons span {
        font-size: 4rem;
        display: block;
        margin-bottom: 1rem;
        filter: drop-shadow(0 0 10px rgba(240, 185, 0, 0.5));
    }

.fallback-text {
    color: #F0B900;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

/* Leadership Section */
.leadership-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-header h2 {
        font-size: 2.5rem;
        color: #ffffff;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #ffffff 0%, #F0B900 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-header p {
        color: #ccc;
        font-size: 1.1rem;
    }

.leader-profile {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    text-align: center;
}

.leader-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 4px solid rgba(240, 185, 0, 0.3);
}

    .leader-image .profile-fallback {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #2d2d2d, #3d3d3d);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .leader-image .fallback-icon {
        font-size: 4rem;
        filter: drop-shadow(0 0 15px rgba(240, 185, 0, 0.5));
    }

.leader-content h3 {
    color: #F0B900;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.leader-title {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.leader-bio p {
    color: #e8e8e8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: left;
}

.leader-qualifications {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.qualification {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ccc;
    font-size: 1rem;
    justify-content: center;
}

.qual-icon {
    font-size: 1.3rem;
}

/* Mission & Values */
.mission-values {
    padding: 100px 0;
    background: #1c1c1c;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.mission-content h2,
.values-content h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #F0B900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-statement,
.vision-statement {
    margin-bottom: 2.5rem;
}

    .mission-statement h4,
    .vision-statement h4 {
        color: #F0B900;
        font-size: 1.3rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .mission-statement p,
    .vision-statement p {
        color: #e8e8e8;
        line-height: 1.7;
        margin: 0;
    }

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.value-item {
    background: rgba(255,255,255,0.05);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

    .value-item:hover {
        transform: translateY(-5px);
        background: rgba(240, 185, 0, 0.05);
        border-color: rgba(240, 185, 0, 0.3);
    }

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.value-item h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.value-item p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

/* Certifications Section */
.certifications-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.certification-item {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .certification-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(240, 185, 0, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .certification-item:hover::before {
        left: 100%;
    }

    .certification-item:hover {
        transform: translateY(-5px);
        border-color: rgba(240, 185, 0, 0.3);
    }

.cert-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.certification-item h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.certification-item p {
    color: #ccc;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cert-badge {
    background: rgba(240, 185, 0, 0.2);
    color: #F0B900;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(240, 185, 0, 0.3);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #1c1c1c;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

    .team-member:hover {
        transform: translateY(-8px);
        background: rgba(240, 185, 0, 0.05);
        border-color: rgba(240, 185, 0, 0.3);
    }

.member-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(240, 185, 0, 0.3);
}

    .member-image .profile-fallback {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #2d2d2d, #3d3d3d);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .member-image .fallback-icon {
        font-size: 2.5rem;
    }

.member-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.member-role {
    color: #F0B900;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.member-bio {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Community Impact */
.community-impact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.impact-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #F0B900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-content p {
    color: #e8e8e8;
    line-height: 1.7;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.impact-initiatives {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.initiative {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

    .initiative:hover {
        background: rgba(240, 185, 0, 0.05);
        border-color: rgba(240, 185, 0, 0.2);
    }

    .initiative h4 {
        color: #F0B900;
        margin-bottom: 0.8rem;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .initiative p {
        color: #ccc;
        margin: 0;
        line-height: 1.6;
        font-size: 0.9rem;
    }

.impact-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.impact-stat {
    text-align: center;
    background: rgba(255,255,255,0.05);
    padding: 2rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

    .impact-stat:hover {
        transform: scale(1.05);
        background: rgba(240, 185, 0, 0.1);
        border-color: rgba(240, 185, 0, 0.3);
    }

    .impact-stat .stat-number {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .impact-stat .stat-label {
        color: #ffffff;
        font-size: 0.9rem;
        font-weight: 500;
    }

/* About CTA */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

    .about-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 25% 25%, rgba(240, 185, 0, 0.15) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(240, 185, 0, 0.1) 0%, transparent 50%);
        animation: ctaPulse 8s ease-in-out infinite;
    }

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

    .cta-content h2 {
        font-size: 3rem;
        color: #ffffff;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #ffffff 0%, #F0B900 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .cta-content p {
        font-size: 1.2rem;
        color: #e8e8e8;
        margin-bottom: 3rem;
        line-height: 1.6;
    }

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .story-grid,
    .mission-grid,
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .impact-stats {
        grid-template-columns: 1fr;
    }

    .leader-profile,
    .team-member,
    .certification-item {
        padding: 2rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .about-hero-content h1 {
        font-size: 4.5rem;
    }

    .story-grid,
    .mission-grid,
    .impact-grid {
        gap: 6rem;
    }
}
/* Large screens */
@media (min-width: 1200px) {
    .contact-hero-content h1 {
        font-size: 4.5rem;
    }
}
