/* Modern Enterprise Software Design System */

:root {
    --primary: #34495e;
    --primary-light: rgba(52, 73, 94, 0.08);
    --primary-dark: #2c3e50;
    --secondary: #e17055;
    --accent: #fdcb6e;
    --dark: #2d3436;
    --light: #faf9f7;
    --success: #26de81;
    --warning: #f0932b;
    --error: #eb4d4b;
    --gradient-primary: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    --gradient-secondary: linear-gradient(135deg, #e17055 0%, #d35400 100%);
    --gradient-accent: linear-gradient(135deg, #fdcb6e 0%, #f6b93b 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

/* Global Styles */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark);
    background-color: var(--light);
}

/* Modern Navigation */
.navbar {
    background: #e4e9e9;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-brand img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(-2px);
}

/* Hero Section */
#hero {
    background: #e4e9e9;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('/img/grid-pattern.svg');
    opacity: 0.1;
    z-index: 0;
}

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

/* Hero Section Animations */
.hero-animation-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin: 2rem 0;
}

/* Hero Animation Container */
.hero-animation {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #f6f9fc 0%, #f1f4f8 100%);
    border-radius: 20px;
    overflow: hidden;
}

/* Digital Grid Background */
.digital-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(52, 73, 94, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(52, 73, 94, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-20px, -20px); }
}

/* Route Paths */
.route-paths {
    position: absolute;
    width: 100%;
    height: 100%;
}

.route-path {
    position: absolute;
    width: 2px;
    height: 2px;
}

.route-vehicle {
    position: absolute;
    font-size: 16px;
    color: var(--primary);
}

.path-1 {
    top: 20%;
    left: 10%;
}

.path-1 .route-vehicle {
    animation: moveTruck1 8s infinite;
}

.path-2 {
    top: 50%;
    left: 30%;
}

.path-2 .route-vehicle {
    animation: moveTruck2 10s infinite;
}

.path-3 {
    top: 70%;
    left: 50%;
}

.path-3 .route-vehicle {
    animation: moveTruck3 12s infinite;
}

@keyframes moveTruck1 {
    0% { transform: translate(0, 0) rotate(0); }
    25% { transform: translate(100px, 50px) rotate(15deg); }
    50% { transform: translate(200px, 0) rotate(0); }
    75% { transform: translate(100px, -50px) rotate(-15deg); }
    100% { transform: translate(0, 0) rotate(0); }
}

@keyframes moveTruck2 {
    0% { transform: translate(0, 0) rotate(0); }
    25% { transform: translate(150px, -50px) rotate(-15deg); }
    50% { transform: translate(300px, 0) rotate(0); }
    75% { transform: translate(150px, 50px) rotate(15deg); }
    100% { transform: translate(0, 0) rotate(0); }
}

@keyframes moveTruck3 {
    0% { transform: translate(0, 0) rotate(0); }
    25% { transform: translate(120px, 40px) rotate(10deg); }
    50% { transform: translate(240px, -40px) rotate(-10deg); }
    75% { transform: translate(120px, 0) rotate(0); }
    100% { transform: translate(0, 0) rotate(0); }
}

/* Delivery Car Animation */
.delivery-car {
    position: absolute;
    width: 40px;
    height: 20px;
    animation: driveCar 15s linear infinite;
    z-index: 3;
}

@keyframes driveCar {
    0% {
        transform: translate(-50px, 100px) rotate(10deg);
    }
    25% {
        transform: translate(25vw, 80px) rotate(-5deg);
    }
    50% {
        transform: translate(50vw, 120px) rotate(5deg);
    }
    75% {
        transform: translate(75vw, 90px) rotate(-10deg);
    }
    100% {
        transform: translate(calc(100% + 50px), 100px) rotate(0deg);
    }
}

/* Car Icon Style */
.delivery-car i {
    font-size: 20px;
    color: var(--primary);
}

/* Road Path */
.road-path {
    position: absolute;
    bottom: 100px;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(90deg, 
        var(--primary) 0px,
        var(--primary) 10px,
        transparent 10px,
        transparent 20px
    );
    opacity: 0.3;
    transform: translateY(-50%);
}

/* Add slight curve to the road */
.road-path::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    top: -20px;
}

/* Truck Animation */
.moving-truck {
    position: absolute;
    bottom: 40px;
    left: -80px;
    width: 60px;
    height: auto;
    animation: truckMove 12s infinite cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

@keyframes truckMove {
    0% {
        left: -80px;
        transform: translateY(0px) scaleX(1);
    }
    25% {
        left: calc(25% - 20px);
        transform: translateY(-15px) scaleX(1);
    }
    50% {
        left: calc(50% - 30px);
        transform: translateY(0px) scaleX(1);
    }
    75% {
        left: calc(75% - 40px);
        transform: translateY(-15px) scaleX(1);
    }
    100% {
        left: calc(100% + 80px);
        transform: translateY(0px) scaleX(1);
    }
}

/* Curved Road */
.road {
    position: absolute;
    bottom: 20px;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(90deg,
        rgba(52, 73, 94, 0.3) 0px,
        rgba(52, 73, 94, 0.3) 8px,
        transparent 8px,
        transparent 16px
    );
}

.road::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 40px;
    top: -20px;
    background: radial-gradient(
        800px 50px at 50% 100%,
        rgba(52, 73, 94, 0.1) 0%,
        transparent 100%
    );
}

/* Happy Customers */
.customer {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.customer:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.customer:nth-child(2) {
    top: 30%;
    left: 50%;
    animation-delay: 0.5s;
}

.customer:nth-child(3) {
    top: 15%;
    left: 80%;
    animation-delay: 1s;
}

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

/* Barcode Scanner */
.scanner {
    position: absolute;
    right: 20%;
    bottom: 60px;
    width: 60px;
    height: 40px;
    background: #2c3e50;
    border-radius: 5px;
}

.scanner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e74c3c;
    animation: scan 1.5s ease-in-out infinite;
}

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

/* Modern Buttons */
.btn {
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover::before {
    transform: translateY(0);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(52, 73, 94, 0.1);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

/* Success Stories Section */
.success-card {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: white;
    transition: all 0.3s ease;
}

.success-card:hover {
    transform: translateY(-5px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.form-control {
    border: 2px solid rgba(52, 73, 94, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(52, 73, 94, 0.1);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0;
}

.footer-heading {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-link {
        margin: 0.5rem 0;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Feature Lists */
.feature-list {
    margin-top: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.feature-list-large {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-icon-small {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Benefit Cards */
.benefit-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(52, 73, 94, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.benefit-card h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Section Backgrounds */
.bg-light {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.05) 0%, rgba(44, 62, 80, 0.05) 100%);
}

/* Image Decorations */
.rounded-4 {
    border-radius: 1.5rem;
}

.shadow-lg {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Floating Elements */
.floating-stats {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

.stat-item h4 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.875rem;
    color: var(--dark);
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .feature-list-large {
        gap: 1.5rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1rem;
    }

    .floating-stats {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
    }
}

/* Demo Button Animation */
.demo-button {
    position: relative;
}

.pulse-animation {
    display: none;
}

/* Value Delivery Cards */
.value-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(52, 73, 94, 0.1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.1) 0%, rgba(44, 62, 80, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--dark);
    opacity: 0.8;
}

.value-list li i {
    color: var(--success);
    margin-right: 0.5rem;
    font-size: 0.75rem;
}

/* Customer Centric Section */
.customer-centric {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.05) 0%, rgba(44, 62, 80, 0.05) 100%);
    border-radius: 2rem;
    padding: 4rem 0;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.customer-centric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/img/pattern-grid.svg');
    opacity: 0.1;
    z-index: 0;
}

.motto {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

/* Contact Form Enhancements */
.contact-form {
    position: relative;
    z-index: 1;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.05) 0%, rgba(44, 62, 80, 0.05) 100%);
    border-radius: 1.5rem;
    z-index: -1;
}

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

.form-floating > label {
    color: var(--dark);
    opacity: 0.7;
}

.form-control:focus + label {
    color: var(--primary);
}

/* Floating Elements */
.tech-element {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(52, 73, 94, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.tech-element i {
    font-size: 24px;
    color: var(--primary);
}

.tech-element span {
    color: var(--primary);
    font-weight: 500;
    white-space: nowrap;
}

.tech-element.order-management {
    top: 10%;
    left: 5%;
    animation-duration: 1s;
    animation-delay: 0s;
}

.tech-element.trip-management {
    top: 10%;
    right: 5%;
    animation-duration: 1s;
    animation-delay: 0.5s;
}

.tech-element.customer-management {
    top: 30%;
    left: 5%;
    animation-duration: 1s;
    animation-delay: 1s;
}

.tech-element.pre-accounting {
    top: 30%;
    right: 5%;
    animation-duration: 1s;
    animation-delay: 1.5s;
}

.tech-element.mobile-app {
    top: 50%;
    left: 5%;
    animation-duration: 1s;
    animation-delay: 2s;
}

.tech-element.analytics {
    top: 50%;
    right: 5%;
    animation-duration: 1s;
    animation-delay: 2.5s;
}

.tech-element.telegram-bot {
    top: 70%;
    left: 5%;
    animation-duration: 1s;
    animation-delay: 3s;
}

.tech-element.route-optimization {
    top: 70%;
    right: 5%;
    animation-duration: 1s;
    animation-delay: 3.5s;
}

/* Tetris Animation */
.tetris-block {
    opacity: 0;
    position: absolute;
    transform: translateY(-200%);
    animation: tetrisDrop forwards;
}

@keyframes tetrisDrop {
    0% {
        opacity: 0;
        transform: translateY(-200%);
    }
    50% {
        opacity: 1;
    }
    70% {
        transform: translateY(10%);
    }
    85% {
        transform: translateY(-5%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tetris Block Positions and Delays - No Overlap */
.tech-element.order-management {
    top: 10%;
    left: 5%;
    animation-duration: 1s;
    animation-delay: 0s;
}

.tech-element.trip-management {
    top: 10%;
    right: 5%;
    animation-duration: 1s;
    animation-delay: 0.5s;
}

.tech-element.customer-management {
    top: 30%;
    left: 5%;
    animation-duration: 1s;
    animation-delay: 1s;
}

.tech-element.pre-accounting {
    top: 30%;
    right: 5%;
    animation-duration: 1s;
    animation-delay: 1.5s;
}

.tech-element.mobile-app {
    top: 50%;
    left: 5%;
    animation-duration: 1s;
    animation-delay: 2s;
}

.tech-element.analytics {
    top: 50%;
    right: 5%;
    animation-duration: 1s;
    animation-delay: 2.5s;
}

.tech-element.telegram-bot {
    top: 70%;
    left: 5%;
    animation-duration: 1s;
    animation-delay: 3s;
}

.tech-element.route-optimization {
    top: 70%;
    right: 5%;
    animation-duration: 1s;
    animation-delay: 3.5s;
}

/* Integration Icons */
.feature-list .fab,
.feature-list .fas {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.feature-list .fab.fa-shopify { color: #96bf47; }
.feature-list .fab.fa-telegram { color: #0088cc; }
.feature-list .fab.fa-ebay { color: #e53238; }
.feature-list .fas.fa-user-tie { color: #00b9ff; }

/* Core Features Section */
#core-features {
    background: var(--light);
    padding: 6rem 0;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(52, 73, 94, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card .icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card .icon-wrapper i {
    font-size: 24px;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray);
}

.feature-list li i {
    color: var(--primary);
    font-size: 1rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    background: transparent;
    padding: 0;
}

.section-header h2 {
    color: var(--dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: transparent;
    padding: 0;
}

.section-header p {
    color: var(--secondary);
    font-size: 1.1rem;
    margin: 0;
    padding: 0;
    background: transparent;
}

/* Remove background from section titles */
section .title {
    background: none;
    padding: 0;
    margin-bottom: 3rem;
    text-align: center;
}

section .title h2 {
    color: var(--dark);
    font-weight: 700;
    margin: 0;
    padding: 0;
}

section .title p {
    color: var(--secondary);
    margin: 1rem 0 0;
    padding: 0;
}

/* Data Particles */
.data-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: moveParticle 4s linear infinite;
}

@keyframes moveParticle {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
        transform: translate(100px, -100px) scale(1);
    }
    100% {
        transform: translate(200px, -200px) scale(0);
        opacity: 0;
    }
}

/* Pulse Effects */
.pulse-circle {
    position: absolute;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Section Styles */
section {
    padding: 80px 0;
    background: var(--light);
}

section .title {
    text-align: center;
    margin-bottom: 50px;
    background: transparent;
    padding: 0;
}

section .title h2 {
    color: var(--dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: transparent;
    padding: 0;
}

section .title p {
    color: var(--secondary);
    font-size: 1.1rem;
    margin: 0;
    padding: 0;
    background: transparent;
}

/* Fancy Call Action Button */
.call-action-container {
    position: fixed;
    top: 15px;
    right: 30px;
    z-index: 9999;
}

.call-action-btn {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 114, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

.call-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 114, 255, 0.4);
    text-decoration: none;
}

.call-action-btn i {
    font-size: 20px;
    color: white;
    margin-right: 8px;
}

.call-action-btn span {
    color: white;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
}

/* Glowing effect */
.call-action-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00c6ff, #0072ff, #00c6ff);
    border-radius: 50px;
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.call-action-btn:hover::before {
    opacity: 0.7;
}

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

/* Mobile responsiveness */
@media (max-width: 768px) {
    .call-action-container {
        top: 10px;
        right: 15px;
    }
    
    .call-action-btn {
        padding: 8px 15px;
    }
    
    .call-action-btn i {
        font-size: 16px;
    }
    
    .call-action-btn span {
        font-size: 14px;
    }
}

/* Basic Photobooth Cabin */
.photobooth-container {
    max-width: 500px;
    margin: 2rem auto;
    perspective: 1000px;
}

.photobooth {
    position: relative;
    width: 100%;
    height: 600px;
    background: #e74c3c;
    border: 15px solid #c0392b;
    border-radius: 15px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.3),
        inset 0 2px 10px rgba(255,255,255,0.2);
    transform-style: preserve-3d;
    animation: boothFloat 3s ease-in-out infinite;
    padding: 20px;
}

/* Cabin Top */
.cabin-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: #c0392b;
    border-radius: 10px 10px 0 0;
}

.cabin-stripe {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #e74c3c, #f1c40f, #2ecc71, #3498db);
    opacity: 0.7;
}

/* Cabin Bottom */
.cabin-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: #c0392b;
    border-radius: 0 0 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Booth Screen */
.booth-screen {
    position: relative;
    width: 90%;
    height: 60%;
    margin: 60px auto 0;
    background: #000;
    border: 15px solid #2c3e50;
    border-radius: 10px;
    overflow: hidden;
}

.screen-content {
    width: 100%;
    height: 100%;
    position: relative;
    background: #1a1a1a;
}

/* Controls */
.controls {
    display: flex;
    gap: 20px;
    padding: 15px 25px;
    background: #2c3e50;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.control-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #34495e;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    box-shadow: 
        0 3px 6px rgba(0,0,0,0.2),
        inset 0 2px 5px rgba(255,255,255,0.1);
}

.control-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.control-btn:not(:disabled):hover {
    transform: scale(1.1);
    background: #3498db;
}

/* Photo Strip */
.photo-strip {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
    animation: stripWiggle 4s ease-in-out infinite;
}

.photo-frame {
    width: 100%;
    aspect-ratio: 3/4;
    background: #f1f1f1;
    border: 2px solid #ddd;
    border-radius: 3px;
    background-size: cover;
    background-position: center;
}

/* Cabin Shadow */
.cabin-shadow {
    position: absolute;
    bottom: -30px;
    left: 10%;
    right: 10%;
    height: 20px;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    filter: blur(10px);
}

/* Animations */
@keyframes boothFloat {
    0%, 100% {
        transform: translateY(0) rotate3d(1, 1, 0, 1deg);
    }
    50% {
        transform: translateY(-10px) rotate3d(1, 1, 0, -1deg);
    }
}

@keyframes stripWiggle {
    0%, 100% {
        transform: translateY(-50%) rotate(2deg);
    }
    50% {
        transform: translateY(-50%) rotate(-1deg);
    }
}

/* Preview Text */
.preview-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
}

.preview-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.preview-text p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .photobooth {
        height: 500px;
        border-width: 10px;
    }
    
    .booth-screen {
        margin-top: 40px;
    }
    
    .photo-strip {
        right: -60px;
        width: 45px;
        height: 240px;
    }
    
    .controls {
        padding: 10px 20px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* Flying Photos Animation */
.flying-photos {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8; /* Increased from 0.5 */
}

.photo {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 217, 102, 0.7); /* Increased opacity from 0.3 */
    border-radius: 10px;
    animation: float 15s linear infinite;
}

/* Reduced number of photos from 12 to 6 */
.photo:nth-child(1) { left: 10%; animation-delay: 0s; }
.photo:nth-child(2) { left: 30%; animation-delay: -3s; }
.photo:nth-child(3) { left: 50%; animation-delay: -6s; }
.photo:nth-child(4) { left: 70%; animation-delay: -9s; }
.photo:nth-child(5) { left: 85%; animation-delay: -12s; }
.photo:nth-child(6) { left: 95%; animation-delay: -15s; }

@keyframes float {
    0% {
        transform: translate(var(--start-x), -20vh) rotate(var(--rotation));
        opacity: 0;
    }
    20% {
        opacity: 0.7; /* Increased from 0.3 */
    }
    80% {
        opacity: 0.7; /* Increased from 0.3 */
    }
    100% {
        transform: translate(var(--end-x), 120vh) rotate(calc(var(--rotation) + 360deg));
        opacity: 0;
    }
}

/* Phone Icon and Call Button */
.phone-contact {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    margin-top: -2px;  /* Align with menu items */
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none !important;  /* Remove underline */
}

.phone-contact:hover {
    background: rgba(40, 167, 69, 0.1);
    text-decoration: none !important;  /* Remove underline on hover */
}

.phone-contact .fa-phone-alt {
    font-size: 2.2em;  /* Increased size */
    color: #28a745;
    transition: transform 0.3s ease;
    line-height: 1;  /* Better vertical alignment */
}

.phone-contact:hover .fa-phone-alt {
    transform: scale(1.1);
}

.phone-contact .call-text {
    color: #28a745;
    font-weight: 600;
    font-size: 1.2em;  /* Increased size */
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    line-height: 1;  /* Better vertical alignment */
}

.phone-contact:hover .call-text {
    opacity: 1;
    max-width: 100px;
    margin-left: 8px;
}

@media (max-width: 768px) {
    .phone-contact {
        padding: 6px 12px;
        margin-top: 0;  /* Reset margin for mobile */
    }
    
    .phone-contact .fa-phone-alt {
        font-size: 1.8em;
    }
    
    .phone-contact .call-text {
        font-size: 1.1em;
    }
}
