/* General Body Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Header and Navigation */
header {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: #555;
}

/* Hero Section */
.hero {
    background: url('efb22533077888224530dec240bb54bc.mp4') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    position: relative;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.urgency-badge {
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 1.3rem;
    margin-bottom: 25px;
    line-height: 1.5;
    opacity: 0.95;
}

.hero-benefits {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-item {
    font-size: 1rem;
    font-weight: 500;
}

.cta-buttons {
    margin: 30px 0;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-indicators {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.9;
}

.trust-item {
    font-size: 0.9rem;
    font-weight: 500;
}

.btn {
    display: inline-block;
    background-color: #efb810;
    color: #333;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #d8a40e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    color: #000;
    font-size: 1.1rem;
    padding: 15px 30px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #efb810;
}

.btn-secondary:hover {
    background: #efb810;
    color: #333;
}

.btn-large {
    font-size: 1.2rem;
    padding: 18px 35px;
    font-weight: 600;
}

.btn-service {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    font-size: 0.9rem;
    padding: 10px 20px;
    margin-top: 15px;
    width: 100%;
}

.btn-service:hover {
    background: linear-gradient(45deg, #45a049, #4CAF50);
}

/* Main Content Sections */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.section {
    margin-bottom: 40px;
}

.section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Services Page */
.service-item {
    text-align: center;
}

.service-item i {
    font-size: 2.5rem;
    color: #efb810;
    margin-bottom: 10px;
}

/* Contact Page */
.contact-form {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

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

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

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

.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.animate-left.show {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.animate-right.show {
    opacity: 1;
    transform: translateX(0);
}

.animate-delay-1 {
    transition-delay: 0.2s;
}

.animate-delay-2 {
    transition-delay: 0.4s;
}

.animate-delay-3 {
    transition-delay: 0.6s;
}

/* New Component Styles */
.value-props .value-prop {
    text-align: center;
    padding: 30px 20px;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.testimonials-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.testimonials-grid .testimonial {
    background: white;
    padding: 30px;
    border-left: 4px solid #efb810;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-author {
    margin-top: 20px;
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
}

.cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
}

.cta-subtext {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.urgency-text {
    background: rgba(255, 107, 107, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    margin: 20px 0;
    font-weight: 500;
}

.guarantee-text {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Services Page Enhancements */
.services-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #666;
}

.service-roi {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin: 10px 0;
    display: inline-block;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.service-benefits li {
    padding: 5px 0;
    font-size: 0.9rem;
}

.guarantee-section {
    background: #f0f8ff;
    padding: 60px 0;
}

.guarantee-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.guarantee-item {
    font-weight: 500;
    color: #4CAF50;
}

/* Contact Page Styles */
.contact-hero {
    text-align: center;
    padding: 40px 0;
}

.urgency-banner {
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    color: #000;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: bold;
    margin-bottom: 30px;
    display: inline-block;
    animation: pulse 2s infinite;
}

.contact-subtext {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.contact-benefits {
    margin: 40px 0;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-form-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.value-reminder {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 10px 0;
}

.guarantee-badge {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 15px 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
}

.contact-sidebar {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    height: fit-content;
}

.process-steps {
    margin: 20px 0;
}

.step {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.step-number {
    background: #efb810;
    color: #333;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.step-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.urgency-box {
    background: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #ffeaa7;
}

.spots-left {
    color: #dc3545;
    font-weight: bold;
}

.contact-alternatives {
    margin-top: 30px;
}

.phone-number, .contact-alternatives a {
    color: #efb810;
    text-decoration: none;
    font-weight: bold;
}

.final-cta {
    background: #333;
    color: white;
    padding: 60px 0;
}

.final-cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.social-proof {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.proof-item {
    font-weight: 500;
    color: #efb810;
}

/* Case Studies */
.case-studies-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.case-study-header {
    border-bottom: 2px solid #efb810;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.case-study-metrics {
    font-size: 0.9rem;
    color: #4CAF50;
    font-weight: bold;
}

.case-study-results {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.result-item {
    font-size: 0.9rem;
    margin: 5px 0;
    color: #333;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-weight: 500;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #efb810;
}

.faq-answer {
    display: none;
    padding-bottom: 20px;
    color: #666;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Authority Section */
.authority-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.authority-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.authority-item {
    text-align: center;
    padding: 30px 20px;
}

.authority-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        position: relative;
    }

    .hamburger {
        display: flex;
        order: 2;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #333;
        flex-direction: column;
        text-align: center;
        margin-top: 0;
        padding: 10px 0;
        display: none;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    nav ul.open {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-benefits, .trust-indicators, .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .contact-form-section {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .guarantee-features, .social-proof {
        flex-direction: column;
        gap: 15px;
    }
}
