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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Instagram browser fixes */
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

/* Instagram in-app browser fixes */
@supports (-webkit-overflow-scrolling: touch) {
    body {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* Prevent layout shift */
img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Instagram browser optimization */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Loading state */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Custom Colors */
:root {
    --primary-color: #C7DCFF;
    --secondary-color: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --gradient-primary: linear-gradient(135deg, #C7DCFF 0%, #ffffff 100%);
    --gradient-secondary: linear-gradient(135deg, #ffffff 0%, #C7DCFF 100%);
}

/* Navigation */
.custom-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.custom-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.logo {
    max-height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Hero Banner */
.hero-banner {
    min-height: 100vh;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff" fill-opacity="0.05" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    background-size: cover;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(199, 220, 255, 0.4);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.hero-image {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    animation: float 6s ease-in-out infinite;
}

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

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Events Section */
.events-section {
    background: var(--secondary-color);
    position: relative;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23C7DCFF" fill-opacity="0.05" points="0,0 1000,200 1000,1000 0,800"/></svg>');
    background-size: cover;
}

.events-section .container {
    position: relative;
    z-index: 2;
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

/* Clean Card Styles */
.clean-card {
    border: none;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #a8c4f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.clean-card:hover .event-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(199, 220, 255, 0.4);
}

.event-icon i {
    font-size: 2rem;
    color: var(--text-dark);
}

.clean-card .event-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.event-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.event-cta {
    margin-top: auto;
}

.cta-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: rgba(199, 220, 255, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(199, 220, 255, 0.3);
}

.clean-card .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

/* Merchandising Section */
.merchandising-section {
    position: relative;
    overflow: hidden;
}

.merchandising-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="%23C7DCFF" fill-opacity="0.03" cx="200" cy="200" r="100"/><circle fill="%23C7DCFF" fill-opacity="0.03" cx="800" cy="800" r="150"/></svg>');
    background-size: cover;
}

.merchandising-section .container {
    position: relative;
    z-index: 2;
}

/* Product Showcase */
.product-showcase {
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 4rem;
    transition: all 0.3s ease;
}

.product-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.product-gallery {
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.main-product-image {
    position: relative;
    max-width: 100%;
}

.main-product-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;

    transition: transform 0.3s ease;
}

.product-showcase:hover .main-product-image img {
    transform: scale(1.05);
}

.product-details {
    padding: 3rem;
}

.product-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.product-badge span {
    background: linear-gradient(135deg, #C7DCFF 0%, #a8c4f0 100%);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.product-tagline {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.product-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-specs {
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.spec-value {
    color: var(--text-light);
    font-size: 0.95rem;
}

.price-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.shipping-info {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

.shipping-info i {
    margin-right: 0.5rem;
    color: #28a745;
}

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

.btn-buy, .btn-info {
    flex: 1;
    min-width: 150px;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-buy {
    background: linear-gradient(135deg, var(--primary-color) 0%, #a8c4f0 100%);
    color: var(--text-dark);
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(199, 220, 255, 0.4);
    color: var(--text-dark);
    text-decoration: none;
}

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

.btn-info:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* Coming Soon Section */
.coming-soon-section {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.coming-soon-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.coming-soon-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.coming-soon-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transition: all 0.3s ease;
}

.coming-soon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coming-soon-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #a8c4f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.coming-soon-item:hover .coming-soon-icon {
    transform: scale(1.1);
}

.coming-soon-icon i {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.coming-soon-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.coming-soon-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.btn-notify {
    background: linear-gradient(135deg, var(--text-dark) 0%, #555 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-notify:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section {
    background: var(--secondary-color);
}

.contact-item {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.contact-item i {
    color: var(--primary-color);
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
}

.footer p {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Mobile Navbar Improvements */
    .custom-navbar {
        padding: 0.75rem 0;
        min-height: 80px;
    }
    
    .custom-navbar .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .navbar-brand {
        padding: 0.5rem 0;
        display: flex;
        align-items: center;
        flex: 1;
        min-width: 0;
    }
    
    .logo {
        max-height: 50px;
        width: auto;
        max-width: 250px;
    }
    
    .navbar-toggler {
        padding: 0.5rem;
        border: none;
        margin-left: auto;
        flex-shrink: 0;
    }
    
    .navbar-collapse {
        margin-top: 1rem;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
        padding: 0.75rem 1rem !important;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
        padding-top: 6rem;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .hero-image img {
        max-width: 80%;
        height: auto;
    }
    
    .contact-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .social-links {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    /* Product Showcase Mobile */
    .product-gallery {
        padding: 2rem;
        min-height: 350px;
    }
    
    .product-details {
        padding: 2rem;
    }
    
    .product-name {
        font-size: 2rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-buy, .btn-info {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .coming-soon-section {
        padding: 2rem;
    }
    
    .coming-soon-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .coming-soon-item {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Extra Small Mobile Navbar */
    .custom-navbar {
        padding: 0.5rem 0;
        min-height: 75px;
    }
    
    .navbar-brand {
        padding: 0.25rem 0;
        flex: 1;
        display: flex;
        align-items: center;
    }
    
    .logo {
        max-height: 45px;
        width: auto;
        max-width: 220px;
    }
    
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        margin-left: 0.5rem;
        flex-shrink: 0;
    }
    
    .hero-content {
        padding-top: 5rem;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .event-info {
        padding: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    /* Product Showcase Extra Small */
    .product-gallery {
        padding: 1.5rem;
        min-height: 300px;
    }
    
    .product-details {
        padding: 1.5rem;
    }
    
    .product-name {
        font-size: 1.8rem;
    }
    
    .product-tagline {
        font-size: 1rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
    
    .price-section {
        padding: 1rem;
    }
    
    .coming-soon-section {
        padding: 1.5rem;
    }
    
    .coming-soon-title {
        font-size: 1.5rem;
    }
    
    .coming-soon-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .coming-soon-item {
        padding: 1rem;
    }
    
    .coming-soon-icon {
        width: 50px;
        height: 50px;
    }
    
    .coming-soon-icon i {
        font-size: 1.2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #a8c4f0;
}

/* Remove old styles */
.product-card, .featured-product-card, .featured-product-image, .featured-product-info, 
.featured-product-title, .featured-product-description, .featured-product-details, 
.featured-product-price, .featured-product-buttons, .coming-soon-overlay {
    /* These styles are now obsolete */
} 

/* Single Event Card */
.single-event-card {
    border: none;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem 2rem;
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid rgba(199, 220, 255, 0.3);
}

.single-event-card .event-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #a8c4f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(199, 220, 255, 0.3);
}

.single-event-card:hover .event-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(199, 220, 255, 0.5);
}

.single-event-card .event-icon i {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.single-event-card .event-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.single-event-card .event-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.single-event-card .cta-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: rgba(199, 220, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(199, 220, 255, 0.3);
}

.single-event-card .btn-lg {
    padding: 1rem 3rem;
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
} 

/* New Pages Styles */

/* Work Hero Styles */
.work-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding-top: 100px;
}

.work-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    animation: floatAnimation 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.floating-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

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

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 2s;
}

/* About Hero Styles */
.about-hero {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding-top: 100px;
}

.about-visual {
    position: relative;
    height: 400px;
}

.floating-stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    animation: floatAnimation 4s ease-in-out infinite;
}

.floating-stat i {
    font-size: 2.5rem;
    opacity: 0.8;
}

.floating-stat div strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.floating-stat div span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.stat-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.stat-2 {
    top: 45%;
    right: 10%;
    animation-delay: 1.5s;
}

.stat-3 {
    bottom: 15%;
    left: 25%;
    animation-delay: 3s;
}

/* Event Hero Styles */
.event-hero {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding-top: 100px;
}

.event-visual {
    position: relative;
    height: 400px;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    animation: floatAnimation 3s ease-in-out infinite;
}

.floating-element i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.floating-element span {
    font-weight: 600;
    font-size: 0.9rem;
}

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

.element-2 {
    top: 40%;
    right: 15%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 25%;
    left: 35%;
    animation-delay: 2s;
}

/* Benefits Preview */
.benefits-preview {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item i {
    font-size: 1.2rem;
    color: #FFD700;
}

.benefit-item span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Stats Preview */
.stats-preview {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Features Preview */
.features-preview {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item i {
    font-size: 1.2rem;
    color: #00f2fe;
}

.feature-item span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Story Section */
.story-section {
    background: #f8f9fa;
}

.story-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.story-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
}

.team-icon,
.safety-icon,
.work-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(199, 220, 255, 0.3);
    animation: pulseAnimation 2s ease-in-out infinite;
}

.team-icon i,
.safety-icon i,
.work-icon i {
    font-size: 4rem;
    color: white;
}

/* Values Section */
.values-section {
    background: white;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    background: #f8f9fa;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 20px;
}

.step-icon i {
    font-size: 2.5rem;
    color: white;
}

.process-step h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-step p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Testimonial Section */
.testimonial-section {
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    color: white;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-card blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
    border: none;
    padding: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* CTA Buttons */
.cta-buttons {
    margin-top: 30px;
}

/* Animations */
@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    /* Add more space on mobile */
    .work-hero,
    .about-hero,
    .event-hero {
        padding-top: 120px;
    }
    
    .benefits-preview,
    .stats-preview,
    .features-preview {
        justify-content: center;
        gap: 15px;
    }
    
    /* Disable floating animations on mobile */
    .floating-card,
    .floating-stat,
    .floating-element {
        position: relative;
        margin: 15px auto;
        display: block;
        animation: none !important;
        transform: none !important;
        max-width: 200px;
    }
    
    .work-visual,
    .about-visual,
    .event-visual {
        height: auto;
        text-align: center;
        padding: 30px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    /* Simplify hero animations on mobile */
    .hero-image img {
        animation: none;
        transform: none;
    }
    
    /* Disable pulse animations on mobile for better performance */
    .team-icon,
    .safety-icon,
    .work-icon {
        width: 120px;
        height: 120px;
        animation: none;
        transform: none;
    }
    
    .team-icon i,
    .safety-icon i,
    .work-icon i {
        font-size: 3rem;
    }
    
    .story-visual {
        height: 200px;
        margin-top: 30px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-card blockquote {
        font-size: 1.1rem;
    }
    
    /* Improve mobile layout for preview items */
    .benefits-preview,
    .stats-preview,
    .features-preview {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .benefit-item,
    .feature-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .stats-preview {
        flex-direction: row;
        justify-content: space-around;
        gap: 10px;
    }
    
    .stat-item {
        flex: 1;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Improve floating elements layout */
    .floating-card {
        margin: 10px auto 20px;
        padding: 15px;
        width: 90%;
        max-width: 200px;
    }
    
    .floating-stat {
        margin: 10px auto 20px;
        padding: 15px;
        width: 90%;
        max-width: 220px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .floating-stat i {
        font-size: 2rem;
    }
    
    .floating-stat div strong {
        font-size: 1.2rem;
    }
    
    .floating-stat div span {
        font-size: 0.8rem;
    }
    
    .floating-element {
        margin: 10px auto 20px;
        padding: 15px;
        width: 90%;
        max-width: 180px;
    }
    
    .floating-element i {
        font-size: 1.5rem;
    }
    
    .floating-element span {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    /* Extra small screens - disable all complex animations */
    * {
        animation-duration: 0s !important;
        animation-delay: 0s !important;
        transition-duration: 0.2s !important;
    }
    
    /* Even more space on very small screens */
    .work-hero,
    .about-hero,
    .event-hero {
        padding-top: 100px;
    }
    
    .hero-content {
        padding-top: 1rem !important;
    }
    
    .floating-card,
    .floating-stat,
    .floating-element {
        position: static;
        margin: 15px auto;
        display: block;
        animation: none !important;
        transform: none !important;
        width: 95%;
        max-width: 280px;
    }
    
    .work-visual,
    .about-visual,
    .event-visual {
        height: auto;
        padding: 20px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    /* Simplify preview sections on very small screens */
    .benefits-preview,
    .features-preview {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .benefit-item,
    .feature-item {
        width: 100%;
        max-width: 220px;
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .stats-preview {
        justify-content: space-between;
        gap: 5px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Improve floating elements for very small screens */
    .floating-card {
        padding: 12px;
        margin: 8px auto 15px;
    }
    
    .floating-card i {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .floating-card span {
        font-size: 0.8rem;
    }
    
    .floating-stat {
        padding: 12px;
        margin: 8px auto 15px;
        gap: 8px;
    }
    
    .floating-stat i {
        font-size: 1.8rem;
    }
    
    .floating-stat div strong {
        font-size: 1.1rem;
    }
    
    .floating-stat div span {
        font-size: 0.8rem;
    }
    
    .floating-element {
        padding: 12px;
        margin: 8px auto 15px;
    }
    
    .floating-element i {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .floating-element span {
        font-size: 0.8rem;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .floating-card,
    .floating-stat,
    .floating-element,
    .team-icon,
    .safety-icon,
    .work-icon,
    .hero-image img {
        animation: none !important;
        transform: none !important;
    }
} 

/* Mobile optimization class */
.mobile-optimized .floating-card,
.mobile-optimized .floating-stat,
.mobile-optimized .floating-element {
    animation: none !important;
    transform: none !important;
    position: relative !important;
    display: block !important;
    margin: 15px auto !important;
}

.mobile-optimized .hero-image img {
    animation: none !important;
    transform: none !important;
}

.mobile-optimized .team-icon,
.mobile-optimized .safety-icon,
.mobile-optimized .work-icon {
    animation: none !important;
    transform: none !important;
}

.mobile-optimized * {
    transition-duration: 0.2s !important;
}

/* Instagram browser optimizations */
.instagram-browser * {
    animation: none !important;
    transition-duration: 0.1s !important;
}

.instagram-browser .floating-card,
.instagram-browser .floating-stat,
.instagram-browser .floating-element {
    position: relative !important;
    display: block !important;
    margin: 15px auto !important;
    animation: none !important;
    transform: none !important;
}

/* Improve performance on very small screens */
@media (max-width: 480px) {
    /* Disable all animations and transitions for better performance */
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
    
    /* Static layout for floating elements */
    .floating-card,
    .floating-stat,
    .floating-element {
        position: static !important;
        margin: 10px auto !important;
        display: block !important;
        width: 95% !important;
        max-width: 260px !important;
    }
    
    /* Simplify hero sections */
    .work-visual,
    .about-visual,
    .event-visual {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 15px 0 !important;
    }
    
    /* Reduce spacing for better mobile experience */
    .benefits-preview,
    .stats-preview,
    .features-preview {
        margin: 20px 0 !important;
        gap: 8px !important;
    }
    
    .hero-content {
        padding-top: 4rem !important;
    }
} 

/* Hero content improvements for new pages */
.work-hero .hero-content,
.about-hero .hero-content,
.event-hero .hero-content {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.work-hero .hero-badge,
.about-hero .hero-badge,
.event-hero .hero-badge {
    margin-bottom: 1.5rem;
}

.work-hero .hero-badge span,
.about-hero .hero-badge span,
.event-hero .hero-badge span {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
} 