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

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d0d0d 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundShift 15s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Hero Section - Modern & Elegant */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(13, 13, 13, 0.7) 100%);
    color: white;
    padding: 120px 0 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(255, 107, 53, 0.1) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(255, 107, 53, 0.05) 50%, transparent 100%);
    pointer-events: none;
    z-index: 0;
    animation: matrixRain 15s linear infinite;
}

@keyframes matrixRain {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s ease-out 0.3s forwards;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    position: relative;
}

.hero-title::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff00ff 0%, #ffffff 50%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { opacity: 0.7; filter: blur(0px); }
    100% { opacity: 1; filter: blur(1px); }
}

.highlight {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    transform: scaleX(0);
    animation: expandWidth 1.5s ease-out 1.2s forwards;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease-out 0.6s forwards;
    color: #cccccc;
    font-weight: 400;
}

.video-container {
    margin: 60px 0;
    position: relative;
}

.video-placeholder {
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 100%);
    height: 600px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInScale 1.5s ease-out 0.9s forwards;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(0, 255, 255, 0.3),
        inset 0 0 50px rgba(255, 0, 255, 0.1);
    border: 3px solid rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.1) 50%, transparent 70%);
    animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover .hero-video {
    transform: scale(1.02);
}





.sound-button {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    border: 2px solid rgba(255, 107, 53, 0.5);
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: scale(0.8);
    z-index: 3;
}

.video-placeholder:hover .sound-button {
    opacity: 1;
    transform: scale(1);
}

.sound-button:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    border-color: #ff6b35;
}

.sound-button:active {
    transform: scale(0.95);
}

.sound-button i {
    font-size: 18px;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}



.background-letters {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.letter-a, .letter-b {
    position: absolute;
    font-size: 20rem;
    font-weight: 900;
    color: rgba(255, 107, 53, 0.05);
    opacity: 0;
    animation: fadeInLetters 3s ease-out 1.5s forwards;
}

.letter-a {
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
}

.letter-b {
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
}

/* Benefits Section - Modern & Elegant */
.benefits {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.9) 50%, rgba(13, 13, 13, 0.8) 100%);
    padding: 100px 0 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s ease-out 0.3s forwards;
    position: relative;
    z-index: 2;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 40px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 25px;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    transition: left 0.6s ease;
}

.benefit-item:hover::before {
    left: 100%;
}

.benefit-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-item:hover::after {
    opacity: 1;
}

.benefit-item:hover {
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.2) 100%);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 107, 53, 0.4);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 20px;
    min-width: 70px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: iconPulse 2s ease-in-out infinite;
}

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

/* Features Section - Modern & Elegant */
.features {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.9) 50%, rgba(13, 13, 13, 0.8) 100%);
    padding: 100px 0 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.features-content {
    max-width: 800px;
    margin: 0 auto;
}

.features-left {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s ease-out 0.3s forwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-radius: 15px;
    transition: all 0.5s ease;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateX(15px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.2) 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 107, 53, 0.4);
}

.feature-item i {
    font-size: 1.8rem;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    min-width: 60px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: iconPulse 2s ease-in-out infinite;
}

/* Success Section - Modern & Elegant */
.success {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.9) 50%, rgba(13, 13, 13, 0.8) 100%);
    color: white;
    padding: 100px 0 80px 0;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.success::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.success::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s ease-out 0.3s forwards;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-points {
    max-width: 900px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s ease-out 0.6s forwards;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-radius: 15px;
    transition: all 0.5s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.point-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    transition: left 0.6s ease;
}

.point-item:hover::before {
    left: 100%;
}

.point-item:hover {
    transform: translateX(15px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.2) 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 107, 53, 0.4);
}

.point-item i {
    font-size: 1.8rem;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    min-width: 60px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: iconPulse 2s ease-in-out infinite;
}

.success-note {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.9;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s ease-out 0.9s forwards;
    color: #cccccc;
}

/* What You Get Section - Modern & Elegant */
.what-you-get {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.9) 50%, rgba(13, 13, 13, 0.8) 100%);
    color: white;
    padding: 100px 0 80px 0;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.what-you-get::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto 50px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s ease-out 0.6s forwards;
}

.benefit-list-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-radius: 15px;
    transition: all 0.5s ease;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.benefit-list-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    transition: left 0.6s ease;
}

.benefit-list-item:hover::before {
    left: 100%;
}

.benefit-list-item:hover {
    transform: translateX(15px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.2) 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 107, 53, 0.4);
}

.benefit-list-item i {
    font-size: 1.2rem;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 10px;
    min-width: 40px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: iconPulse 2s ease-in-out infinite;
}

/* Ideal For Section - Modern & Elegant */
.ideal-for {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.9) 50%, rgba(13, 13, 13, 0.8) 100%);
    color: white;
    padding: 100px 0 80px 0;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.ideal-for::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.ideal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s ease-out 0.6s forwards;
}

.ideal-column {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.1) 100%);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.5s ease;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.ideal-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.ideal-column:hover::before {
    transform: translateX(100%);
}

.ideal-column:hover {
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.2) 100%);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 107, 53, 0.4);
}

.ideal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.ideal-header i {
    font-size: 2rem;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 50%;
    min-width: 60px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: iconPulse 2s ease-in-out infinite;
}

.ideal-header i.fa-check-circle {
    color: #4CAF50 !important;
    background: rgba(76, 175, 80, 0.15) !important;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3) !important;
}

.ideal-header i.fa-times-circle {
    color: #f44336 !important;
    background: rgba(244, 67, 54, 0.15) !important;
    box-shadow: 0 8px 25px rgba(244, 67, 54, 0.3) !important;
}

.ideal-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.ideal-list {
    list-style: none;
}

.ideal-list li {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.ideal-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(255, 107, 53, 0.1);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.ideal-column:last-child .ideal-list li::before {
    content: '✗';
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}



.link {
    color: #3498db;
    text-decoration: none;
    margin: 0 20px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.link:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* CTA Button - Modern & Elegant */
.cta-button {
    background: rgba(255, 107, 53, 0.05);
    color: white;
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 25px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s ease-out 1.2s forwards;
    text-transform: uppercase;
    letter-spacing: 1px;
    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, 107, 53, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.cta-button:hover::after {
    opacity: 1;
}

.cta-button:hover {
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.2) 100%);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 107, 53, 0.4);
}

.cta-button:active {
    transform: translateY(-2px);
}

.cta-button i {
    font-size: 1.4rem;
}

/* Main CTA Button - Ultra Llamativo */
.main-cta-button {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ff6b35 100%);
    border: 2px solid #ff6b35;
    padding: 30px 60px;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 
        0 20px 40px rgba(255, 107, 53, 0.4),
        0 0 0 0 rgba(255, 107, 53, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: mainCtaPulse 2s infinite, fadeInUp 1.2s ease-out 1.2s forwards;
    position: relative;
    overflow: hidden;
}

.main-cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: rotateGradient 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-cta-button:hover::before {
    opacity: 1;
}

.main-cta-button:hover::after {
    opacity: 1;
}

.main-cta-button:hover {
    transform: translateY(-15px) scale(1.05);
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 50%, #ff8c42 100%);
    box-shadow: 
        0 30px 60px rgba(255, 107, 53, 0.6),
        0 0 0 20px rgba(255, 107, 53, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: #ff8c42;
}

.main-cta-button:active {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 30px rgba(255, 107, 53, 0.5),
        0 0 0 10px rgba(255, 107, 53, 0.2);
}

.main-cta-button i {
    font-size: 1.6rem;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes mainCtaPulse {
    0%, 100% {
        box-shadow: 
            0 20px 40px rgba(255, 107, 53, 0.4),
            0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    50% {
        box-shadow: 
            0 20px 40px rgba(255, 107, 53, 0.6),
            0 0 0 20px rgba(255, 107, 53, 0);
    }
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}


        transparent
    );
    animation: rotateGradient 8s linear infinite;
    opacity: 0.3;
}

.post-agenda-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(
            circle at 30% 70%,
            rgba(255, 107, 53, 0.08) 0%,
            transparent 70%
        );
    pointer-events: none;
}

@keyframes formGlow {
    0% {
        box-shadow: 
            0 30px 80px rgba(0, 0, 0, 0.6),
            0 0 0 1px rgba(255, 107, 53, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 30px 80px rgba(0, 0, 0, 0.6),
            0 0 0 1px rgba(255, 107, 53, 0.2),
            0 0 30px rgba(255, 107, 53, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

.post-agenda-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.05) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.post-agenda-form:hover::before {
    opacity: 1;
}

/* Barra de Progreso Moderna */
.form-progress {
    margin-bottom: 25px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 10px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.progress-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contenedor de Preguntas con Animaciones */
.questions-container {
    min-height: 200px;
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}

.question-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.question-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.question-slide.slide-out {
    opacity: 0;
    transform: translateY(-50px);
}

.question-number {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.question-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Estilos para inputs y opciones */
.question-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 80px;
    resize: vertical;
}

.question-input:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.question-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.radio-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.radio-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.radio-option.selected {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-option label {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    margin: 0;
    display: block;
}

.radio-option.selected label {
    color: #ff8c42;
    font-weight: 600;
}

/* Navegación del Formulario */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.nav-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-btn::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.5s ease;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.nav-btn:active {
    transform: translateY(0);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.prev-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.prev-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Footer del Formulario */
.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.security-badge,
.time-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
}

.security-badge i,
.time-badge i {
    color: #ff6b35;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .form-modal-container {
        padding: 10px;
    }
    
    .back-to-main-btn {
        top: 15px;
        left: 15px;
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .post-agenda-form {
        padding: 20px 15px;
        max-height: none;
    }
    
    .form-title {
        font-size: 1.4rem;
    }
    
    .question-title {
        font-size: 1.1rem;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 12px;
    }
    
    .nav-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
    }
    
    .form-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .questions-container {
        min-height: 150px;
    }
    
    .question-input {
        padding: 10px 12px;
        min-height: 60px;
    }
    
    .radio-option {
        padding: 12px;
    }
}



.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.nav-btn i {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 3px rgba(255, 107, 53, 0.5));
}



/* Responsive para Main CTA Button - Móvil */
@media (max-width: 768px) {
    .main-cta-button {
        padding: 20px 40px;
        font-size: 1.2rem;
        border-radius: 40px;
        gap: 10px;
    }
    
    .main-cta-button i {
        font-size: 1.3rem;
    }
    
    .main-cta-button:hover {
        transform: translateY(-8px) scale(1.03);
    }
}

@media (max-width: 480px) {
    .main-cta-button {
        padding: 18px 35px;
        font-size: 1.1rem;
        border-radius: 35px;
        gap: 8px;
    }
    
    .main-cta-button i {
        font-size: 1.2rem;
    }
    
    .main-cta-button:hover {
        transform: translateY(-5px) scale(1.02);
    }
}

/* Animations - Ultra Professional */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes expandWidth {
    to {
        transform: scaleX(1);
    }
}

@keyframes fadeInLetters {
    to {
        opacity: 1;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Responsive Design - Ultra Professional */
@media (max-width: 1200px) {
    .success-stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .ideal-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .video-placeholder {
        height: 350px;
    }
    
    .letter-a, .letter-b {
        font-size: 12rem;
    }
    
    .success-stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .success-stories .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 20px 35px;
        font-size: 1.1rem;
    }
    
    .success-stories-grid {
        grid-template-columns: 1fr;
    }
}

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

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 107, 53, 0.3);
    border-top: 4px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Estilos para el popup de captura de datos */
.data-capture-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.data-capture-popup.active {
    opacity: 1;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.popup-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border: 2px solid #ff6b35;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 80px rgba(255, 107, 53, 0.3);
}

.data-capture-popup.active .popup-content {
    transform: scale(1);
}

.popup-header {
    text-align: center;
    margin-bottom: 40px;
}

.popup-header h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.popup-header p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid #ff6b35;
    font-size: 1.5rem;
    color: #ff6b35;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-popup:hover {
    background: #ff6b35;
    color: white;
    transform: scale(1.1);
}

.popup-form .form-group {
    margin-bottom: 25px;
}

.popup-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-form input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    backdrop-filter: blur(10px);
}

.popup-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.popup-form input:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.popup-form input.error {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.popup-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.popup-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
}

.popup-submit-btn:active {
    transform: translateY(-1px);
}

.popup-success {
    text-align: center;
    padding: 30px 0;
}

.popup-success i {
    font-size: 5rem;
    color: #ff6b35;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

.popup-success h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.popup-success p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

.close-popup-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.close-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

/* Responsive para el popup */
@media (max-width: 768px) {
    .popup-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .popup-header h3 {
        font-size: 1.5rem;
    }
    
    .popup-header p {
        font-size: 1rem;
    }
}







.scheduling-banner {
    background: #8CBF8C;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-align: center;
}

.scheduling-description {
    flex: 1;
    line-height: 1.8;
    margin-bottom: 30px;
}

.scheduling-description p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.scheduling-footer {
    text-align: center;
    font-size: 1.1rem;
}

.free-text {
    color: #666;
    font-size: 0.9rem;
}

/* Right Panel - Calendar */
.scheduling-calendar {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 500px;
    height: 700px;
    margin: 0 auto;
    position: relative;
    overflow-y: auto;
}

.calendar-header {
    margin-bottom: 25px;
}

.brand-logo {
    background: #e9ecef;
    color: #495057;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    background: #dee2e6;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.call-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.meeting-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    position: relative;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #555;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item i {
    color: #8CBF8C;
    width: 16px;
}

.menu-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #999;
    cursor: pointer;
}

.calendar-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.nav-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #f0f0f0;
    color: #333;
}

.current-month {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.calendar-grid {
    margin-bottom: 25px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.day-header {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    padding: 8px 0;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-date {
    text-align: center;
    padding: 12px 8px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.calendar-date.available {
    color: #333;
    background: #f8f9fa;
}

.calendar-date.available:hover {
    background: #e9ecef;
}

.calendar-date.selected {
    background: #8CBF8C;
    color: white;
}

.calendar-date.unavailable {
    color: #ccc;
    cursor: not-allowed;
}

.timezone-selector {
    margin-top: 25px;
}

.timezone-selector label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.timezone-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timezone-dropdown:hover {
    border-color: #8CBF8C;
}

.timezone-dropdown i:first-child {
    color: #8CBF8C;
}

.timezone-dropdown span {
    flex: 1;
    font-size: 0.9rem;
    color: #333;
}

.timezone-dropdown i:last-child {
    color: #999;
    font-size: 0.8rem;
}

/* Timezone Dropdown Menu Styles */
.timezone-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 300px;
    display: none;
    overflow: hidden;
}

.timezone-dropdown-menu.active {
    display: block;
}

.timezone-list {
    max-height: 250px;
    overflow-y: auto;
}

.timezone-option {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f8f9fa;
    transition: background-color 0.2s ease;
}

.timezone-option:hover {
    background-color: #f8f9fa;
}

.timezone-option.selected {
    background-color: #e3f2fd;
    color: #1976d2;
}

.timezone-option .timezone-name {
    font-size: 14px;
    color: #333;
}

.timezone-option .timezone-time {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.timezone-search {
    padding: 12px 16px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
    position: relative;
}

.timezone-search input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: white;
}

.timezone-search input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.1);
}

.timezone-search input::placeholder {
    color: #999;
    font-size: 12px;
}

.timezone-search i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    cursor: pointer;
    font-size: 12px;
}

.timezone-dropdown.active i:last-child {
    transform: rotate(180deg);
}

/* Responsive Design for Calendar */
@media (max-width: 768px) {
    .scheduling-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .scheduling-calendar {
        max-width: 100%;
        width: 100%;
        height: auto;
        min-height: 700px;
        overflow-y: auto;
    }
    
    .calendar-date {
        padding: 10px 6px;
        font-size: 0.85rem;
    }
}

/* Time Selection Modal - Independent positioning */
.time-selection-modal {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 10;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.time-selection-modal.active {
    display: block;
}

.time-selection-content {
    padding: 25px;
    height: 100%;
    overflow-y: auto;
    position: relative;
    box-sizing: border-box;
}

.time-selection-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.back-btn {
    background: none;
    border: none;
    font-size: 1rem;
    color: #666;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #f0f0f0;
    color: #333;
}

.selected-date-info {
    flex: 1;
}

.selected-day {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px 0;
}

.selected-date {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.timezone-section {
    margin-bottom: 35px;
}

.timezone-section label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.timezone-section .timezone-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timezone-section .timezone-dropdown:hover {
    border-color: #8CBF8C;
}

.timezone-section .timezone-dropdown i:first-child {
    color: #8CBF8C;
}

.timezone-section .timezone-dropdown span {
    flex: 1;
    font-size: 0.9rem;
    color: #333;
}

.timezone-section .timezone-dropdown i:last-child {
    color: #999;
    font-size: 0.8rem;
}

/* Timezone Section Dropdown Menu Styles */
.timezone-section .timezone-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 300px;
    display: none;
    overflow: hidden;
}

.timezone-section .timezone-dropdown-menu.active {
    display: block;
}

.timezone-section .timezone-list {
    max-height: 250px;
    overflow-y: auto;
}

.timezone-section .timezone-option {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f8f9fa;
    transition: background-color 0.2s ease;
}

.timezone-section .timezone-option:hover {
    background-color: #f8f9fa;
}

.timezone-section .timezone-option.selected {
    background-color: #e3f2fd;
    color: #1976d2;
}

.timezone-section .timezone-option .timezone-name {
    font-size: 14px;
    color: #333;
}

.timezone-section .timezone-option .timezone-time {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.timezone-section .timezone-search {
    padding: 12px 16px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
    position: relative;
}

.timezone-section .timezone-search input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: white;
}

.timezone-section .timezone-search input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.1);
}

.timezone-section .timezone-search input::placeholder {
    color: #999;
    font-size: 12px;
}

.timezone-section .timezone-search i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    cursor: pointer;
    font-size: 12px;
}

.timezone-section .timezone-dropdown.active i:last-child {
    transform: rotate(180deg);
}

.time-selection-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 300px;
}

.time-selection-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.time-duration {
    font-size: 1rem;
    color: #666;
    margin: 0 0 25px 0;
}

.time-slots-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
    max-height: 350px;
    overflow-y: auto;
    padding-right: 8px;
    flex: 1;
    min-width: 280px;
}

.time-slot {
    padding: 12px 15px;
    border: 1px solid #8CBF8C;
    border-radius: 6px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: #8CBF8C;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.time-slot:hover {
    background: #8CBF8C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(140, 191, 140, 0.3);
}

.time-slot.selected {
    background: #8CBF8C;
    color: white;
    box-shadow: 0 4px 12px rgba(140, 191, 140, 0.4);
}

/* Time selection confirmation layout */
.time-selection-confirmation {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    width: 100%;
    box-sizing: border-box;
}

.selected-time-display {
    background: #495057;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    flex: 1;
}

.confirm-selection-btn {
    background: #8CBF8C;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.confirm-selection-btn:hover {
    background: #7aad7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(140, 191, 140, 0.4);
}

.confirm-selection-btn:active {
    transform: translateY(0);
}

/* Scrollbar styling for time slots */
.time-slots-container::-webkit-scrollbar {
    width: 6px;
}

.time-slots-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.time-slots-container::-webkit-scrollbar-thumb {
    background: #8CBF8C;
    border-radius: 3px;
}

.time-slots-container::-webkit-scrollbar-thumb:hover {
    background: #7aad7a;
}

/* Responsive for time selection */
@media (max-width: 768px) {
    .time-selection-modal {
        padding: 10px;
    }
    
    .time-selection-content {
        padding: 20px;
        max-width: 95%;
        max-height: 90vh;
    }
    
    .selected-day {
        font-size: 1.3rem;
    }
    
    .time-slots-container {
        grid-template-columns: 1fr;
        gap: 8px;
        max-height: 250px;
    }
    
    .time-slot {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
} 

/* Final Booking Screen Styles */
.final-booking-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    overflow-y: auto;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
}

.booking-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.back-to-calendar-btn {
    background: #8CBF8C;
    color: white;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.back-to-calendar-btn:hover {
    background: #7aad7a;
    transform: scale(1.1);
}

.booking-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.booking-details-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-details-card .detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #333;
}

.booking-details-card .detail-item i {
    color: #8CBF8C;
    width: 20px;
    text-align: center;
}

.booking-form-section {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.booking-form input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.booking-form input:focus {
    outline: none;
    border-color: #8CBF8C;
    box-shadow: 0 0 0 2px rgba(140, 191, 140, 0.2);
    color: #333;
}

.booking-form input::placeholder {
    color: #999;
}

.booking-form input.error {
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
    color: #333;
}

.booking-form input:active,
.booking-form input:focus,
.booking-form input:valid {
    color: #333 !important;
}

.phone-input-container {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    overflow: hidden;
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-right: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-selector:hover {
    background: #e9ecef;
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.phone-input-container input {
    border: none;
    border-radius: 0;
    flex: 1;
    padding: 12px 15px;
    color: #333;
    background: white;
}

.phone-input-container input:focus {
    box-shadow: none;
}

.booking-submit-btn {
    background: #8CBF8C;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.booking-submit-btn:hover {
    background: #7aad7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(140, 191, 140, 0.4);
}

.booking-submit-btn:active {
    transform: translateY(0);
}

.booking-submit-btn i {
    font-size: 1.1rem;
}

/* Responsive styles for final booking screen */
@media (max-width: 768px) {
    .final-booking-screen {
        padding: 20px;
        gap: 20px;
    }
    
    .booking-title {
        font-size: 1.5rem;
    }
    
    .form-title {
        font-size: 1.2rem;
    }
    
    .booking-details-card {
        padding: 15px;
    }
    
    .booking-form {
        gap: 15px;
    }
    
    .booking-form input {
        padding: 10px 12px;
    }
    
    .country-selector {
        padding: 10px 12px;
    }
    
    .phone-input-container input {
        padding: 10px 12px;
    }
}

/* Success Stories Section - Modern & Elegant with 4 videos in one line */
.success-stories {
    padding: 100px 0 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.9) 50%, rgba(13, 13, 13, 0.8) 100%);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.success-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.success-stories .section-title {
    text-align: center;
    margin-bottom: 80px;
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.success-story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    padding: 0;
    margin: 0;
}

/* REGLAS SIMPLES PARA VIDEOS */
.success-story-card .story-video {
    display: none;
    position: absolute;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 999;
    border-radius: 20px;
    background: #000;
    object-fit: cover !important;
    border: none !important;
    outline: none !important;
}

.success-story-card .video-poster {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.success-story-card {
    height: 250px;
    background: white;
    position: relative;
    overflow: hidden;
}

.success-story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.video-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0;
    margin: 0;
}

/* Estilos específicos para videos 2 y 4 - solo cuando están reproduciéndose */
.success-story-card[data-video="exitos_2.mp4"].video-playing {
    height: 400px !important;
}

.success-story-card[data-video="exitos_4.mp4"].video-playing {
    height: 400px !important;
}

.success-story-card[data-video="exitos_2.mp4"].video-playing .video-thumbnail,
.success-story-card[data-video="exitos_4.mp4"].video-playing .video-thumbnail {
    height: 400px !important;
}

.success-story-card[data-video="exitos_2.mp4"].video-playing .video-poster,
.success-story-card[data-video="exitos_4.mp4"].video-playing .video-poster {
    height: 400px !important;
}

.success-story-card[data-video="exitos_2.mp4"].video-playing .video-poster img,
.success-story-card[data-video="exitos_4.mp4"].video-playing .video-poster img {
    height: 400px !important;
    object-fit: cover !important;
}

/* Todas las tarjetas de video tienen el mismo comportamiento */
.success-story-card.video-playing {
    padding: 0 !important;
    margin: 0 !important;
}

.success-story-card.video-playing .video-thumbnail {
    padding: 0 !important;
    margin: 0 !important;
}

.success-story-card.video-playing .story-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
    border-radius: 20px !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 10 !important;
    min-width: 100% !important;
    min-height: 100% !important;
    max-width: none !important;
    max-height: none !important;
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.story-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 0.4s ease;
}

.story-video.playing {
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ff6b35;
    transition: all 0.4s ease;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.success-story-card:hover .play-button {
    background: #ff6b35;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.video-controls i {
    font-size: 0.8rem;
    opacity: 0.8;
}

.video-duration {
    font-weight: 600;
}

.video-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.story-content {
    padding: 30px;
}

.story-content blockquote {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
    line-height: 1.5;
    font-style: italic;
}

.story-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
}

.author-location {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design - Ultra Professional */
@media (max-width: 768px) {
    .success-stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .success-stories .section-title {
        font-size: 2.5rem;
    }
    
    .story-content {
        padding: 20px;
    }
    
    .story-content blockquote {
        font-size: 1rem;
    }
} 

/* Footer Styles */
.footer {
    background: #ffffff;
    color: #333333;
    padding: 40px 0 20px 0;
    border-top: 3px solid #ff6b35;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    font-family: 'Inter', sans-serif;
}

.logo-subtext {
    font-size: 1.2rem;
    font-weight: 500;
    color: #666666;
    font-family: 'Inter', sans-serif;
    position: relative;
    top: -10px;
    left: -5px;
    transform: rotate(-5deg);
}

.footer-links {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-link {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-decoration: underline;
}

.footer-link:hover {
    color: #ff6b35;
}

.separator {
    color: #666666;
    font-weight: 300;
}

.footer-copyright {
    color: #666666;
    font-size: 0.85rem;
    font-weight: 400;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px 0;
    }
    
    .footer-content {
        padding: 0 20px;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .logo-subtext {
        font-size: 1rem;
        top: -8px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .separator {
        display: none;
    }
}



