/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brandify Brand Colors - Exact colors from brandifygroup.net/en/ */
    --primary-purple: #2D1A5A; /* Primary brand color - Deep purple from Brandify */
    --dark-purple: #1A0F3D; /* Darker purple for hero background */
    --light-purple: #4A3A6B; /* Lighter purple for speckles/patterns */
    --purple-accent: #6B5B95; /* Light purple accent for patterns */
    --green: #10B981; /* Success green */
    --dark-green: #059669;
    --accent-orange: #F97316; /* Orange accent for CTAs */
    --accent-red: #EF4444; /* Red accent */
    --gold: #F59E0B;
    --grey: #F9FAFB; /* Light grey background */
    --dark-grey: #1F2937; /* Dark text */
    --text-dark: #0A0A0A; /* Very dark text - from Brandify */
    --text-light: #6B7280; /* Medium grey text */
    --white: #FFFFFF;
    --border-grey: #E5E7EB; /* Border color */
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--grey);
}

/* Loading State */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--grey);
    border-top-color: var(--primary-purple);
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

.loader-text {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
    z-index: 10000;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-purple), var(--green));
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(45, 26, 90, 0.5);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(45, 26, 90, 0.4);
    transition: all 0.3s;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(45, 26, 90, 0.6);
}

.back-to-top:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 998;
}

.floating-cta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(45, 26, 90, 0.4);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
}

.floating-cta-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(45, 26, 90, 0.6);
    background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
}

.floating-cta-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.floating-cta-text {
    font-size: 0.95rem;
}

.floating-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.floating-email {
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
}

.floating-email:hover {
    background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
}

@media (max-width: 768px) {
    .floating-cta {
        right: 1rem;
        bottom: 1rem;
        gap: 0.75rem;
    }
    
    .floating-cta-item {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .floating-cta-text {
        font-size: 0.85rem;
    }
    
    .floating-cta-item svg {
        width: 20px;
        height: 20px;
    }
    
    .back-to-top {
        bottom: 6rem;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s;
}

.logo-image:hover {
    transform: scale(1.1);
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: 2px;
}

.logo-text p {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: width 0.3s;
}

.nav a:hover {
    color: var(--primary-purple);
}

.nav a:hover::after {
    width: 100%;
}

.nav a:focus {
    outline: 3px solid var(--primary-purple);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Accessibility: Focus visible for all interactive elements */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--primary-purple);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Skip to main content link for screen readers */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-purple);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 0;
    font-weight: 600;
}

.skip-to-main:focus {
    top: 0;
}

/* Improve color contrast */
.hero-description,
.testimonial-text,
.faq-answer p {
    color: var(--text-dark);
}

/* Ensure sufficient contrast for text on colored backgrounds */
.cta-button,
.package-button {
    color: var(--white);
    font-weight: 700;
}

/* Print styles */
@media print {
    .header,
    .mobile-menu,
    .back-to-top,
    .scroll-progress,
    .page-loader,
    .testimonials-controls,
    .faq-question {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-title,
    .hero-title {
        color: black !important;
    }
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-btn,
.lang-btn {
    background: none;
    border: 2px solid var(--grey);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-dark);
}

.search-btn:hover,
.lang-btn:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: transform 0.3s;
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid var(--grey);
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-logo .logo-text h2 {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
    margin: 0;
}

.mobile-logo .logo-text p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin: 0;
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    transition: all 0.3s;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.mobile-menu-close:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.mobile-nav-list {
    list-style: none;
    padding: 2rem 0;
    margin: 0;
    flex: 1;
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--grey);
}

.mobile-nav-link {
    display: block;
    padding: 1.2rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    position: relative;
    padding-right: 3rem;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 26, 90, 0.1));
    transition: width 0.3s;
}

.mobile-nav-link::after {
    content: '→';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-purple);
    transition: transform 0.3s;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    background: rgba(45, 26, 90, 0.05);
    color: var(--primary-purple);
    padding-right: 4rem;
}

.mobile-nav-link:hover::before {
    width: 100%;
}

.mobile-nav-link:hover::after {
    transform: translateY(-50%) translateX(-5px);
}

.mobile-menu-footer {
    padding: 2rem 1.5rem;
    border-top: 2px solid var(--grey);
    background: var(--grey);
}

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

.mobile-social-link {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-social-link.whatsapp {
    background: #25D366;
    color: var(--white);
}

.mobile-social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.mobile-social-link.linkedin {
    background: #0077B5;
    color: var(--white);
}

.mobile-social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.mobile-social-link:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-split-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    z-index: 0;
    will-change: transform;
}

.hero-left-bg {
    background: var(--dark-purple);
    position: relative;
    overflow: hidden;
}

.hero-right-bg {
    background: var(--dark-purple);
    position: relative;
    overflow: hidden;
}

.bg-pattern-left,
.bg-pattern-right {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.bg-pattern-left {
    background-image: 
        radial-gradient(circle at 20% 30%, var(--purple-accent) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, var(--light-purple) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, var(--purple-accent) 1.5px, transparent 1.5px);
    background-size: 60px 60px, 40px 40px, 80px 80px;
    opacity: 0.4;
}

.bg-pattern-right {
    background-image: 
        radial-gradient(circle at 70% 40%, var(--purple-accent) 2px, transparent 2px),
        radial-gradient(circle at 30% 80%, var(--light-purple) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, var(--purple-accent) 1.5px, transparent 1.5px);
    background-size: 60px 60px, 40px 40px, 80px 80px;
    opacity: 0.4;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    background: var(--purple-accent);
    opacity: 0.3;
    animation: floatElement 15s infinite ease-in-out;
}

.float-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.float-2 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    right: 20%;
    animation-delay: 3s;
}

.float-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 15%;
    animation-delay: 6s;
}

.float-4 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 25%;
    animation-delay: 9s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translate(40px, -40px) rotate(180deg);
        opacity: 0.6;
    }
}

.hero-divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.divider-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    animation: dividerPulse 3s infinite;
}

@keyframes dividerPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.hero-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: floatCircle 20s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
    z-index: 2;
    min-height: 90vh;
}

.hero-left {
    background: transparent;
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.offer-container {
    text-align: center;
    width: 100%;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-right {
    background: transparent;
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.content-wrapper {
    width: 100%;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.discount-badge {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: badgeGlow 3s infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

.badge-icon {
    font-size: 1.5rem;
    animation: rotateIcon 2s infinite;
}

@keyframes rotateIcon {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

.badge-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.countdown-wrapper {
    margin: 2rem 0;
}

.countdown-timer {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.timer-box {
    background: var(--white);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    min-width: 70px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.timer-box:hover {
    transform: scale(1.05);
}

.timer-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-dark);
    display: block;
    text-align: center;
    line-height: 1;
}

.timer-label {
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.timer-separator {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.discount-percentage-wrapper {
    position: relative;
    margin: 2.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.discount-percentage {
    font-size: 9rem;
    font-weight: 900;
    color: var(--white);
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.5),
        0 0 40px rgba(255, 255, 255, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 8px 30px rgba(0, 0, 0, 0.3);
    line-height: 1;
    position: relative;
    z-index: 2;
    animation: bounceDiscount 1.5s ease-in-out infinite;
    letter-spacing: -0.05em;
}

.percentage-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 30%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s infinite;
    z-index: 1;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

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

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

.hero-right {
    color: var(--white);
}

.hero-left {
    color: var(--white);
}

.title-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line-1,
.title-line-2 {
    display: block;
    animation: fadeInUp 0.8s ease-out;
}

.title-line-2 {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.95;
    color: var(--white);
}

.features-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    flex: 1;
    min-width: 140px;
}

.highlight-item svg {
    width: 20px;
    height: 20px;
    color: var(--green);
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.cta-button {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.button-shine {
    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;
}

.cta-button:hover .button-shine {
    left: 100%;
}

.cta-button span {
    position: relative;
    z-index: 2;
}

.cta-button svg {
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
}

.cta-button.primary {
    background: var(--white);
    color: var(--text-dark);
    margin-top: 1rem;
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--grey);
    transition: left 0.3s;
    z-index: 1;
}

.cta-button.primary:hover::before {
    left: 0;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button.primary:hover svg {
    transform: translateX(5px);
}

.cta-button.secondary {
    background: var(--white);
    color: var(--text-dark);
}

.cta-button.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--grey);
    transition: left 0.3s;
    z-index: 1;
}

.cta-button.secondary:hover::before {
    left: 0;
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary:hover svg {
    transform: translateX(5px);
}

.timer-note,
.button-note {
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.9;
    color: var(--white);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.button-note {
    text-align: right;
    justify-content: flex-end;
}

.timer-note svg,
.button-note svg {
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

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

/* Packages Section */
.packages {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.packages-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    will-change: transform;
}

.packages-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(45, 26, 90, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
}

.packages-title {
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.title-main {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease-out;
}

.title-underline-packages {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.underline-purple-pkg,
.underline-green-pkg {
    height: 4px;
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.3s both;
}

.underline-purple-pkg {
    width: 60px;
    background: var(--primary-purple);
}

.underline-green-pkg {
    width: 60px;
    background: var(--green);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .packages-grid {
        gap: 2rem;
    }
}

.package-card {
    background: var(--primary-purple);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(45, 26, 90, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(45, 26, 90, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 0;
}

.package-card:hover .package-glow {
    opacity: 1;
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border: 3px solid var(--white);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.package-card.featured:hover {
    transform: scale(1.08) translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.featured-glow {
    background: radial-gradient(circle, rgba(45, 26, 90, 0.15) 0%, transparent 70%);
}

.premium-glow {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, #F97316 100%);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulseBadge 2s infinite;
}

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

.package-header {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.package-header-basic {
    background: var(--primary-purple);
}

.package-header-featured {
    background: var(--primary-purple);
}

.package-header-premium {
    background: var(--primary-purple);
}

.package-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.package-card:hover .package-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.package-header h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.package-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.package-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    min-height: 0;
    background: var(--primary-purple);
}

.package-features {
    flex: 1;
    margin-bottom: 2rem;
}

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

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.9rem 0.5rem;
    margin: 0 -0.5rem;
    transform: translateX(-3px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
    word-break: break-word;
}

.package-footer {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: auto;
    flex-shrink: 0;
}

.package-info {
    margin-bottom: 1.5rem;
}

.package-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.package-duration svg {
    color: var(--white);
}

.package-price-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.package-price-wrapper:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

.package-card.featured .package-price-wrapper {
    border: 2px dashed rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    position: relative;
}

.price-old {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    font-weight: 600;
    position: relative;
    opacity: 0.6;
}

.price-old::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green);
    transform: rotate(-5deg);
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.price-currency {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.discount-badge-small {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    animation: bounceDiscount 2s infinite;
    z-index: 10;
}

.discount-badge-small::before {
    content: '🎉';
    font-size: 1rem;
}

.discount-badge-small::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid var(--dark-green);
}

@keyframes bounceDiscount {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
}

.package-button {
    width: 100%;
    padding: 1.2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.package-button span {
    position: relative;
    z-index: 2;
}

.package-button svg {
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
}

.package-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.3s;
    z-index: 1;
}

.package-button:hover::before {
    left: 0;
}

.package-button:hover svg {
    transform: translateX(5px);
}

.package-button-basic {
    background: var(--white);
    color: var(--text-dark);
}

.package-button-basic::before {
    background: var(--grey);
}

.package-button-featured {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.package-button-featured::before {
    background: var(--grey);
}

.package-button-featured:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.package-button-premium {
    background: var(--white);
    color: var(--text-dark);
}

.package-button-premium::before {
    background: var(--grey);
}

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

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--grey);
    position: relative;
    overflow: visible;
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    will-change: auto;
    transform: none;
}

.testimonials-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(45, 26, 90, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
}

.testimonials-title {
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.testimonials-slider {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2rem;
    position: relative;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 100%;
    scroll-snap-align: start;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }

.testimonial-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    color: var(--primary-purple);
    opacity: 0.1;
    font-weight: 900;
    line-height: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(45, 26, 90, 0.3);
}

.avatar-placeholder {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.testimonial-role {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    fill: var(--gold);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-purple);
    background: var(--white);
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: scale(1.1);
}

.testimonial-prev:focus,
.testimonial-next:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

.testimonials-dots {
    display: flex;
    gap: 0.8rem;
}

.testimonials-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--grey);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.testimonials-dots .dot.active {
    background: var(--primary-purple);
    width: 30px;
    border-radius: 6px;
}

.testimonials-dots .dot:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.faq-title {
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--grey);
    transition: all 0.3s;
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 8px 25px rgba(45, 26, 90, 0.1);
}

.faq-item.active {
    border-color: var(--primary-purple);
    box-shadow: 0 8px 25px rgba(45, 26, 90, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: right;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
    position: relative;
    z-index: 1;
    pointer-events: auto;
    user-select: none;
}

.faq-question:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: -2px;
    border-radius: 16px;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(360deg);
}

.faq-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: right;
}

.faq-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
    padding-top: 1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    will-change: transform;
}

.contact-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(45, 26, 90, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    opacity: 0.6;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--primary-purple);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--green);
    bottom: 20%;
    left: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--light-purple);
    top: 50%;
    right: 30%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.contact-title {
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.title-text {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease-out;
}

.title-underline {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.underline-purple,
.underline-green {
    height: 4px;
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.3s both;
}

.underline-purple {
    width: 60px;
    background: var(--primary-purple);
}

.underline-green {
    width: 60px;
    background: var(--green);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

.contact-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

/* Social Links Section */
.social-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

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

.social-link {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    cursor: pointer;
    animation: bounceIn 0.6s ease-out both;
}

.social-link:nth-child(1) { animation-delay: 0.1s; }
.social-link:nth-child(2) { animation-delay: 0.2s; }
.social-link:nth-child(3) { animation-delay: 0.3s; }
.social-link:nth-child(4) { animation-delay: 0.4s; }

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.social-icon-wrapper {
    position: relative;
    z-index: 2;
    transition: transform 0.4s;
}

.social-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.social-link:hover .social-ripple {
    width: 200px;
    height: 200px;
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
    color: var(--white);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-link.website {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    color: var(--white);
}

.social-link:hover {
    transform: translateY(-10px) scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.social-link:hover .social-icon-wrapper {
    transform: scale(1.2) rotate(-5deg);
}

.social-link:active {
    transform: translateY(-5px) scale(1.05);
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
}

.contact-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateX(50px);
}

.contact-item[data-animation="slide-right"].animate {
    opacity: 1;
    transform: translateX(0);
}

.contact-item:nth-child(1) { transition-delay: 0.1s; }
.contact-item:nth-child(2) { transition-delay: 0.2s; }
.contact-item:nth-child(3) { transition-delay: 0.3s; }

.contact-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 26, 90, 0.1), transparent);
    transition: left 0.6s;
}

.contact-item:hover .contact-glow {
    left: 100%;
}

.contact-item:hover {
    transform: translateX(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(45, 26, 90, 0.2);
    border-color: var(--primary-purple);
}

.contact-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    position: relative;
    z-index: 2;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(45, 26, 90, 0.3);
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--primary-purple);
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(45, 26, 90, 0.4);
}

.contact-text {
    flex: 1;
    position: relative;
    z-index: 2;
}

.contact-item a,
.contact-item span {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: block;
    position: relative;
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: width 0.3s;
}

.contact-item:hover a {
    color: var(--primary-purple);
}

.contact-item:hover a::after {
    width: 100%;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo h3 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-website a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-website a:hover {
    color: var(--light-purple);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-split-background {
        grid-template-columns: 1fr;
    }

    .hero-left-bg {
        min-height: 50vh;
    }

    .hero-right-bg {
        min-height: 50vh;
    }

    .hero-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        min-height: 50vh;
        padding: 3rem 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: translateY(-15px) scale(1.02);
    }

    .title-main {
        font-size: 2.5rem;
    }

    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .search-btn,
    .lang-btn {
        display: none;
    }

    .social-link {
        width: 70px;
        height: 70px;
    }

    .contact-item {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .discount-percentage {
        font-size: 7rem;
    }
    
    .percentage-glow {
        width: 250px;
        height: 250px;
    }

    .timer-box {
        min-width: 60px;
        padding: 0.8rem 1rem;
    }

    .timer-value {
        font-size: 1.5rem;
    }

    .timer-label {
        font-size: 0.75rem;
    }

    .timer-separator {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .title-main {
        font-size: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .package-header {
        padding: 2rem 1.5rem;
    }

    .package-header h3 {
        font-size: 1.6rem;
    }

    .package-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .price-value {
        font-size: 2.5rem;
    }

    .features-list li {
        padding: 0.8rem 0;
    }

    .feature-text {
        font-size: 0.9rem;
    }

    .title-text {
        font-size: 2rem;
    }

    .contact {
        padding: 4rem 0;
    }

    .social-link {
        width: 65px;
        height: 65px;
    }

    .social-links {
        gap: 1rem;
    }

    .contact-item {
        padding: 1.5rem;
        gap: 1rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .icon-pulse {
        width: 50px;
        height: 50px;
    }

    .contact-item a,
    .contact-item span {
        font-size: 1rem;
    }

    .shape-1 {
        width: 150px;
        height: 150px;
    }

    .shape-2 {
        width: 100px;
        height: 100px;
    }

    .shape-3 {
        width: 80px;
        height: 80px;
    }
}

    .discount-percentage {
        font-size: 5.5rem;
    }
    
    .percentage-glow {
        width: 200px;
        height: 200px;
    }

    .countdown-timer {
        gap: 0.5rem;
    }

    .timer-unit {
        padding: 0.8rem 1rem;
        min-width: 60px;
    }

    .timer-value {
        font-size: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-card {
    animation: fadeInUp 0.6s ease-out;
}

.package-card:nth-child(2) {
    animation-delay: 0.2s;
}

.package-card:nth-child(3) {
    animation-delay: 0.4s;
}

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

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

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

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

