* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-navy: #1a237e;
    --secondary-navy: #283593;
    --accent-blue: #3f51b5;
    --light-blue: #e8eaf6;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-dark: #333333;
    --gradient-primary: linear-gradient(135deg, #1a237e 0%, #3f51b5 50%, #5c6bc0 100%);
    --gradient-secondary: linear-gradient(45deg, #283593 0%, #3f51b5 50%, #7986cb 100%);
    --gradient-explosive: linear-gradient(135deg, #ff1744 0%, #1a237e 30%, #3f51b5 70%, #00bcd4 100%);
    --gradient-neon: linear-gradient(45deg, #ff00ff 0%, #00ffff 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 35, 126, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 5px 30px rgba(26, 35, 126, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-neon);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--light-blue);
    transform: translateY(-2px);
    text-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--gradient-explosive);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: heroGlow 4s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { box-shadow: inset 0 0 100px rgba(255, 23, 68, 0.3); }
    100% { box-shadow: inset 0 0 150px rgba(0, 188, 212, 0.3); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
    animation: explodeIn 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    background: linear-gradient(45deg, #ffffff 0%, #e3f2fd 50%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: explodeIn 1.2s ease-out, shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideInUp 1.2s ease-out 0.4s both;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffffff 0%, #f8f9ff 100%);
    color: var(--primary-navy);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: slideInUp 1.2s ease-out 0.8s both;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.4);
    background: linear-gradient(45deg, #fff 0%, #e8eaf6 100%);
}

/* Floating shapes */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.15), rgba(0, 188, 212, 0.1));
    border-radius: 50%;
    animation: float 4s ease-in-out infinite, pulse 2s ease-in-out infinite alternate;
    filter: blur(1px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.1), rgba(255, 255, 255, 0.08));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse, pulse 3s ease-in-out infinite;
    filter: blur(1px);
}

/* Additional floating elements */
.hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 80%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 5s ease-in-out infinite, rotate 10s linear infinite;
}

.hero-content::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 7s ease-in-out infinite reverse, rotate 8s linear infinite reverse;
}

/* ===== FIXED 1 DAY WEBSITE SECTION ===== */
.one-day-website {
    background: var(--gray-light) !important;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.one-day-website::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 100 100"><defs><pattern id="oneDayPattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(26,35,126,0.05)"/><circle cx="80" cy="80" r="1.5" fill="rgba(26,35,126,0.03)"/><circle cx="50" cy="50" r="0.5" fill="rgba(26,35,126,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23oneDayPattern)"/></svg>');
}

.one-day-content {
    position: relative;
    z-index: 2;
}

.one-day-header {
    text-align: center;
    margin-bottom: 4rem;
}

.one-day-badge {
    display: inline-block;
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
}

.one-day-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-navy) !important;
    margin-bottom: 1rem;
    font-weight: bold;
}

.one-day-subtitle {
    font-size: 1.4rem;
    color: var(--gray-dark) !important;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.one-day-slogans {
    position: relative;
    height: 60px;
    margin-bottom: 2rem;
}

.slogan {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--accent-blue) !important;
    opacity: 0;
    transition: all 0.8s ease;
}

.slogan.active {
    opacity: 1;
}

.one-day-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.one-day-explanation {
    background: var(--white) !important;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.one-day-explanation h3 {
    color: var(--primary-navy);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.one-day-explanation p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

.unique-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.unique-point {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.point-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.one-day-process {
    background: var(--white) !important;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.one-day-process h3 {
    color: var(--primary-navy);
    font-size: 1.6rem;
    margin-bottom: 2rem;
    text-align: center;
}

.process-steps-oneday {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-oneday {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background: var(--light-blue) !important;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step-oneday:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(26, 35, 126, 0.1);
}

.step-number-oneday {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary) !important;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-oneday h4 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.step-oneday p {
    color: var(--gray-dark);
    margin: 0;
}

.one-day-features {
    background: var(--white) !important;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    text-align: center;
}

.one-day-features h3 {
    color: var(--primary-navy);
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.features-grid-oneday {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-oneday {
    background: var(--light-blue) !important;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
    color: var(--gray-dark);
    transition: all 0.3s ease;
}

.feature-oneday:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.1);
}

.one-day-cta-section {
    text-align: center;
    background: var(--white) !important;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 3rem;
}

.price-display {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--gray-dark);
    margin-right: 0.5rem;
}

.price-big {
    font-size: 4rem;
    font-weight: bold;
    color: var(--accent-blue) !important;
    text-shadow: 0 3px 10px rgba(63, 81, 181, 0.3);
}

.price-note {
    display: block;
    font-size: 1rem;
    color: var(--gray-dark);
    opacity: 0.8;
    margin-top: 0.5rem;
}

.one-day-cta-btn {
    background: var(--gradient-primary) !important;
    color: var(--white);
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.3);
}

.one-day-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.one-day-cta-btn:hover::before {
    left: 100%;
}

.one-day-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(26, 35, 126, 0.4);
}

.one-day-testimonial {
    text-align: center;
}

.testimonial-oneday {
    background: var(--white) !important;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.testimonial-oneday::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-blue) !important;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-oneday p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

.testimonial-oneday cite {
    font-weight: bold;
    color: var(--accent-blue) !important;
    font-style: normal;
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-navy);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    color: var(--gray-dark);
    opacity: 0.8;
}

/* About Section */
.about {
    background: var(--gray-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-visual {
    position: relative;
    height: 400px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    font-weight: bold;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-explosive);
    transition: height 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(26, 35, 126, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    height: 100%;
    background: var(--gradient-explosive);
    opacity: 0.1;
}

.service-card:hover::after {
    width: 300px;
    height: 300px;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(26, 35, 126, 0.2);
    border-color: var(--accent-blue);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(360deg);
    text-shadow: 0 0 20px rgba(63, 81, 181, 0.6);
}

.service-card:hover h3 {
    color: var(--accent-blue);
    text-shadow: 0 5px 15px rgba(63, 81, 181, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-blue);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 1;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-navy);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.service-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.service-btn:hover::before {
    left: 100%;
}

.service-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
    background: var(--gradient-explosive);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 126, 0.9);
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s ease-out;
}

.modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 25px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: var(--gradient-explosive);
    color: var(--white);
    padding: 2rem;
    border-radius: 25px 25px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.modal-header::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 100 100"><defs><pattern id="modalGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="0.8" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23modalGrain)"/></svg>');
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 2;
}

.modal-title {
    font-size: 2rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

.modal-body {
    padding: 2rem;
    line-height: 1.8;
}

.modal-body h4 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.modal-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

.modal-pricing {
    background: var(--light-blue);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1rem 0;
    text-align: center;
}

.modal-pricing .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from { 
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Advantages Section */
.advantages {
    background: var(--light-blue);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem 1rem;
}

.advantage-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.advantage-item h4 {
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.portfolio-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
    height: 200px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

/* Testimonials */
.testimonials {
    background: var(--gray-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-blue);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.testimonial-text {
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.8;
    margin-left: 2rem;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-navy);
    text-align: right;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.process-step h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

/* Trends Section */
.trends {
    background: var(--gradient-explosive);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.trends::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.trend-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.trend-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.trend-item:hover::before {
    left: 100%;
}

.trend-item:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.trend-item:hover .trend-icon {
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
}

.trend-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
}

/* Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    position: relative;
    border: 3px solid var(--light-blue);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.package::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(63, 81, 181, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    border-radius: 50%;
}

.package:hover::after {
    width: 400px;
    height: 400px;
}

.package.featured {
    border-color: var(--accent-blue);
    transform: scale(1.08);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    box-shadow: 0 15px 50px rgba(63, 81, 181, 0.2);
}

.package.featured::before {
    content: 'RECOMANDAT';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-explosive);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(63, 81, 181, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.package:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 80px rgba(26, 35, 126, 0.15);
    border-color: var(--accent-blue);
}

.package.featured:hover {
    transform: translateY(-12px) scale(1.11);
}

.package:hover .package-price {
    transform: scale(1.1);
    color: var(--primary-navy);
    text-shadow: 0 5px 15px rgba(63, 81, 181, 0.3);
}

.package h3 {
    margin-bottom: 1rem;
    color: var(--primary-navy);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.package-price {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.package-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--light-blue);
    transition: all 0.3s ease;
}

.package:hover .package-features li {
    border-bottom-color: rgba(63, 81, 181, 0.3);
    transform: translateX(5px);
}

/* Footer */
footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--light-blue);
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

/* Animations */
@keyframes slideInUp {
    from {
        transform: translateY(80px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes explodeIn {
    0% {
        transform: scale(0.3) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        transform: scale(1.02);
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3) translateY(50px);
        opacity: 0;
    }
    50% {
        transform: scale(1.05) translateY(-10px);
    }
    70% {
        transform: scale(0.9) translateY(0);
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Mobile Responsive for One Day Section */
@media (max-width: 768px) {
    .one-day-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .one-day-title {
        font-size: 2.5rem;
    }
    
    .price-big {
        font-size: 3rem;
    }
    
    .features-grid-oneday {
        grid-template-columns: 1fr;
    }
    
    .process-steps-oneday {
        gap: 1rem;
    }
    
    .step-oneday {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-navy: #1a237e;
    --secondary-navy: #283593;
    --accent-blue: #3f51b5;
    --light-blue: #e8eaf6;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-dark: #333333;
    --gradient-primary: linear-gradient(135deg, #1a237e 0%, #3f51b5 50%, #5c6bc0 100%);
    --gradient-secondary: linear-gradient(45deg, #283593 0%, #3f51b5 50%, #7986cb 100%);
    --gradient-explosive: linear-gradient(135deg, #ff1744 0%, #1a237e 30%, #3f51b5 70%, #00bcd4 100%);
    --gradient-neon: linear-gradient(45deg, #ff00ff 0%, #00ffff 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 35, 126, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 5px 30px rgba(26, 35, 126, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-neon);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--light-blue);
    transform: translateY(-2px);
    text-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--gradient-explosive);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: heroGlow 4s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { box-shadow: inset 0 0 100px rgba(255, 23, 68, 0.3); }
    100% { box-shadow: inset 0 0 150px rgba(0, 188, 212, 0.3); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
    animation: explodeIn 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    background: linear-gradient(45deg, #ffffff 0%, #e3f2fd 50%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: explodeIn 1.2s ease-out, shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideInUp 1.2s ease-out 0.4s both;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffffff 0%, #f8f9ff 100%);
    color: var(--primary-navy);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: slideInUp 1.2s ease-out 0.8s both;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.4);
    background: linear-gradient(45deg, #fff 0%, #e8eaf6 100%);
}

/* Floating shapes */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.15), rgba(0, 188, 212, 0.1));
    border-radius: 50%;
    animation: float 4s ease-in-out infinite, pulse 2s ease-in-out infinite alternate;
    filter: blur(1px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.1), rgba(255, 255, 255, 0.08));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse, pulse 3s ease-in-out infinite;
    filter: blur(1px);
}

/* Additional floating elements */
.hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 80%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 5s ease-in-out infinite, rotate 10s linear infinite;
}

.hero-content::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 7s ease-in-out infinite reverse, rotate 8s linear infinite reverse;
}

/* ===== FIXED 1 DAY WEBSITE SECTION ===== */
.one-day-website {
    background: var(--gray-light) !important;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.one-day-website::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 100 100"><defs><pattern id="oneDayPattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(26,35,126,0.05)"/><circle cx="80" cy="80" r="1.5" fill="rgba(26,35,126,0.03)"/><circle cx="50" cy="50" r="0.5" fill="rgba(26,35,126,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23oneDayPattern)"/></svg>');
}

.one-day-content {
    position: relative;
    z-index: 2;
}

.one-day-header {
    text-align: center;
    margin-bottom: 4rem;
}

.one-day-badge {
    display: inline-block;
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
}

.one-day-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-navy) !important;
    margin-bottom: 1rem;
    font-weight: bold;
}

.one-day-subtitle {
    font-size: 1.4rem;
    color: var(--gray-dark) !important;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.one-day-slogans {
    position: relative;
    height: 60px;
    margin-bottom: 2rem;
}

.slogan {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--accent-blue) !important;
    opacity: 0;
    transition: all 0.8s ease;
}

.slogan.active {
    opacity: 1;
}

.one-day-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.one-day-explanation {
    background: var(--white) !important;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.one-day-explanation h3 {
    color: var(--primary-navy);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.one-day-explanation p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

.unique-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.unique-point {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.point-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.one-day-process {
    background: var(--white) !important;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.one-day-process h3 {
    color: var(--primary-navy);
    font-size: 1.6rem;
    margin-bottom: 2rem;
    text-align: center;
}

.process-steps-oneday {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-oneday {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background: var(--light-blue) !important;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step-oneday:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(26, 35, 126, 0.1);
}

.step-number-oneday {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary) !important;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-oneday h4 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.step-oneday p {
    color: var(--gray-dark);
    margin: 0;
}

.one-day-features {
    background: var(--white) !important;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    text-align: center;
}

.one-day-features h3 {
    color: var(--primary-navy);
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.features-grid-oneday {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-oneday {
    background: var(--light-blue) !important;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
    color: var(--gray-dark);
    transition: all 0.3s ease;
}

.feature-oneday:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.1);
}

.one-day-cta-section {
    text-align: center;
    background: var(--white) !important;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 3rem;
}

.price-display {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--gray-dark);
    margin-right: 0.5rem;
}

.price-big {
    font-size: 4rem;
    font-weight: bold;
    color: var(--accent-blue) !important;
    text-shadow: 0 3px 10px rgba(63, 81, 181, 0.3);
}

.price-note {
    display: block;
    font-size: 1rem;
    color: var(--gray-dark);
    opacity: 0.8;
    margin-top: 0.5rem;
}

.one-day-cta-btn {
    background: var(--gradient-primary) !important;
    color: var(--white);
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.3);
}

.one-day-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.one-day-cta-btn:hover::before {
    left: 100%;
}

.one-day-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(26, 35, 126, 0.4);
}

.one-day-testimonial {
    text-align: center;
}

.testimonial-oneday {
    background: var(--white) !important;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.testimonial-oneday::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-blue) !important;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-oneday p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

.testimonial-oneday cite {
    font-weight: bold;
    color: var(--accent-blue) !important;
    font-style: normal;
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-navy);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    color: var(--gray-dark);
    opacity: 0.8;
}

/* About Section */
.about {
    background: var(--gray-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-visual {
    position: relative;
    height: 400px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    font-weight: bold;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-explosive);
    transition: height 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(26, 35, 126, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    height: 100%;
    background: var(--gradient-explosive);
    opacity: 0.1;
}

.service-card:hover::after {
    width: 300px;
    height: 300px;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(26, 35, 126, 0.2);
    border-color: var(--accent-blue);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(360deg);
    text-shadow: 0 0 20px rgba(63, 81, 181, 0.6);
}

.service-card:hover h3 {
    color: var(--accent-blue);
    text-shadow: 0 5px 15px rgba(63, 81, 181, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-blue);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 1;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-navy);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.service-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.service-btn:hover::before {
    left: 100%;
}

.service-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
    background: var(--gradient-explosive);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 126, 0.9);
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s ease-out;
}

.modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 25px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: var(--gradient-explosive);
    color: var(--white);
    padding: 2rem;
    border-radius: 25px 25px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.modal-header::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 100 100"><defs><pattern id="modalGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="0.8" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23modalGrain)"/></svg>');
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 2;
}

.modal-title {
    font-size: 2rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

.modal-body {
    padding: 2rem;
    line-height: 1.8;
}

.modal-body h4 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.modal-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

.modal-pricing {
    background: var(--light-blue);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1rem 0;
    text-align: center;
}

.modal-pricing .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from { 
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Advantages Section */
.advantages {
    background: var(--light-blue);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem 1rem;
}

.advantage-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.advantage-item h4 {
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.portfolio-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
    height: 200px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

/* Testimonials */
.testimonials {
    background: var(--gray-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-blue);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.testimonial-text {
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.8;
    margin-left: 2rem;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-navy);
    text-align: right;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.process-step h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

/* Trends Section */
.trends {
    background: var(--gradient-explosive);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.trends::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.trend-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.trend-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.trend-item:hover::before {
    left: 100%;
}

.trend-item:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.trend-item:hover .trend-icon {
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
}

.trend-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
}

/* Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    position: relative;
    border: 3px solid var(--light-blue);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.package::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(63, 81, 181, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    border-radius: 50%;
}

.package:hover::after {
    width: 400px;
    height: 400px;
}

.package.featured {
    border-color: var(--accent-blue);
    transform: scale(1.08);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    box-shadow: 0 15px 50px rgba(63, 81, 181, 0.2);
}

.package.featured::before {
    content: 'RECOMANDAT';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-explosive);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(63, 81, 181, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.package:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 80px rgba(26, 35, 126, 0.15);
    border-color: var(--accent-blue);
}

.package.featured:hover {
    transform: translateY(-12px) scale(1.11);
}

.package:hover .package-price {
    transform: scale(1.1);
    color: var(--primary-navy);
    text-shadow: 0 5px 15px rgba(63, 81, 181, 0.3);
}

.package h3 {
    margin-bottom: 1rem;
    color: var(--primary-navy);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.package-price {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.package-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--light-blue);
    transition: all 0.3s ease;
}

.package:hover .package-features li {
    border-bottom-color: rgba(63, 81, 181, 0.3);
    transform: translateX(5px);
}

/* Footer */
footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--light-blue);
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

/* Animations */
@keyframes slideInUp {
    from {
        transform: translateY(80px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes explodeIn {
    0% {
        transform: scale(0.3) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        transform: scale(1.02);
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3) translateY(50px);
        opacity: 0;
    }
    50% {
        transform: scale(1.05) translateY(-10px);
    }
    70% {
        transform: scale(0.9) translateY(0);
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Mobile Responsive for One Day Section */
@media (max-width: 768px) {
    .one-day-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .one-day-title {
        font-size: 2.5rem;
    }
    
    .price-big {
        font-size: 3rem;
    }
    
    .features-grid-oneday {
        grid-template-columns: 1fr;
    }
    
    .process-steps-oneday {
        gap: 1rem;
    }
    
    .step-oneday {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 5px solid var(--gradient-primary);
    box-shadow: 0 -10px 40px rgba(26, 35, 126, 0.2);
    z-index: 9999;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

.cookie-icon {
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.cookie-text h4 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cookie-text p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: none;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.cookie-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cookie-btn:hover::before {
    left: 100%;
}

.cookie-btn.primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(26, 35, 126, 0.3);
}

.cookie-btn.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.4);
}

.cookie-btn.secondary {
    background: var(--white);
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.cookie-btn.secondary:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 20px rgba(26, 35, 126, 0.2);
}

.cookie-btn.tertiary {
    background: var(--light-blue);
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
}

.cookie-btn.tertiary:hover {
    background: var(--accent-blue);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 20px rgba(63, 81, 181, 0.2);
}

/* Cookie Settings Modal Styles */
.cookie-settings-modal .modal-content {
    max-width: 600px;
}

.cookie-category {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent-blue);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category h4 {
    margin: 0;
    color: var(--primary-navy);
    font-size: 1.1rem;
}

.cookie-category p {
    margin: 0;
    color: var(--gray-dark);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

input:checked + .toggle-slider {
    background: var(--gradient-primary);
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

input:disabled + .toggle-slider {
    background-color: var(--accent-blue);
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Cookie Consent */
@media (max-width: 768px) {
    .cookie-consent-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .cookie-text h4 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 1rem 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* WhatsApp Widget Styles */
.whatsapp-widget {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 9998;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.whatsapp-trigger {
    background: linear-gradient(135deg, #25D366 0%, #22C55E 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    min-width: 180px;
    position: relative;
    overflow: hidden;
}

.whatsapp-trigger::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.whatsapp-trigger:hover::before {
    left: 100%;
}

.whatsapp-trigger:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    font-size: 1.8rem;
    animation: bounce 2s ease-in-out infinite;
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.whatsapp-main {
    font-weight: bold;
    font-size: 1rem;
}

.whatsapp-sub {
    font-size: 0.85rem;
    opacity: 0.9;
}

.whatsapp-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: white;
    border-radius: 20px;
    width: 320px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(20px) scale(0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
    border: 3px solid #25D366;
}

.whatsapp-menu.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.whatsapp-menu-header {
    background: linear-gradient(135deg, #25D366 0%, #22C55E 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.whatsapp-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
}

.whatsapp-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.online-status {
    font-size: 0.85rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 5px;
}

.close-whatsapp {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close-whatsapp:hover {
    background: rgba(255, 255, 255, 0.2);
}

.whatsapp-quick-actions {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whatsapp-action {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-size: 0.9rem;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-action:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
    transform: translateX(5px);
}

.whatsapp-custom-message {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.whatsapp-custom-message textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: border-color 0.3s ease;
}

.whatsapp-custom-message textarea:focus {
    outline: none;
    border-color: #25D366;
}

.whatsapp-custom-message button {
    background: linear-gradient(135deg, #25D366 0%, #22C55E 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    transition: all 0.3s ease;
}

.whatsapp-custom-message button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* WhatsApp Widget Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-widget {
        right: 15px;
    }
    
    .whatsapp-trigger {
        padding: 12px 16px;
        min-width: 140px;
    }
    
    .whatsapp-main {
        font-size: 0.9rem;
    }
    
    .whatsapp-sub {
        font-size: 0.75rem;
    }
    
    .whatsapp-menu {
        width: 280px;
        bottom: 70px;
    }
    
    .whatsapp-menu-header {
        padding: 15px;
    }
    
    .whatsapp-quick-actions {
        padding: 15px;
    }
    
    .whatsapp-custom-message {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .whatsapp-menu {
        width: calc(100vw - 40px);
        right: -10px;
    }
    
    .whatsapp-trigger {
        min-width: 120px;
        padding: 10px 14px;
    }
    
    .whatsapp-icon {
        font-size: 1.5rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}