/* ========================================
   DANTE WEST DRONE PHOTOGRAPHY
   Cloud Theme with Rainbow Color Palettes
   ======================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, 
        #2c3e50 0%, #34495e 25%, #3498db 50%, #2980b9 75%, #2c3e50 100%);
    background-size: 200% 200%;
    animation: subtle-background 20s ease infinite;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* SUBTLE BACKGROUND ANIMATION */
@keyframes subtle-background {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* SUBTLE OVERLAY */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(52, 152, 219, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
    animation: subtle-pulse 12s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

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

/* ========================================
   FLOATING NEON PARTICLES
   ======================================== */
.party-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    animation: float-particle 8s linear infinite;
}

.particle-1 {
    width: 3px;
    height: 3px;
    background: #3498db;
    left: 15%;
    animation-delay: 0s;
    box-shadow: 0 0 6px #3498db;
}

.particle-2 {
    width: 4px;
    height: 4px;
    background: #2980b9;
    left: 60%;
    animation-delay: -4s;
    box-shadow: 0 0 8px #2980b9;
}

.particle-3 {
    width: 2px;
    height: 2px;
    background: #3498db;
    left: 85%;
    animation-delay: -2s;
    box-shadow: 0 0 4px #3498db;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

/* ========================================
   RAINBOW TEXT EFFECTS
   ======================================== */
.rainbow-text {
    background: linear-gradient(45deg, 
        #ff6b6b, #ffa500, #ffd700, #90ee90, 
        #87ceeb, #6a5acd, #da70d6);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow-flow 3s ease-in-out infinite;
    font-weight: 700;
}

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

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(52, 152, 219, 0.2);
    border-bottom: 2px solid rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.navbar:hover {
    box-shadow: 0 4px 30px rgba(52, 152, 219, 0.4);
    border-bottom: 2px solid rgba(52, 152, 219, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1001;
}

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

.company-logo {
    height: 55px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.company-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(52, 152, 219, 0.4));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.nav-link:hover {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.nav-link.active {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ========================================
   HERO SECTION - FULL WIDTH PHOTO SHOWCASE
   ======================================== */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, 
        rgba(255, 0, 255, 0.2) 0%,
        rgba(0, 255, 255, 0.15) 30%,
        rgba(255, 215, 0, 0.2) 60%,
        rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: hero-energy 12s ease-in-out infinite;
    padding-top: 100px; /* Account for fixed navbar height */
}

@keyframes hero-energy {
    0%, 100% { 
        background: radial-gradient(circle at center, 
            rgba(255, 0, 255, 0.2) 0%,
            rgba(0, 255, 255, 0.15) 30%,
            rgba(255, 215, 0, 0.2) 60%,
            rgba(0, 0, 0, 0.7) 100%);
    }
    33% { 
        background: radial-gradient(circle at center, 
            rgba(0, 255, 255, 0.2) 0%,
            rgba(255, 215, 0, 0.15) 30%,
            rgba(255, 0, 255, 0.2) 60%,
            rgba(0, 0, 0, 0.7) 100%);
    }
    66% { 
        background: radial-gradient(circle at center, 
            rgba(255, 215, 0, 0.2) 0%,
            rgba(255, 0, 255, 0.15) 30%,
            rgba(0, 255, 255, 0.2) 60%,
            rgba(0, 0, 0, 0.7) 100%);
    }
}

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

/* ========================================
   HERO CONTENT OVERLAY
   ======================================== */
.hero-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 15;
    background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    padding: 3rem 0 2rem;
}

.hero-text-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text-centered h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-main {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.faa-badge-main, .pilot-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    color: white;
    font-weight: 600;
}

.faa-badge-main i, .pilot-badge i {
    font-size: 1.5rem;
    color: #3498db;
}

.hero-buttons-main {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-main, .btn-secondary-main {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-main {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-primary-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
}

.btn-secondary-main {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
}

.btn-secondary-main:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-4px);
}

.cloud-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.cloud {
    position: absolute;
    font-size: 3rem;
    opacity: 0.6;
    animation: float-cloud 20s linear infinite, electric-sparkle 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.cloud1 { 
    top: 10%; 
    animation-delay: 0s; 
    color: #3498db;
    text-shadow: 0 0 15px rgba(52, 152, 219, 0.6);
}
.cloud2 { 
    top: 30%; 
    animation-delay: -5s; 
    color: #2980b9;
    text-shadow: 0 0 15px rgba(41, 128, 185, 0.6);
}
.cloud3 { 
    top: 60%; 
    animation-delay: -10s; 
    color: #3498db;
    text-shadow: 0 0 15px rgba(52, 152, 219, 0.6);
}
.cloud4 { 
    top: 20%; 
    animation-delay: -15s; 
    color: #2980b9;
    text-shadow: 0 0 15px rgba(41, 128, 185, 0.6);
}

@keyframes electric-sparkle {
    0%, 100% { 
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8)) brightness(1);
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1)) brightness(1.3);
        transform: scale(1.1);
    }
}

@keyframes float-cloud {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(calc(100vw + 100px)); }
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    font-weight: 300;
}

.faa-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(52, 152, 219, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 2px solid rgba(52, 152, 219, 0.3);
    width: fit-content;
}

.faa-badge i {
    color: #3498db;
    font-size: 1.2rem;
}

.faa-badge span {
    font-weight: 600;
    color: #2c3e50;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    background: linear-gradient(45deg, #2980b9, #1f5582);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    border: 2px solid rgba(78, 205, 196, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: #4ecdc4;
    transform: translateY(-3px);
}

/* ========================================
   FULL-WIDTH PHOTO CASCADE SYSTEM
   ======================================== */
.hero-photo-showcase {
    position: absolute;
    top: 80px; /* Add space for fixed navigation */
    left: 0;
    width: 100%;
    height: calc(100% - 80px); /* Adjust height to account for top offset */
    z-index: 1;
}

.photo-cascade-fullwidth {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo-container-main {
    position: relative;
    width: 800px;
    height: 600px;
    perspective: 1500px;
}

.cascade-photo-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(-200px) rotateX(25deg) rotateY(5deg);
    width: 600px;
    height: 480px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(52, 152, 219, 0.3);
    opacity: 0;
    animation: photoDropCascadeMain 15s infinite;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95), 
        rgba(240, 248, 255, 0.9));
    backdrop-filter: blur(15px);
    border: 3px solid rgba(52, 152, 219, 0.4);
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.cascade-photo-main:nth-child(1) { animation-delay: 0s; }
.cascade-photo-main:nth-child(2) { animation-delay: 3s; }
.cascade-photo-main:nth-child(3) { animation-delay: 6s; }
.cascade-photo-main:nth-child(4) { animation-delay: 9s; }
.cascade-photo-main:nth-child(5) { animation-delay: 12s; }

.photo-placeholder-main {
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #555;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    border-radius: 20px 20px 0 0;
}

.cascade-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    display: block;
}

.photo-placeholder-main i {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: #3498db;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

.photo-placeholder-main span {
    line-height: 1.3;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.photo-caption {
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, 
        rgba(44, 62, 80, 0.9) 0%, 
        rgba(52, 152, 219, 0.9) 100%);
    color: white;
    padding: 1rem;
    border-radius: 0 0 20px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(255, 255, 255, 0.4);
}

.photo-caption h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.3rem 0;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.photo-caption p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.95;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    font-weight: 500;
}

@keyframes photoDropCascadeMain {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(-300px) rotateX(30deg) rotateY(10deg) scale(0.7);
        z-index: 1;
    }
    10% {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0px) rotateX(0deg) rotateY(0deg) scale(1);
        z-index: 10;
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0px) rotateX(0deg) rotateY(0deg) scale(1);
        z-index: 10;
    }
    25% {
        opacity: 0.9;
        transform: translate(-50%, -50%) translateY(20px) rotateX(-5deg) rotateY(-2deg) scale(0.98);
        z-index: 9;
    }
    30% {
        opacity: 0.8;
        transform: translate(-50%, -50%) translateY(40px) rotateX(-10deg) rotateY(-4deg) scale(0.96);
        z-index: 8;
    }
    35% {
        opacity: 0.7;
        transform: translate(-50%, -50%) translateY(60px) rotateX(-15deg) rotateY(-6deg) scale(0.94);
        z-index: 7;
    }
    40% {
        opacity: 0.6;
        transform: translate(-50%, -50%) translateY(80px) rotateX(-20deg) rotateY(-8deg) scale(0.92);
        z-index: 6;
    }
    45% {
        opacity: 0.4;
        transform: translate(-50%, -50%) translateY(100px) rotateX(-25deg) rotateY(-10deg) scale(0.90);
        z-index: 5;
    }
    50% {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(500px) rotateX(-30deg) rotateY(-15deg) scale(0.8);
        z-index: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(500px) rotateX(-30deg) rotateY(-15deg) scale(0.8);
        z-index: 1;
    }
}

@keyframes flight-trail {
    0% { opacity: 0.3; transform: translateX(-50%) scaleX(0.5); }
    50% { opacity: 1; transform: translateX(-50%) scaleX(1.2); }
    100% { opacity: 0.3; transform: translateX(-50%) scaleX(0.5); }
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 300;
}

/* ========================================
   ABOUT SECTION (Homepage)
   ======================================== */
.about {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.certifications {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    border-left: 4px solid #3498db;
    backdrop-filter: blur(10px);
}

.cert-item i {
    font-size: 1.5rem;
    color: #3498db;
}

.cert-item h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.cert-item p {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
}

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

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item.red { background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 107, 107, 0.1)); }
.stat-item.orange { background: linear-gradient(135deg, rgba(255, 165, 0, 0.2), rgba(255, 165, 0, 0.1)); }
.stat-item.yellow { background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1)); }
.stat-item.green { background: linear-gradient(135deg, rgba(144, 238, 144, 0.2), rgba(144, 238, 144, 0.1)); }

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.stat-item p {
    color: #5a6c7d;
    font-weight: 500;
}

/* ========================================
   SERVICES PREVIEW SECTION (Homepage)
   ======================================== */
.services-preview {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
}

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-preview-card {
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0.6;
}

.service-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-preview-card .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.service-preview-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.service-preview-card p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-preview-card .service-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

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

/* ========================================
   SERVICES SECTION (Full Services Page)
   ======================================== */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(240, 248, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.9) 100%);
}

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

.service-card {
    padding: 2.5rem;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0.6;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ========================================
   PROFESSIONAL SERVICE CARD THEMES
   ======================================== */

/* Wedding Photography - Romantic Rose Gold & Soft Pink */
.red-theme { 
    background: linear-gradient(135deg, 
        rgba(255, 182, 193, 0.25) 0%,
        rgba(255, 218, 185, 0.15) 50%,
        rgba(255, 240, 245, 0.1) 100%);
    border: 2px solid rgba(255, 105, 135, 0.2);
    box-shadow: 0 8px 32px rgba(255, 105, 135, 0.15);
    position: relative;
    overflow: hidden;
}

.red-theme::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFB6C1, #FFC0CB, #FFD700, #FFCCCB);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.3;
}

.red-theme .service-icon {
    color: #C44569;
    text-shadow: 0 2px 8px rgba(196, 69, 105, 0.3);
    animation: romantic-glow 3s ease-in-out infinite alternate;
}

.red-theme h3 {
    color: #8B3A62;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(139, 58, 98, 0.2);
}

.red-theme .service-price {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.8), rgba(255, 218, 185, 0.6));
    color: #8B3A62;
    border: 2px solid rgba(255, 105, 135, 0.3);
    font-weight: 800;
}

.red-theme .btn-primary {
    background: linear-gradient(45deg, #C44569, #F8BBD9);
    border: none;
    box-shadow: 0 4px 15px rgba(196, 69, 105, 0.4);
}

/* Real Estate - Professional Deep Blue & Silver */
.orange-theme { 
    background: linear-gradient(135deg, 
        rgba(70, 130, 180, 0.2) 0%,
        rgba(100, 149, 237, 0.15) 50%,
        rgba(176, 196, 222, 0.1) 100%);
    border: 2px solid rgba(70, 130, 180, 0.3);
    box-shadow: 0 8px 32px rgba(70, 130, 180, 0.2);
    position: relative;
}

.orange-theme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4682B4, #6495ED, #B0C4DE);
}

.orange-theme .service-icon {
    color: #2F4F4F;
    background: linear-gradient(135deg, rgba(70, 130, 180, 0.1), transparent);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(70, 130, 180, 0.2);
}

.orange-theme h3 {
    color: #2F4F4F;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.orange-theme .service-price {
    background: linear-gradient(135deg, rgba(70, 130, 180, 0.9), rgba(100, 149, 237, 0.8));
    color: white;
    border: none;
    font-weight: 800;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.orange-theme .btn-primary {
    background: linear-gradient(45deg, #4682B4, #6495ED);
    border: none;
    box-shadow: 0 4px 15px rgba(70, 130, 180, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Commercial Properties - Industrial Steel & Corporate */
.yellow-theme { 
    background: linear-gradient(135deg, 
        rgba(105, 105, 105, 0.15) 0%,
        rgba(169, 169, 169, 0.1) 50%,
        rgba(211, 211, 211, 0.05) 100%);
    border: 2px solid rgba(105, 105, 105, 0.2);
    box-shadow: 0 8px 32px rgba(105, 105, 105, 0.15);
    position: relative;
}

.yellow-theme::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #696969, #A9A9A9);
    border-radius: 3px;
    opacity: 0.1;
}

.yellow-theme .service-icon {
    color: #2F4F4F;
    background: linear-gradient(135deg, rgba(105, 105, 105, 0.1), transparent);
    width: 90px;
    height: 90px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(105, 105, 105, 0.2);
    position: relative;
}

.yellow-theme .service-icon::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(105, 105, 105, 0.1);
    border-radius: 8px;
}

.yellow-theme h3 {
    color: #2F4F4F;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.3rem;
}

.yellow-theme .service-price {
    background: linear-gradient(135deg, rgba(105, 105, 105, 0.9), rgba(169, 169, 169, 0.8));
    color: white;
    border: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.yellow-theme .btn-primary {
    background: linear-gradient(45deg, #696969, #A9A9A9);
    border: none;
    box-shadow: 0 4px 15px rgba(105, 105, 105, 0.4);
    text-transform: uppercase;
    font-weight: 700;
}

/* Special Events - Vibrant Purple & Magenta Energy */
.green-theme { 
    background: linear-gradient(135deg, 
        rgba(186, 85, 211, 0.2) 0%,
        rgba(147, 112, 219, 0.15) 50%,
        rgba(221, 160, 221, 0.1) 100%);
    border: 2px solid rgba(186, 85, 211, 0.3);
    box-shadow: 0 8px 32px rgba(186, 85, 211, 0.2);
    position: relative;
    overflow: hidden;
}

.green-theme::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle at center, rgba(186, 85, 211, 0.1) 0%, transparent 70%);
    animation: event-energy 4s ease-in-out infinite;
}

.green-theme .service-icon {
    color: #8B008B;
    animation: bounce-glow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(139, 0, 139, 0.3));
}

.green-theme h3 {
    color: #8B008B;
    font-weight: 700;
    background: linear-gradient(45deg, #8B008B, #BA55D3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.green-theme .service-price {
    background: linear-gradient(135deg, rgba(186, 85, 211, 0.9), rgba(147, 112, 219, 0.8));
    color: white;
    border: 2px solid rgba(186, 85, 211, 0.4);
    font-weight: 800;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    animation: price-pulse 3s ease-in-out infinite;
}

.green-theme .btn-primary {
    background: linear-gradient(45deg, #BA55D3, #9370DB);
    border: none;
    box-shadow: 0 4px 15px rgba(186, 85, 211, 0.4);
    animation: button-glow 2s ease-in-out infinite alternate;
}

/* Aerial Videography - Cinematic Deep Teal & Film */
.blue-theme { 
    background: linear-gradient(135deg, 
        rgba(0, 128, 128, 0.2) 0%,
        rgba(72, 209, 204, 0.15) 50%,
        rgba(175, 238, 238, 0.1) 100%);
    border: 2px solid rgba(0, 128, 128, 0.3);
    box-shadow: 0 8px 32px rgba(0, 128, 128, 0.2);
    position: relative;
}

.blue-theme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 128, 128, 0.05) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(0, 128, 128, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

.blue-theme .service-icon {
    color: #008B8B;
    background: radial-gradient(circle, rgba(0, 128, 128, 0.1), transparent);
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(0, 128, 128, 0.2);
    position: relative;
    animation: cinematic-spin 8s linear infinite;
}

.blue-theme .service-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 1px solid rgba(0, 128, 128, 0.1);
    border-radius: 50%;
}

.blue-theme h3 {
    color: #008B8B;
    font-weight: 700;
    font-family: 'Poppins', serif;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 139, 139, 0.2);
}

.blue-theme .service-price {
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.9), rgba(72, 209, 204, 0.8));
    color: white;
    border: none;
    font-weight: 800;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', monospace;
    letter-spacing: 1px;
}

.blue-theme .btn-primary {
    background: linear-gradient(45deg, #008080, #48D1CC);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Site Surveys & Mapping - Technical Precision Green & Earth */
.purple-theme { 
    background: linear-gradient(135deg, 
        rgba(34, 139, 34, 0.2) 0%,
        rgba(107, 142, 35, 0.15) 50%,
        rgba(154, 205, 50, 0.1) 100%);
    border: 2px solid rgba(34, 139, 34, 0.3);
    box-shadow: 0 8px 32px rgba(34, 139, 34, 0.15);
    position: relative;
}

.purple-theme::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(34, 139, 34, 0.2) 30%, rgba(34, 139, 34, 0.2) 70%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(34, 139, 34, 0.2) 30%, rgba(34, 139, 34, 0.2) 70%, transparent 70%);
}

.purple-theme .service-icon {
    color: #228B22;
    background: 
        linear-gradient(135deg, rgba(34, 139, 34, 0.1), transparent),
        radial-gradient(circle at 30% 30%, rgba(34, 139, 34, 0.05), transparent);
    width: 85px;
    height: 85px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(34, 139, 34, 0.2);
    position: relative;
}

.purple-theme .service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    transform: translate(-50%, -50%) rotate(45deg);
    border: 1px solid rgba(34, 139, 34, 0.1);
}

.purple-theme h3 {
    color: #228B22;
    font-weight: 700;
    font-family: 'Poppins', monospace;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 1.3rem;
}

.purple-theme .service-price {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.9), rgba(107, 142, 35, 0.8));
    color: white;
    border: 2px solid rgba(34, 139, 34, 0.3);
    font-weight: 800;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', monospace;
    letter-spacing: 1px;
}

.purple-theme .btn-primary {
    background: linear-gradient(45deg, #228B22, #6B8E23);
    border: none;
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.4);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ========================================
   PROFESSIONAL CARD ANIMATIONS
   ======================================== */
@keyframes romantic-glow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(255, 105, 135, 0.3)); }
    50% { filter: drop-shadow(0 0 15px rgba(255, 105, 135, 0.5)); }
}

@keyframes event-energy {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

@keyframes bounce-glow {
    0%, 100% { transform: translateY(0) scale(1); filter: brightness(1); }
    50% { transform: translateY(-5px) scale(1.05); filter: brightness(1.2); }
}

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

@keyframes button-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(186, 85, 211, 0.4); }
    50% { box-shadow: 0 6px 25px rgba(186, 85, 211, 0.6); }
}

@keyframes cinematic-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   ENHANCED CALL TO ACTION CARD
   ======================================== */
.contact-card-enhanced {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 0;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(255, 107, 107, 0.3), 
        rgba(78, 205, 196, 0.3), 
        rgba(255, 107, 107, 0.3));
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card-enhanced:hover .card-glow {
    opacity: 1;
}

.card-content {
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ff5252 0%, #26c6da 100%);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(78, 205, 196, 0.2);
    backdrop-filter: blur(10px);
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn-cta-secondary:hover {
    transform: translateY(-2px);
    background: rgba(78, 205, 196, 0.1);
    border-color: #4ecdc4;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.2);
}

.credentials-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.credential-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #5a6c7d;
    font-weight: 500;
}

.credential-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
}

.blue-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.green-icon {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.orange-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

/* Mobile responsiveness for enhanced CTA card */
@media (max-width: 768px) {
    .card-content {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .credentials-section {
        gap: 0.8rem;
    }
    
    .credential-item {
        font-size: 0.9rem;
    }
    
    .credential-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.service-card p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: #5a6c7d;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */
.portfolio {
    padding: 6rem 0;
    background: rgba(248, 249, 250, 0.8);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    color: #5a6c7d;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    transform: translateY(-2px);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    text-align: center;
    position: relative;
}

.wedding-placeholder { background: linear-gradient(135deg, #ff6b6b, #ff8e8e); }
.realestate-placeholder { background: linear-gradient(135deg, #4ecdc4, #6dd5d1); }
.commercial-placeholder { background: linear-gradient(135deg, #45b7d1, #6cc7d9); }
.event-placeholder { background: linear-gradient(135deg, #f39c12, #f5ab35); }

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.portfolio-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ========================================
   PAGE HEADER (for individual pages)
   ======================================== */
.page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.1) 0%,
        rgba(255, 165, 0, 0.1) 14%,
        rgba(255, 215, 0, 0.1) 28%,
        rgba(144, 238, 144, 0.1) 42%,
        rgba(135, 206, 235, 0.1) 57%,
        rgba(106, 90, 205, 0.1) 71%,
        rgba(218, 112, 214, 0.1) 85%,
        rgba(255, 107, 107, 0.1) 100%);
    background-size: 400% 400%;
    animation: rainbow-bg 8s ease infinite;
    position: relative;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Removed duplicate - handled above */

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.05) 0%,
        rgba(78, 205, 196, 0.05) 100%);
}

.contact-main {
    padding: 2rem 0 6rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #5a6c7d;
    font-size: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: #5a6c7d;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.8rem;
    transform: scale(1.2);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: 1rem;
    font-style: italic;
}

.contact-link {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #2980b9;
}

.contact-item small {
    display: block;
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 0.3rem;
}

/* ========================================
   CONTACT CTA SECTION
   ======================================== */
.contact-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(240, 248, 255, 0.9) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Original contact section for single-page (keeping for compatibility) */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2rem;
    color: #3498db;
    min-width: 40px;
}

.contact-item h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: #5a6c7d;
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(52, 152, 219, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    background: white;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(44, 62, 80, 0.95) 50%, 
        rgba(0, 0, 0, 0.9) 100%);
    color: white;
    padding: 3rem 0 1rem;
    backdrop-filter: blur(20px);
    border-top: 3px solid;
    border-image: linear-gradient(90deg, #ff00ff, #00ffff, #ffd700, #ff4757) 1;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: footer-glow 6s ease-in-out infinite;
}

@keyframes footer-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.bundle-showcase {
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.2), rgba(255, 215, 0, 0.2));
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

.bundle-showcase h4 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.bundle-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.bundle-price-footer {
    color: #ffd700;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 10px 0;
    text-shadow: 0 0 10px rgba(106, 13, 173, 0.5);
}

.bundle-footer-link {
    display: inline-block;
    background: linear-gradient(135deg, #6a0dad, #ffd700);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(106, 13, 173, 0.3);
}

.bundle-footer-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(106, 13, 173, 0.5), 0 0 30px rgba(255, 215, 0, 0.3);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(255, 0, 255, 0.3), rgba(0, 255, 255, 0.3));
    color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.social-links a:hover {
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffd700);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.6),
                0 0 45px rgba(0, 255, 255, 0.4),
                0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.8);
    animation: social-electric 0.6s ease-in-out;
}

@keyframes social-electric {
    0%, 100% { 
        filter: brightness(1); 
    }
    50% { 
        filter: brightness(1.4) saturate(1.3);
        transform: translateY(-5px) scale(1.15);
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(44, 62, 80, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero {
        padding-top: 80px; /* Reduced padding for mobile */
    }
    
    .hero-photo-showcase {
        top: 70px; /* Adjust for mobile navigation height */
        height: calc(100% - 70px);
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-section {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .drone-icon {
        font-size: 5rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    /* About page mobile styles */
    .about-main {
        padding-top: 6rem;
    }
    
    .about-main .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Dante photo mobile styles */
    .dante-photo {
        width: 320px;
        height: 320px;
        max-width: 90vw;
    }
    
    .pilot-info h3 {
        font-size: 1.5rem;
    }
    
    .pilot-info p {
        font-size: 1rem;
    }
    
    .faa-badge-photo {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    /* Services page mobile styles */
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .addon-item {
        padding: 1.5rem 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-options {
        gap: 0.8rem;
    }
    
    /* Portfolio page mobile styles */
    .portfolio-details {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .portfolio-details span {
        font-size: 0.75rem;
    }
    
    /* Full-width photo cascade mobile styles */
    .photo-container-main {
        width: 100%;
        max-width: 500px;
        height: 400px;
    }
    
    .cascade-photo-main {
        width: 400px;
        height: 360px;
        max-width: 90vw;
    }
    
    .photo-placeholder-main {
        height: 280px;
    }
    
    .photo-caption {
        height: 80px;
        padding: 0.8rem;
    }
    
    .photo-caption h3 {
        font-size: 1rem;
    }
    
    .photo-caption p {
        font-size: 0.8rem;
    }
    
    .photo-placeholder-main i {
        font-size: 3rem;
    }
    
    .photo-placeholder-main span {
        font-size: 1rem;
    }
    
    /* Hero content overlay mobile */
    .hero-text-centered h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-main {
        font-size: 1.2rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .faa-badge-main, .pilot-badge {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons-main {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary-main, .btn-secondary-main {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 70px; /* Further reduced padding for small mobile */
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .portfolio-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Additional mobile styles for smaller screens */
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    /* Full-width photo cascade small mobile styles */
    .photo-container-main {
        width: 100%;
        max-width: 350px;
        height: 300px;
    }
    
    .cascade-photo-main {
        width: 320px;
        height: 300px;
        max-width: 85vw;
    }
    
    .photo-placeholder-main {
        height: 220px;
    }
    
    .photo-caption {
        height: 80px;
        padding: 0.7rem;
    }
    
    .photo-caption h3 {
        font-size: 0.9rem;
    }
    
    .photo-caption p {
        font-size: 0.75rem;
    }
    
    .photo-placeholder-main i {
        font-size: 2.5rem;
    }
    
    .photo-placeholder-main span {
        font-size: 0.9rem;
    }
    
    /* Hero content overlay small mobile */
    .hero-text-centered h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle-main {
        font-size: 1rem;
    }
    
    .hero-content-overlay {
        padding: 2rem 0 1.5rem;
    }
    
    .hero-text-centered {
        padding: 0 1rem;
    }
    
    .faa-badge-main, .pilot-badge {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
    
    .btn-primary-main, .btn-secondary-main {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        width: 180px;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-section {
        padding: 1.5rem 1rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .equipment-item,
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    /* Dante photo small mobile styles */
    .dante-photo {
        width: 280px;
        height: 280px;
        max-width: 85vw;
    }
    
    .pilot-info h3 {
        font-size: 1.3rem;
    }
    
    .pilot-info p {
        font-size: 0.9rem;
    }
    
    .faa-badge-photo {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .rainbow-text {
        -webkit-text-fill-color: initial;
        color: #000;
    }
    
    .btn-primary {
        background: #000;
        color: #fff;
        border: 2px solid #fff;
    }
}

/* ========================================
   ABOUT PAGE SPECIFIC STYLES
   ======================================== */
.about-main {
    padding: 8rem 0 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
}

/* ========================================
   DANTE PHOTO SECTION
   ======================================== */
.about-photo-section {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.dante-photo {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.dante-photo:hover {
    transform: translateY(-5px);
}

.dante-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dante-photo:hover .dante-portrait {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    text-align: center;
}

.pilot-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: white;
}

.pilot-info p {
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    opacity: 0.9;
    font-weight: 400;
}

.faa-badge-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    font-weight: 600;
    font-size: 0.9rem;
}

.faa-badge-photo i {
    color: #3498db;
    font-size: 1.2rem;
}

.about-intro .lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-story {
    margin: 3rem 0;
}

.about-story h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-story p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.experience-highlights {
    margin-top: 3rem;
}

.experience-highlights h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.highlight-item h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.highlight-item p {
    color: #5a6c7d;
    font-size: 0.95rem;
    margin: 0;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.certifications h3,
.stats-showcase h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cert-item small {
    display: block;
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 0.3rem;
}

/* ========================================
   EQUIPMENT SECTION
   ======================================== */
.equipment-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(240, 248, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.9) 100%);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.equipment-item {
    padding: 2.5rem;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.equipment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0.6;
}

.equipment-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.equipment-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.equipment-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.equipment-item p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
}

.equipment-item ul {
    list-style: none;
    padding: 0;
}

.equipment-item ul li {
    color: #5a6c7d;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* ========================================
   VALUES SECTION
   ======================================== */
.values-section {
    padding: 3rem 0;
    background: rgba(248, 249, 250, 0.8);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.value-icon.red { background: linear-gradient(135deg, #ff6b6b, #ff8e8e); }
.value-icon.orange { background: linear-gradient(135deg, #ffa500, #ffb347); }
.value-icon.yellow { background: linear-gradient(135deg, #ffd700, #ffed4e); }
.value-icon.green { background: linear-gradient(135deg, #90ee90, #98fb98); }

.value-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================
   ABOUT CTA SECTION
   ======================================== */
.about-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.1) 0%,
        rgba(78, 205, 196, 0.1) 100%);
    text-align: center;
}

.about-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-cta .cta-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

/* ========================================
   SERVICES PAGE SPECIFIC STYLES
   ======================================== */
.services-main {
    padding: 8rem 0 6rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    margin-top: 0;
}

.service-details {
    margin-top: 2rem;
    text-align: center;
}

.service-duration {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0.5rem 0 1.5rem;
    font-style: italic;
}

/* ========================================
   ADD-ONS SECTION
   ======================================== */
.addons-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(240, 248, 255, 0.9) 100%);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.addon-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.addon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.addon-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.addon-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.addon-item p {
    color: #5a6c7d;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.addon-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    display: inline-block;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process-section {
    padding: 6rem 0;
    background: rgba(248, 249, 250, 0.8);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step-number.red { background: linear-gradient(135deg, #ff6b6b, #ff8e8e); }
.step-number.orange { background: linear-gradient(135deg, #ffa500, #ffb347); }
.step-number.yellow { background: linear-gradient(135deg, #ffd700, #ffed4e); }
.step-number.green { background: linear-gradient(135deg, #90ee90, #98fb98); }
.step-number.blue { background: linear-gradient(135deg, #87ceeb, #add8e6); }

.process-step h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================
   PAYMENT METHODS SECTION
   ======================================== */
.payment-methods {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.payment-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.payment-card i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payment-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #fff;
    font-weight: 600;
}

.payment-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.payment-card .badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.5);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #a8b3ff;
    font-weight: 500;
}

/* ========================================
   PAY INVOICE SECTION - ENHANCED
   ======================================== */
.pay-invoice-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.15) 0%,
        rgba(255, 165, 0, 0.15) 25%,
        rgba(255, 215, 0, 0.15) 50%,
        rgba(144, 238, 144, 0.15) 75%,
        rgba(135, 206, 235, 0.15) 100%);
    background-size: 400% 400%;
    animation: rainbow-flow 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.pay-invoice-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, 
        rgba(102, 126, 234, 0.2) 0%, 
        transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
    pointer-events: none;
}

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

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.invoice-payment-box {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3.5rem;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(102, 126, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    animation: float-box 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes float-box {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.invoice-payment-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, 
        #ff6b6b 0%, 
        #ffa500 25%, 
        #ffd700 50%, 
        #90ee90 75%, 
        #87ceeb 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    animation: rainbow-text 8s ease infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

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

.invoice-payment-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.15rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.3rem;
    margin: 2rem 0;
    display: inline-block;
    border-radius: 50px;
    font-weight: 700;
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 50%, 
        #667eea 100%);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 10px 30px rgba(102, 126, 234, 0.4),
        0 0 20px rgba(118, 75, 162, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: shimmer 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

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

.btn-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.btn-large:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 
        0 20px 50px rgba(102, 126, 234, 0.6),
        0 0 40px rgba(118, 75, 162, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-large:active {
    transform: translateY(-4px) scale(1.05);
}

.btn-large i {
    margin-right: 10px;
    animation: pulse-icon 2s ease-in-out infinite;
}

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

.help-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.5rem;
    font-style: italic;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: fade-in-out 4s ease-in-out infinite;
}

@keyframes fade-in-out {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Mobile Responsive for Payment Sections */
@media (max-width: 768px) {
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .payment-methods {
        padding: 4rem 0;
    }
    
    .payment-card {
        padding: 2rem 1.5rem;
    }
    
    .invoice-payment-box {
        padding: 2.5rem 1.5rem;
    }
    
    .invoice-payment-box h2 {
        font-size: 1.8rem;
    }
    
    .btn-large {
        padding: 15px 35px;
        font-size: 1.1rem;
        width: 100%;
    }
}

/* ========================================
   PRICING INFO SECTION
   ======================================== */
.pricing-info {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.05) 0%,
        rgba(78, 205, 196, 0.05) 100%);
}

.pricing-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.pricing-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.pricing-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.pricing-includes {
    list-style: none;
    padding: 0;
}

.pricing-includes li {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 2rem;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-card p {
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-options .btn {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-info {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(52, 152, 219, 0.2);
}

.quick-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #5a6c7d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.quick-info i {
    color: #3498db;
}

/* ========================================
   PORTFOLIO PAGE SPECIFIC STYLES
   ======================================== */
.portfolio-main {
    padding: 2rem 0 6rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
}

.portfolio-details {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.portfolio-details span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.video-placeholder {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.portfolio-item .placeholder-image i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.portfolio-item .placeholder-image h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* ========================================
   PORTFOLIO CTA SECTION
   ======================================== */
.portfolio-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.1) 0%,
        rgba(78, 205, 196, 0.1) 100%);
    text-align: center;
}

.portfolio-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.portfolio-cta .cta-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

/* ========================================
   CONTACT HERO SECTION
   ======================================== */
.contact-hero {
    padding: 120px 0 60px; /* Reduced bottom padding */
}

.contact-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text-centered {
    margin-bottom: 4rem;
}

.hero-text-centered h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.faa-badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    margin-bottom: 3rem;
}

.faa-badge-hero i {
    color: #ffd700;
    font-size: 1.1rem;
}

/* ========================================
   HERO QUOTE FORM
   ======================================== */
.form-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-intro p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 300;
}

.hero-quote-form {
    max-width: 650px;
    margin: 0 auto;
    padding: 0 20px;
}

.quote-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem 1.8rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.form-section {
    margin-bottom: 1.8rem;
}

.form-section h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: 1px solid #f1f2f6;
    padding-bottom: 0.4rem;
}

.form-section h3 i {
    color: #3498db;
    font-size: 1.1rem;
}

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

.form-group {
    position: relative;
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
    color: #2c3e50;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #95a5a6;
    font-weight: 400;
}

.floating-label {
    position: absolute;
    top: -8px;
    left: 12px;
    background: white;
    padding: 0 8px;
    font-size: 0.85rem;
    color: #7f8c8d;
    font-weight: 500;
}

.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #5a6c7d;
    cursor: pointer;
    padding: 0.5rem 0;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    opacity: 0;
    position: absolute;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #3498db;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: #3498db;
    font-weight: bold;
    font-size: 14px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
    background: linear-gradient(45deg, #2980b9, #3498db);
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #7f8c8d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.form-note a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.form-note a:hover {
    text-decoration: underline;
}


/* ========================================
   RESPONSIVE CONTACT PAGE
   ======================================== */
@media (max-width: 768px) {
    .contact-hero {
        padding-top: 100px;
    }
    
    .hero-text-centered h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-quote-form {
        padding: 0 15px;
    }
    
    .quote-form {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-section h3 {
        font-size: 1.1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem 1rem;
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding-top: 90px;
    }
    
    .hero-text-centered h1 {
        font-size: 2rem;
    }
    
    .hero-text-centered {
        margin-bottom: 2rem;
    }
    
    .quote-form {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }
    
    .form-section {
        margin-bottom: 2rem;
    }
    
    .form-section h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .faa-badge-hero {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   ENHANCED PAGE HERO SECTIONS
   ======================================== */

/* About Page Hero */
.about-hero {
    min-height: 70vh;
    padding-top: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-drone-showcase {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.drone-flight-path {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-drone {
    position: absolute;
    font-size: 2rem;
    opacity: 0.8;
    animation: droneFloat 12s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.drone-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.drone-2 {
    top: 60%;
    right: 15%;
    animation-delay: -4s;
}

.drone-3 {
    bottom: 30%;
    left: 70%;
    animation-delay: -8s;
}

@keyframes droneFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(-20px, -40px) rotate(-3deg);
    }
    75% {
        transform: translate(-40px, -10px) rotate(2deg);
    }
}

.hero-content-about {
    z-index: 2;
    position: relative;
}

.hero-text-about {
    text-align: center;
    color: white;
}

.hero-text-about h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: statCardFloat 6s ease-in-out infinite;
}

.stat-card:nth-child(1) { animation-delay: 0s; }
.stat-card:nth-child(2) { animation-delay: -1.5s; }
.stat-card:nth-child(3) { animation-delay: -3s; }
.stat-card:nth-child(4) { animation-delay: -4.5s; }

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

.stat-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(52, 152, 219, 0.5);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.stat-label {
    font-size: 1rem;
    color: white;
    opacity: 0.9;
}

/* Services Page Hero */
.services-hero {
    min-height: 70vh;
    padding-top: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-services-showcase {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.service-icon-orbit {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-service-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.7;
    animation: serviceOrbit 20s linear infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.icon-1 { animation-delay: 0s; }
.icon-2 { animation-delay: -3.33s; }
.icon-3 { animation-delay: -6.66s; }
.icon-4 { animation-delay: -10s; }
.icon-5 { animation-delay: -13.33s; }
.icon-6 { animation-delay: -16.66s; }

@keyframes serviceOrbit {
    0% {
        transform: rotate(0deg) translateX(200px) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: rotate(360deg) translateX(200px) rotate(-360deg);
        opacity: 0.4;
    }
}

.hero-content-services {
    z-index: 2;
    position: relative;
}

.hero-text-services {
    text-align: center;
    color: white;
}

.hero-text-services h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: highlightFloat 8s ease-in-out infinite;
}

.highlight-item:nth-child(1) { animation-delay: 0s; }
.highlight-item:nth-child(2) { animation-delay: -2s; }
.highlight-item:nth-child(3) { animation-delay: -4s; }
.highlight-item:nth-child(4) { animation-delay: -6s; }

@keyframes highlightFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.highlight-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(52, 152, 219, 0.5);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.highlight-item i {
    font-size: 2rem;
    color: #3498db;
}

.highlight-item span {
    color: white;
    font-weight: 600;
}

/* Contact Page Hero */
.contact-hero {
    min-height: 90vh;
    padding-top: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-contact-showcase {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.contact-elements-orbit {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-contact-element {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.6;
    animation: contactFloat 15s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.element-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.element-2 {
    top: 25%;
    right: 25%;
    animation-delay: -3s;
}

.element-3 {
    bottom: 35%;
    left: 15%;
    animation-delay: -6s;
}

.element-4 {
    bottom: 20%;
    right: 30%;
    animation-delay: -9s;
}

.element-5 {
    top: 50%;
    left: 50%;
    animation-delay: -12s;
}

@keyframes contactFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(20px, -15px) rotate(5deg) scale(1.1);
    }
    50% {
        transform: translate(-15px, -30px) rotate(-3deg) scale(0.9);
    }
    75% {
        transform: translate(-25px, -10px) rotate(4deg) scale(1.05);
    }
}

/* ========================================
   BUNDLE PARTNERSHIP PAGE STYLES - ENHANCED
   ======================================== */

.partnership-hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.partnership-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.15) 0%, transparent 70%);
    animation: rotate-gradient 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate-gradient {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.partnership-announcement {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.badge-new {
    display: inline-block;
    background: linear-gradient(135deg, #ff00ff, #00ffff, #ff00ff);
    background-size: 200% 200%;
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 3px;
    margin-bottom: 25px;
    animation: pulse-badge 2s ease-in-out infinite, gradient-shift 3s ease infinite;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6), 0 0 60px rgba(0, 255, 255, 0.4);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

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

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

.partnership-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(52, 152, 219, 0.8), 0 0 40px rgba(155, 89, 182, 0.6);
    animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% { text-shadow: 0 0 20px rgba(52, 152, 219, 0.8), 0 0 40px rgba(155, 89, 182, 0.6); }
    50% { text-shadow: 0 0 30px rgba(52, 152, 219, 1), 0 0 60px rgba(155, 89, 182, 0.8); }
}

.gradient-text {
    background: linear-gradient(135deg, #00ffff, #ff00ff, #ffff00, #00ff00, #ff0000, #0000ff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-flow 6s ease infinite;
}

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

.partnership-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.partner-card {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.15), rgba(0, 255, 255, 0.15));
    backdrop-filter: blur(15px);
    border: 3px solid transparent;
    background-image: linear-gradient(135deg, rgba(255, 0, 255, 0.15), rgba(0, 255, 255, 0.15)),
                      linear-gradient(135deg, #ff00ff, #00ffff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 25px;
    padding: 40px;
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.partner-card:hover::before {
    animation: card-shine 1.5s ease;
}

@keyframes card-shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.partner-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 0, 255, 0.4), 0 15px 30px rgba(0, 255, 255, 0.3);
}

.partner-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6), 0 0 50px rgba(0, 255, 255, 0.4);
    animation: icon-pulse 3s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { 
        background-position: 0% 50%;
        box-shadow: 0 0 30px rgba(255, 0, 255, 0.6), 0 0 50px rgba(0, 255, 255, 0.4);
    }
    50% { 
        background-position: 100% 50%;
        box-shadow: 0 0 40px rgba(255, 0, 255, 0.8), 0 0 70px rgba(0, 255, 255, 0.6);
    }
}

.partner-card h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
}

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

.partner-features {
    list-style: none;
    padding: 0;
}

.partner-features li {
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    font-size: 0.95rem;
}

.partner-features i {
    color: #27ae60;
    margin-right: 10px;
}

.plus-symbol {
    font-size: 4rem;
    background: linear-gradient(135deg, #ffff00, #ff00ff, #00ffff, #ffff00);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rotate-plus 4s linear infinite, rainbow-flow 4s ease infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 0, 0.8)) drop-shadow(0 0 40px rgba(255, 0, 255, 0.6));
    position: relative;
}

.plus-symbol::before {
    content: '+';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffff00, #ff00ff, #00ffff, #ffff00);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(15px);
    opacity: 0.7;
    animation: rainbow-flow 4s ease infinite reverse;
}

@keyframes rotate-plus {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bundle-price-section {
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.25), rgba(123, 81, 169, 0.25), rgba(106, 13, 173, 0.25));
    background-size: 200% 200%;
    backdrop-filter: blur(20px);
    border: 4px solid #ffd700;
    border-radius: 25px;
    padding: 50px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    animation: price-glow 3s ease-in-out infinite;
    box-shadow: 0 0 50px rgba(106, 13, 173, 0.3), 0 0 80px rgba(255, 215, 0, 0.2);
}

@keyframes price-glow {
    0%, 100% { 
        box-shadow: 0 0 50px rgba(106, 13, 173, 0.3), 0 0 80px rgba(255, 215, 0, 0.2);
    }
    50% { 
        box-shadow: 0 0 70px rgba(106, 13, 173, 0.5), 0 0 100px rgba(255, 215, 0, 0.4);
    }
}

.bundle-price-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: price-shine 3s linear infinite;
    pointer-events: none;
}

@keyframes price-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.price-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 20px;
}

.regular-price, .bundle-price {
    text-align: center;
}

.price-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 10px;
}

.old-price {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.new-price {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #6a0dad, #ffd700, #6a0dad);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: price-rainbow 3s ease infinite;
    filter: drop-shadow(0 0 25px rgba(106, 13, 173, 0.8)) drop-shadow(0 0 50px rgba(255, 215, 0, 0.6));
    position: relative;
    display: inline-block;
}

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

.new-price::before {
    content: '$500';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #6a0dad, #ffd700, #6a0dad);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.6;
    animation: price-rainbow 3s ease infinite reverse;
}

.savings-text {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    animation: savings-pulse 2s ease-in-out infinite;
}

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

.savings-text i {
    color: #ffff00;
    filter: drop-shadow(0 0 10px rgba(255, 255, 0, 0.8));
}

/* ========================================
   WORK SHOWCASE SECTION
   ======================================== */

.work-showcase {
    margin: 100px 0;
    padding: 60px 0;
    position: relative;
}

.showcase-title {
    font-size: 3rem;
    background: linear-gradient(135deg, #ff00ff, #00ffff, #ff00ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-flow 4s ease infinite;
    margin-bottom: 15px;
    text-align: center;
    filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.5));
}

.showcase-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 60px;
}

.showcase-example {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    backdrop-filter: blur(20px);
    border: 4px solid transparent;
    background-image: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1)),
                      linear-gradient(135deg, #ff00ff, #00ffff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(255, 0, 255, 0.3), 0 0 90px rgba(0, 255, 255, 0.2);
}

.showcase-example::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    animation: showcase-shine 4s linear infinite;
    pointer-events: none;
}

@keyframes showcase-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.showcase-left h3 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.showcase-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffff00, #ff00ff);
    background-size: 200% 200%;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    animation: pulse-badge 2s ease-in-out infinite, gradient-shift 3s ease infinite;
    box-shadow: 0 0 25px rgba(255, 255, 0, 0.5);
}

.showcase-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.showcase-features {
    margin: 30px 0;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 0, 255, 0.4);
    transform: translateX(10px);
}

.feature-tag i {
    font-size: 1.5rem;
    color: #00ffff;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.6));
}

.feature-tag span {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 500;
}

.showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    background-size: 200% 200%;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
    animation: gradient-shift 3s ease infinite;
}

.showcase-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.6), 0 5px 20px rgba(0, 255, 255, 0.4);
}

.browser-mockup {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.browser-mockup:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(255, 0, 255, 0.3);
}

.browser-bar {
    background: rgba(30, 30, 30, 0.9);
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
    box-shadow: 0 0 10px rgba(255, 95, 86, 0.5);
}

.dot.yellow {
    background: #ffbd2e;
    box-shadow: 0 0 10px rgba(255, 189, 46, 0.5);
}

.dot.green {
    background: #27c93f;
    box-shadow: 0 0 10px rgba(39, 201, 63, 0.5);
}

.browser-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 20px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-family: monospace;
}

.browser-content {
    position: relative;
    height: 400px;
    background: white;
    overflow: hidden;
}

.website-preview {
    width: 100%;
    height: 100%;
    border: none;
    transform: scale(0.9);
    transform-origin: top left;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.browser-mockup:hover .preview-overlay {
    opacity: 1;
}

.preview-overlay i {
    font-size: 4rem;
    color: white;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

.preview-overlay p {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.drone-highlight {
    margin-top: 25px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.15), rgba(0, 255, 255, 0.15));
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 2px solid rgba(255, 0, 255, 0.3);
}

.drone-highlight i {
    font-size: 2rem;
    color: #ff00ff;
    animation: drone-float 3s ease-in-out infinite;
}

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

.drone-highlight p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

.bundle-includes {
    margin: 80px 0;
}

.bundle-includes h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 40px;
}

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

.include-item {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    backdrop-filter: blur(15px);
    border: 3px solid transparent;
    background-image: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1)),
                      linear-gradient(135deg, #ff00ff, #00ffff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.include-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    border-radius: 50%;
}

.include-item:hover::before {
    width: 300px;
    height: 300px;
}

.include-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(255, 0, 255, 0.4), 0 10px 30px rgba(0, 255, 255, 0.3);
}

.include-item i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: icon-shimmer 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.5));
}

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

.include-item h4 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 10px;
}

.include-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.perfect-for-section {
    margin: 80px 0;
}

.perfect-for-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 40px;
}

.perfect-for-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.perfect-card {
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.1), rgba(255, 215, 0, 0.1));
    backdrop-filter: blur(15px);
    border: 3px solid transparent;
    background-image: linear-gradient(135deg, rgba(106, 13, 173, 0.1), rgba(255, 215, 0, 0.1)),
                      linear-gradient(135deg, #6a0dad, #ffd700);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.perfect-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: all 0.4s ease;
}

.perfect-card:hover::after {
    opacity: 1;
    animation: card-sweep 1s ease;
}

@keyframes card-sweep {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.perfect-card:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 15px 40px rgba(106, 13, 173, 0.4), 0 10px 25px rgba(255, 215, 0, 0.3);
}

.perfect-card i {
    font-size: 3rem;
    background: linear-gradient(135deg, #6a0dad, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    animation: icon-shimmer 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(106, 13, 173, 0.6));
}

.perfect-card h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 10px;
}

.perfect-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.bundle-cta {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.25), rgba(0, 191, 255, 0.25));
    background-size: 200% 200%;
    backdrop-filter: blur(20px);
    border: 4px solid transparent;
    background-image: linear-gradient(135deg, rgba(255, 0, 255, 0.25), rgba(0, 191, 255, 0.25)),
                      linear-gradient(135deg, #ff00ff, #00bfff, #ff00ff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 30px;
    padding: 70px 50px;
    margin: 80px 0;
    position: relative;
    animation: cta-pulse 4s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(255, 0, 255, 0.3), 0 0 90px rgba(0, 191, 255, 0.2);
}

@keyframes cta-pulse {
    0%, 100% { 
        box-shadow: 0 0 60px rgba(255, 0, 255, 0.3), 0 0 90px rgba(0, 191, 255, 0.2);
    }
    50% { 
        box-shadow: 0 0 80px rgba(255, 0, 255, 0.5), 0 0 110px rgba(0, 191, 255, 0.4);
    }
}

.bundle-cta::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff00ff, #00bfff, #ff00ff, #00bfff);
    background-size: 400% 400%;
    border-radius: 30px;
    z-index: -1;
    animation: border-flow 6s ease infinite;
    opacity: 0.5;
    filter: blur(10px);
}

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

.bundle-cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}

.bundle-cta > p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    border: none;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.4);
}

.limited-text {
    background: linear-gradient(135deg, #ffff00, #ff8800);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 25px;
    animation: gradient-shift 2s ease infinite;
    filter: drop-shadow(0 0 15px rgba(255, 255, 0, 0.6));
}

/* Mobile Responsiveness for Bundle Page */
@media (max-width: 968px) {
    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .plus-symbol {
        transform: rotate(90deg);
    }
    
    .includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .perfect-for-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 30px;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .browser-content {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .partnership-title {
        font-size: 2rem;
    }
    
    .partnership-subtitle {
        font-size: 1.1rem;
    }
    
    .partner-card {
        padding: 25px;
    }
    
    .includes-grid,
    .perfect-for-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .new-price {
        font-size: 3rem;
    }
}

/* Mobile Responsiveness for Enhanced Heroes */
@media (max-width: 768px) {
    .about-hero,
    .services-hero {
        min-height: 60vh;
        padding-top: 100px;
    }
    
    .contact-hero {
        min-height: auto;
        padding-top: 100px;
    }
    
    .hero-text-about h1,
    .hero-text-services h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats-grid,
    .service-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .floating-drone,
    .floating-service-icon,
    .floating-contact-element {
        font-size: 1.5rem;
    }
    
    .stat-card,
    .highlight-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .highlight-item i {
        font-size: 1.5rem;
    }
}
