:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    --text-primary: #2c3e50;
    --text-secondary: #6c757d;
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

.floating-animation {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0%,
    100% {
        transform: translate3d(0, 0px, 0) rotate(0deg);
    }

    33% {
        transform: translate3d(30px, -30px, 0) rotate(120deg);
    }

    66% {
        transform: translate3d(-20px, 20px, 0) rotate(240deg);
    }
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-padding {
    padding: 100px 0;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-1 {
    top: 10%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    animation: floating 8s ease-in-out infinite;
}

.shape-2 {
    top: 60%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: white;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: floating 10s ease-in-out infinite reverse;
}

.shape-3 {
    bottom: 20%;
    left: 20%;
    width: 80px;
    height: 80px;
    background: white;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    animation: floating 12s ease-in-out infinite;
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-gradient {
    background: var(--secondary-gradient);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    color: white;
}

/* Our Story Section */
.story-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.story-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

/* Services Section */
.services-section {
    background: var(--dark-gradient);
    color: white;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--success-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 172, 254, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(79, 172, 254, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(79, 172, 254, 0);
    }
}

.service-card {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.feature-item {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.3);
}

/* Directions Section */
.directions-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.direction-card {
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    height: 100%;
}

.direction-card:hover {
    transform: scale(1.05);
    background: rgba(255,255,255,0.25);
}

.direction-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.pricing-card {
    background: white;
    border-radius: 25px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border: 3px solid transparent;
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 3px solid #f5576c;
}

.pricing-card.popular::before {
    content: "POPULAIRE";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-gradient);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 20px 0;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

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

.contact-form {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid rgba(255,255,255,0.2);
}

.form-control {
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: white;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
    border-color: transparent;
}

.form-check-input:checked {
    background-color: #f5576c;
    border-color: #f5576c;
}

/* Modal Styling */
.modal-content {
    border-radius: 25px;
    border: none;
    background: var(--primary-gradient);
    color: white;
}

.modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.modal-footer {
    border-top: 1px solid rgba(255,255,255,0.2);
}

.btn-close {
    filter: invert(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .story-card {
        padding: 30px;
    }

    .contact-form {
        padding: 30px;
    }
}

/* Custom animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-animation > * {
    animation-delay: calc(var(--i) * 0.1s);
}