:root {
    --gold: #FFD700;
    --orange: #FF8C00;
    --dark-orange: #FF6B00;
    --deep-orange: #FF4500;
    --black: #0a0a0a;
    --dark-bg: #121212;
    --dark-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FF8C00 50%, #FF4500 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.3);
    --shadow-intense: 0 8px 40px rgba(255, 140, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-gold);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #FF6B00 0%, #FFD700 100%);
    bottom: -150px;
    left: -150px;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--gradient-gold);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 800;
}

.logo-icon {
    font-size: 32px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    color: var(--text-primary);
}

.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge {
    padding: 8px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--gold);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: start;
}

.hero-left {
    padding-top: 20px;
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 30px;
}

.announcement-badge i {
    font-size: 16px;
}

.hero-title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.subtitle {
    display: block;
    font-size: 38px;
    margin-top: 12px;
    color: var(--text-secondary);
    font-weight: 700;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Hero Features */
.hero-features {
    margin-bottom: 50px;
}

.hero-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon-box {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    padding: 25px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

.stat-icon {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.stat-value {
    font-size: 42px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-value::after {
    content: '%';
    font-size: 24px;
}

.stat-item:nth-child(2) .stat-value::after {
    content: '/7';
}

.stat-item:nth-child(3) .stat-value::after {
    content: '%';
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.trust-badge i {
    color: var(--gold);
    font-size: 16px;
}

/* Hero Right - Form Container */
.hero-right {
    position: sticky;
    top: 20px;
}

.form-container {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: var(--shadow-intense);
    position: relative;
    overflow: hidden;
}

.form-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1642543492950-e764c57e0e55?w=600&h=800&fit=crop') center/cover;
    opacity: 0.08;
    z-index: 0;
}

.form-content {
    position: relative;
    z-index: 1;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    z-index: 2;
}

.form-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--black);
    margin: 0 auto 20px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Form Styles */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--gold);
    font-size: 14px;
}

.form-group input {
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Submit Button */
.submit-btn {
    padding: 16px 35px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 12px;
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-intense);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Form Message */
.form-message {
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    display: none;
}

.form-message.success {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
    display: block;
}

.form-message.error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff4444;
    display: block;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 12px;
    color: var(--text-secondary);
}

.form-footer i {
    color: var(--gold);
}

/* Image Showcase Section */
.image-showcase {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.5);
}

.showcase-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.showcase-item {
    position: relative;
}

.showcase-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-gold);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 140, 0, 0.4) 50%, rgba(255, 69, 0, 0.3) 100%);
    mix-blend-mode: multiply;
    transition: opacity 0.3s ease;
}

.showcase-item:hover .image-overlay {
    opacity: 0.7;
}

.showcase-item:hover .showcase-image {
    transform: translateY(-5px);
    box-shadow: 0 8px 50px rgba(255, 140, 0, 0.6);
}

.showcase-image {
    transition: all 0.4s ease;
    cursor: pointer;
}

.showcase-image:hover::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    z-index: 10;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 24 24'%3E%3Cpath d='M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z'/%3E%3C/svg%3E");
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    animation: fadeInArrow 0.3s forwards;
}

@keyframes fadeInArrow {
    to { opacity: 1; }
}

.showcase-label {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.showcase-label i {
    font-size: 20px;
    color: var(--gold);
}

/* Section Badges */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-badge i {
    font-size: 14px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: rgba(26, 26, 26, 0.3);
    position: relative;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    overflow: hidden;
    z-index: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-hero-image:hover {
    filter: brightness(1.1);
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 140, 0, 0.3) 50%, rgba(255, 69, 0, 0.2) 100%);
    mix-blend-mode: multiply;
}

.about-hero-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--black));
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-card {
    padding: 40px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    background: rgba(26, 26, 26, 0.9);
}

.about-number {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.about-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* Features Section */
.features {
    padding: 100px 0;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 35px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    background: rgba(26, 26, 26, 0.9);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--gradient-gold);
    color: var(--black);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: rgba(26, 26, 26, 0.3);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.why-choose-left {
    padding-right: 20px;
}

.why-list {
    margin-top: 40px;
}

.why-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.why-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
}

.why-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.why-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

/* Success Image Card */
.success-image-card {
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-gold);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.success-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.success-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 140, 0, 0.35) 50%, rgba(255, 69, 0, 0.25) 100%);
    mix-blend-mode: multiply;
}

/* Testimonial Card */
.testimonial-card {
    padding: 35px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    margin-bottom: 30px;
}

.testimonial-header {
    margin-bottom: 20px;
}

.stars {
    display: flex;
    gap: 5px;
}

.stars i {
    color: var(--gold);
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 22px;
}

.author-info h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Stats Box */
.stats-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stats-box-item {
    padding: 25px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stats-box-item i {
    font-size: 32px;
    color: var(--gold);
}

.stats-box-value {
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-box-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    color: var(--text-secondary);
    font-size: 14px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    margin-top: 60px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 60px rgba(255, 140, 0, 0.6);
    max-width: 600px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.modal-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.modal-form-container {
    position: relative;
}

/* Chat Module Styles */
.chat-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    color: var(--black);
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 6px 30px rgba(255, 140, 0, 0.6);
    transition: all 0.3s ease;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(255, 140, 0, 0.8);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--black);
}

.chat-module {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 380px;
    max-height: 600px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 50px rgba(255, 140, 0, 0.5);
    display: none;
    flex-direction: column;
    z-index: 9997;
    animation: slideUpChat 0.4s ease;
}

.chat-module.active {
    display: flex;
}

@keyframes slideUpChat {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.chat-header {
    background: var(--gradient-gold);
    padding: 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--black);
}

.chat-header-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.chat-status {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.7);
}

.chat-minimize {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-minimize:hover {
    background: rgba(0, 0, 0, 0.3);
}

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-message {
    display: flex;
    gap: 12px;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.message-avatar {
    width: 35px;
    height: 35px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--black);
    flex-shrink: 0;
}

.user-message .message-avatar {
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold);
}

.message-content {
    background: rgba(255, 215, 0, 0.1);
    padding: 12px 16px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    max-width: 75%;
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-content {
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
}

.message-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.chat-option-btn {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 10px 15px;
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.chat-option-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--gold);
    transform: translateX(5px);
}

.chat-input-container {
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    gap: 10px;
}

.chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 25px;
    padding: 12px 18px;
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.chat-input:focus {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.05);
}

.chat-send {
    background: var(--gradient-gold);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--black);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-send:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.5);
}

.chat-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    border-top: 3px solid var(--gold);
    padding: 25px 30px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    z-index: 9996;
    display: none;
    animation: slideUpCookie 0.5s ease;
}

.cookie-consent.active {
    display: block;
}

@keyframes slideUpCookie {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.cookie-icon {
    font-size: 48px;
    color: var(--gold);
    flex-shrink: 0;
}

.cookie-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.cookie-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}

.cookie-policy-link {
    color: var(--gold);
    text-decoration: underline;
    font-size: 13px;
    transition: all 0.3s ease;
}

.cookie-policy-link:hover {
    color: var(--orange);
}

.cookie-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.cookie-accept {
    background: var(--gradient-gold);
    color: var(--black);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
}

.cookie-reject {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.cookie-settings {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.cookie-settings:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--gold);
}

/* Cookie Settings Modal */
.cookie-settings-content {
    max-width: 600px;
}

.cookie-settings-header {
    text-align: center;
    margin-bottom: 30px;
}

.cookie-settings-header h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cookie-settings-header p {
    color: var(--text-secondary);
    font-size: 15px;
}

.cookie-settings-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.cookie-category {
    padding: 20px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.cookie-category h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.cookie-category p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: 0.4s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background: var(--gradient-gold);
}

input:checked + .cookie-slider:before {
    transform: translateX(24px);
    background-color: var(--black);
}

input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-settings-footer {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Field Highlighting Animation */
.field-highlight {
    animation: highlightPulse 2s ease-in-out;
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3) !important;
    background: rgba(255, 215, 0, 0.1) !important;
}

@keyframes highlightPulse {
    0% {
        box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3);
        border-color: var(--gold);
    }
    25% {
        box-shadow: 0 0 0 8px rgba(255, 215, 0, 0.4);
        border-color: var(--orange);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(255, 215, 0, 0.5);
        border-color: var(--deep-orange);
    }
    75% {
        box-shadow: 0 0 0 8px rgba(255, 215, 0, 0.4);
        border-color: var(--orange);
    }
    100% {
        box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3);
        border-color: var(--gold);
    }
}

.field-highlight::placeholder {
    color: rgba(255, 215, 0, 0.7) !important;
}

/* Enhanced focus state for highlighted fields */
.field-highlight:focus {
    animation: none;
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 6px rgba(255, 215, 0, 0.4) !important;
    background: rgba(255, 215, 0, 0.15) !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr 420px;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .subtitle {
        font-size: 32px;
    }
    
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-right {
        position: static;
    }
    
    .form-container {
        max-width: 550px;
        margin: 0 auto;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .showcase-container {
        grid-template-columns: 1fr;
    }
    
    .about-hero-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }
    
    .subtitle {
        font-size: 26px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 30px 25px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .trust-badges {
        gap: 10px;
    }
    
    .trust-badge {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .about-hero-image {
        height: 250px;
    }
    
    .image-showcase {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 22px;
    }
    
    .stat-value {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .form-header h2 {
        font-size: 24px;
    }
    
    .chat-module {
        width: 100%;
        max-width: 100%;
        bottom: 0;
        right: 0;
        left: 0;
        border-radius: 20px 20px 0 0;
        max-height: 70vh;
    }
    
    .chat-toggle {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .cookie-consent {
        padding: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-icon {
        font-size: 36px;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        justify-content: center;
    }
    
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }
}
