/* ============================================
   DRONE PILOTS INTERNATIONAL - MAIN STYLESHEET
   ============================================ */

:root {
    --primary-color: #00d4ff;
    --primary-dark: #0099cc;
    --secondary-color: #1a1a2e;
    --dark-bg: #0f0f1e;
    --light-text: #e0e0e0;
    --text-color: #ffffff;
    --accent-color: #ff6b35;
    --border-color: #2a2a3e;
    --success-color: #00d4ff;
    --shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.opacity {
    opacity: 0.5;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1rem;
    color: var(--light-text);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    border-color: var(--text-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background: var(--text-color);
    color: var(--dark-bg);
}

.btn-large {
    padding: 16px 50px;
    font-size: 1.1rem;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.3rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 600;
    color: var(--light-text);
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.cta {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 10px 20px;
    border-radius: 25px;
}

.nav-link.cta::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.7) 0%, rgba(0, 212, 255, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    max-width: 400px;
    height: auto;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--primary-color);
    font-size: 2rem;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 80px 0;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    text-align: center;
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-bg) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    opacity: 0.8;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

/* Services Preview */
.services-preview {
    background: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    background: linear-gradient(135deg, var(--secondary-color), rgba(0, 212, 255, 0.05));
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: var(--dark-bg);
}

.cta-banner h3 {
    color: var(--dark-bg);
    margin-bottom: 20px;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* ============================================
   PORTFOLIO CAROUSEL STYLES
   ============================================ */

.portfolio-carousel-section {
    margin-bottom: 60px;
}

.portfolio-carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-image-container.portfolio-version {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--secondary-color), rgba(0, 212, 255, 0.05));
    min-height: 400px;
}

.carousel-image-container.portfolio-version img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: linear-gradient(135deg, var(--secondary-color), rgba(0, 212, 255, 0.05));
}

.carousel-image-container.portfolio-version.placeholder {
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
}

.carousel-info.portfolio-info {
    padding: 30px;
    background: linear-gradient(to top, rgba(15, 15, 30, 0.98), rgba(15, 15, 30, 0.8), transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.carousel-info.portfolio-info h4 {
    margin-bottom: 0;
    font-size: 1.8rem;
}

.carousel-info.portfolio-info .portfolio-label {
    align-self: flex-start;
    position: static;
    top: auto;
    right: auto;
}

.portfolio-item {
    overflow: hidden;
    border-radius: 15px;
    background: var(--secondary-color);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.portfolio-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.image-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.portfolio-item h4 {
    padding: 20px;
    margin: 0;
}

.portfolio-item p {
    padding: 0 20px 20px;
    margin: 0;
    font-size: 0.9rem;
}

.view-gallery-cta {
    text-align: center;
}

/* Why Choose Us */
.why-us {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-bg));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    padding: 40px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    position: relative;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.benefit-number {
    position: absolute;
    top: -15px;
    left: 40px;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
}

.benefit-card h3 {
    margin-top: 10px;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
    background: var(--dark-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--primary-color);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--dark-bg);
    text-align: center;
    padding: 80px 20px;
}

.final-cta h2 {
    color: var(--dark-bg);
    font-size: 2.8rem;
}

.final-cta p {
    color: rgba(15, 15, 30, 0.8);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

.service-detailed {
    border-top: 1px solid var(--border-color);
}

.service-detailed.alternate {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-bg));
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-content.reverse > * {
    direction: ltr;
}

.service-detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder-large {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    opacity: 0.8;
}

.service-detail-text h2 {
    font-size: 2.5rem;
}

.service-intro {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    margin: 2rem 0;
}

.service-list li {
    margin-bottom: 1rem;
    color: var(--light-text);
    padding-left: 30px;
    position: relative;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Pricing */
.pricing {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-bg));
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    border: 2px solid var(--border-color);
    color: var(--light-text);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-badge.popular {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: var(--primary-color);
    color: var(--dark-bg);
}

.pricing-card h3 {
    margin-top: 10px;
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.price span {
    font-size: 1rem;
    color: var(--light-text);
    margin-left: 5px;
}

.price-description {
    color: var(--light-text);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

.pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary-color);
}

.pricing-note {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

/* Add-ons */
.additional-services {
    background: var(--dark-bg);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.addon-card {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 10px;
    transition: var(--transition);
}

.addon-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.addon-card h4 {
    margin-bottom: 10px;
}

.addon-price {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 15px;
}

/* ============================================
   PRICING TABS & TABLES
   ============================================ */

.pricing-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
    justify-content: center;
}

.pricing-tab-btn {
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    background: transparent;
    color: var(--light-text);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.pricing-tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pricing-tab-btn.active {
    background: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
}

.pricing-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.pricing-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}

.pricing-content > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--light-text);
}

/* Pricing Tables */
.pricing-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-table-box {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
}

.pricing-table-box:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.pricing-table-box.full-width {
    grid-column: 1 / -1;
}

.pricing-table-box h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table thead {
    background: rgba(0, 212, 255, 0.1);
    border-bottom: 2px solid var(--border-color);
}

.pricing-table th {
    padding: 15px;
    text-align: left;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
}

.pricing-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--light-text);
}

.pricing-table tbody tr:hover {
    background: rgba(0, 212, 255, 0.05);
}

.pricing-table td:last-child {
    text-align: right;
}

.price-cell {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.info-cell {
    background: rgba(0, 212, 255, 0.1);
    color: var(--light-text) !important;
    font-weight: 500;
    text-align: center !important;
}

.info-text {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-text a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Add-on Pricing Grid */
.addon-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.addon-price-item {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.addon-price-item:hover {
    border-color: var(--primary-color);
    background: rgba(0, 212, 255, 0.1);
}

.addon-price-item h5 {
    margin-bottom: 10px;
}

.addon-price-item .price-cell {
    display: block;
    margin: 10px 0;
}

.addon-price-item ul {
    text-align: left;
    font-size: 0.9rem;
    margin-top: 10px;
}

.addon-price-item li {
    padding: 5px 0;
    color: var(--light-text);
}

.addon-price-item li:before {
    content: '✓ ';
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 5px;
}

/* Pricing Cards Grid */
.pricing-cards-custom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.custom-package-card {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.custom-package-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.custom-package-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.custom-package-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.custom-package-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-range {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .pricing-tab-btn {
        width: 100%;
        justify-content: center;
    }

    .pricing-tables {
        grid-template-columns: 1fr;
    }

    .pricing-table {
        font-size: 0.9rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 8px;
    }

    .addon-pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards-custom {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

/* ============================================
   PROMOTIONS & LOYALTY SECTION
   ============================================ */

.promotions-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 53, 0.05));
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 50px 30px;
    margin-top: 60px;
}

.promotions-section h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.promo-card {
    background: var(--secondary-color);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.promo-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.promo-card:hover::before {
    transform: scaleX(1);
}

.promo-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.promo-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.promo-offer {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 10px 0;
}

.promo-details {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.promo-description {
    font-size: 0.9rem;
    color: var(--light-text);
    margin: 15px 0;
    line-height: 1.5;
}

.promo-code {
    display: inline-block;
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 15px;
}

/* Loyalty Card Specific */
.promo-card.loyalty {
    position: relative;
}

.loyalty-tiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.tier {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tier-label {
    color: var(--light-text);
    font-size: 0.85rem;
    margin-bottom: 8px;
    text-align: center;
}

.tier-reward {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.loyalty-note {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-top: 15px;
    font-style: italic;
}

/* Loyalty Info Box */
.loyalty-info-box {
    background: rgba(0, 212, 255, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 30px;
    border-radius: 8px;
}

.loyalty-info-box h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.loyalty-steps {
    list-style: none;
}

.loyalty-steps li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.loyalty-steps li:last-child {
    border-bottom: none;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
}

.loyalty-steps span:last-child {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* First Time Card Accent */
.promo-card.first-time {
    position: relative;
}

.promo-card.first-time .promo-icon {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        color: var(--primary-color);
        text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    }
    50% {
        color: var(--accent-color);
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    }
}

/* Responsive Promotions */
@media (max-width: 768px) {
    .promotions-section {
        padding: 30px 20px;
    }

    .promotions-section h3 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .promo-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .loyalty-tiers {
        grid-template-columns: 1fr;
    }

    .loyalty-info-box {
        padding: 20px;
    }

    .loyalty-steps li {
        gap: 12px;
        padding: 12px 0;
    }

    .portfolio-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TEAM PAGE STYLES
   ============================================ */

.team-intro {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-bg));
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.team-members {
    background: var(--dark-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.team-card {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.team-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 30, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-overlay .social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.team-info {
    padding: 30px;
}

.team-info h3 {
    margin-bottom: 5px;
}

.role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.bio {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.skill-tag {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 8px;
    margin-bottom: 8px;
}

/* Values */
.values {
    background: var(--dark-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: linear-gradient(135deg, var(--secondary-color), rgba(0, 212, 255, 0.05));
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Expertise */
.expertise {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-bg));
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.expertise-card {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 15px;
}

.expertise-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.expertise-card ul {
    list-style: none;
}

.expertise-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.expertise-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Story */
.story {
    background: var(--dark-bg);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}

/* ============================================
   GALLERY PAGE STYLES
   ============================================ */

.gallery-section {
    background: var(--dark-bg);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    background: var(--secondary-color);
    border: 2px solid var(--border-color);
    color: var(--light-text);
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
}

/* ============================================
   PANORAMIC CAROUSEL STYLES
   ============================================ */

.panoramic-carousel-section {
    margin-bottom: 80px;
}

.carousel-header {
    text-align: center;
    margin-bottom: 40px;
}

.carousel-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.carousel-header p {
    font-size: 1.1rem;
    color: var(--light-text);
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-dark);
    background: var(--secondary-color);
}

.panoramic-carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
}

.carousel-image-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: var(--secondary-color);
}

.carousel-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: linear-gradient(135deg, var(--secondary-color), rgba(0, 212, 255, 0.05));
}

.carousel-info {
    padding: 30px;
    background: linear-gradient(to top, rgba(15, 15, 30, 0.95), transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--text-color);
}

.carousel-info h4 {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.carousel-info p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--light-text);
}

.carousel-nav {
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.carousel-nav:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.carousel-nav:active {
    transform: scale(0.95);
}

.carousel-prev {
    order: -1;
}

/* ============================================
   GALLERY GRID
   ============================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-item {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.gallery-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.portfolio-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.gallery-info {
    padding: 20px;
}

.gallery-info h4 {
    margin-bottom: 8px;
}

.gallery-info p {
    font-size: 0.9rem;
}

.upload-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-bg));
    padding: 60px 20px;
}

.upload-placeholder {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: rgba(0, 212, 255, 0.05);
    border: 2px dashed var(--primary-color);
    border-radius: 15px;
    padding: 50px 30px;
}

.upload-content i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.instructions {
    font-size: 0.9rem;
    color: var(--light-text);
}

.instructions code {
    background: var(--secondary-color);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
}

.gallery-stats {
    background: var(--dark-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, var(--secondary-color), rgba(0, 212, 255, 0.05));
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--light-text);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-section {
    background: var(--dark-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-wrapper h2 {
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 8px;
}

input,
select,
textarea {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    color: var(--light-text);
    padding: 12px 15px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

textarea {
    resize: vertical;
}

.form-note {
    font-size: 0.9rem;
    color: var(--light-text);
}

.contact-info-wrapper h2 {
    margin-bottom: 30px;
}

.info-card {
    background: linear-gradient(135deg, var(--secondary-color), rgba(0, 212, 255, 0.05));
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.info-icon {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 50px;
    display: flex;
    align-items: center;
}

.info-content h4 {
    margin-bottom: 8px;
}

.info-content p {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.contact-social {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.contact-social h4 {
    margin-bottom: 20px;
}

.contact-social .social-links {
    justify-content: center;
}

/* FAQ */
.faq {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-bg));
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 10px;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 0.95rem;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--dark-bg);
    text-align: center;
    padding: 100px 20px;
    margin-top: 60px;
}

.page-header h1 {
    color: var(--dark-bg);
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(15, 15, 30, 0.8);
    font-size: 1.2rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--secondary-color);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-logo h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 0;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--light-text);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
    color: var(--light-text);
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    margin: 0 10px;
    color: var(--light-text);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: rgba(15, 15, 30, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        padding: 15px;
        border-bottom: 1px solid var(--border-color);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .about-content,
    .service-detail-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .service-detail-content.reverse {
        direction: ltr;
    }

    .about-features,
    .service-features {
        grid-template-columns: 1fr;
    }

    .image-placeholder,
    .image-placeholder-large {
        width: 250px;
        height: 250px;
        font-size: 3rem;
    }

    .about-image {
        order: -1;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 300px;
    }

    .service-detail-content.reverse > * {
        direction: ltr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 20px;
    }

    /* Carousel responsive */
    .carousel-container {
        gap: 15px;
    }

    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .carousel-info {
        padding: 20px;
    }

    .carousel-info h4 {
        font-size: 1.2rem;
    }

    .carousel-info p {
        font-size: 0.85rem;
    }

    .carousel-image-container.portfolio-version {
        min-height: 300px;
    }

    .carousel-info.portfolio-info {
        padding: 20px;
    }

    .carousel-info.portfolio-info h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
        margin-top: 60px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .hero-logo {
        max-width: 150px;
    }

    .services-grid,
    .portfolio-grid,
    .benefits-grid,
    .team-grid,
    .expertise-grid,
    .addons-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .stat-number {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    section {
        padding: 40px 20px;
    }

    /* Carousel responsive for small screens */
    .carousel-container {
        gap: 10px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .carousel-header {
        margin-bottom: 30px;
    }

    .carousel-header h3 {
        font-size: 1.5rem;
    }

    .carousel-info {
        padding: 15px;
    }

    .carousel-info h4 {
        font-size: 1rem;
    }

    .carousel-info p {
        font-size: 0.8rem;
    }

    .carousel-image-container.portfolio-version {
        min-height: 250px;
    }

    .carousel-info.portfolio-info {
        padding: 15px;
    }

    .carousel-info.portfolio-info h4 {
        font-size: 1.1rem;
    }

    .carousel-image-container.portfolio-version.placeholder {
        font-size: 3rem;
    }
}
