/* Coupon */
.coupon {
    background: var(--light);
    position: relative;
    padding: 3rem 0;
}

.coupon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent);
    opacity: 0.05;
}

.coupon-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.coupon-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 2px dashed var(--accent);
}

.coupon-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 77, 109, 0.03), transparent);
    transform: rotate(45deg);
    pointer-events: none;
}

.coupon-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.coupon-header h2 {
    color: var(--primary);
    margin: 0;
    font-size: 2rem;
}

.discount-badge {
    background: var(--primary);
    color: var(--light);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.2rem;
}

.coupon-description {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.benefits {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(141, 153, 174, 0.05);
    border-radius: 10px;
}

.benefits p {
    color: var(--accent);
    margin: 0.5rem 0;
    font-size: 1rem;
}

.code-container {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.code-label {
    color: var(--accent);
    font-size: 0.9rem;
    width: 100%;
}

.code {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary);
    letter-spacing: 2px;
    font-family: monospace;
    flex-grow: 1;
    text-align: center;
}

.copy-btn {
    background: var(--primary);
    color: var(--light);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-btn:hover {
    transform: scale(1.05);
    background: var(--secondary);
}

.copy-message {
    color: var(--accent);
    font-size: 0.9rem;
    text-align: center;
    display: block;
}

.copy-message.success {
    color: #4CAF50;
}

.coupon-expiry {
    color: var(--accent);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1.5rem;
    font-style: italic;
}

:root {
    --primary: #2ecc71;    /* Bright grass green */
    --secondary: #27ae60;  /* Darker field green */
    --accent: #95a5a6;    /* Neutral gray for balance */
    --light: #ecf0f1;     /* Light gray-white */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--secondary);
    background-color: var(--light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

section {
    padding: 4rem 0;
}

/* Section alternation */
section:not(.hero):nth-child(odd) {
    background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
}

section:not(.hero):nth-child(odd) h2 {
    color: var(--primary);
}

section:not(.hero):nth-child(odd) p,
section:not(.hero):nth-child(odd) li {
    color: var(--accent);
}

section:not(.hero):nth-child(even) {
    background: linear-gradient(135deg, var(--secondary) 0%, #1d1f2f 100%);
}

section:not(.hero):nth-child(even) h2,
section:not(.hero):nth-child(even) p,
section:not(.hero):nth-child(even) li {
    color: var(--light);
}

/* Ensure text alignment */
section:not(.hero) h2 {
    text-align: center;
    margin-bottom: 2rem;
}

h1, h2, h3 {
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Header styles */
.hero {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 50%, #66cc99 100%);
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(39, 174, 96, 0.2) 0%, rgba(46, 204, 113, 0.1) 100%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero .btn-primary {
    background: #ffffff;
    color: #27ae60;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero .btn-primary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive header adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }

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

    .hero p {
        font-size: 1.1rem;
    }
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: var(--light);
    text-decoration: none;
    border-radius: 15px;
    font-weight: bold;
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* Video Section */
.video-section {
    background: #000;
    color: #fff;
    padding: 4rem 0;
    position: relative;
}

.video-section .text-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.video-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.video-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
}

.video-gallery {
    background: #000;
    padding: 4rem 0;
    position: relative;
}

.video-gallery h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.video-gallery .container > p {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .video-section h2,
    .video-gallery h2 {
        font-size: 2rem;
    }

    .video-section p,
    .video-gallery .container > p {
        font-size: 1.1rem;
    }
}

.flex-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.text-content, .video-container {
    flex: 1;
}

.video-container video {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Specifications */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.spec-block {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

.spec-block:hover {
    transform: scale(1.05);
}

.spec-block h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.spec-block p {
    color: var(--secondary);
    margin: 0;
    line-height: 1.6;
}

/* Ensure text visibility in dark sections */
section:not(.hero):nth-child(even) .spec-block {
    background: var(--light);
}

section:not(.hero):nth-child(even) .spec-block h3 {
    color: var(--primary);
}

section:not(.hero):nth-child(even) .spec-block p {
    color: #1C1C1C;
}

.specs-content {
    display: block;
}

/* FAQ Accordion */
.faq {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a472a;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 1.25rem;
    background: white;
    color: #1a472a;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: #1a472a;
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(26, 71, 42, 0.1);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a472a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.25rem;
    background: white;
    color: #2c3e50;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq {
        padding: 4rem 0;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .accordion-body {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

/* Gallery */
.gallery {
    background: linear-gradient(135deg, var(--secondary) 0%, #1d1f2f 100%);
    padding: 4rem 0;
}

.gallery h2,
.gallery > .container > p {
    color: var(--light);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.gallery-item, .video-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: var(--secondary);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.gallery-item:hover,
.video-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item img, .video-item video {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.gallery-content {
    padding: 1.5rem;
    background: var(--secondary);
    flex: 1;
}

.gallery-content h3 {
    color: var(--light);
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.gallery-content p {
    color: var(--light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .gallery-grid, .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .gallery-content {
        padding: 1.25rem;
    }

    .gallery-content h3 {
        font-size: 1.1rem;
    }

    .gallery-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 2rem 1rem;
    }

    .gallery-grid, .video-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        gap: 2rem;
    }

    .gallery-item {
        margin-bottom: 1rem;
    }

    .gallery-content {
        padding: 1.25rem;
    }

    .gallery-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .gallery-content p {
        font-size: 0.9rem;
    }
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--secondary);
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: bold;
    color: var(--primary);
}

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

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 77, 109, 0.05) 0%, rgba(141, 153, 174, 0.05) 100%);
    pointer-events: none;
}

.contact .container {
    max-width: 800px;
    position: relative;
}

.contact h2 {
    color: var(--light);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.contact p {
    color: var(--light);
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-top: 2rem;
    border: 2px solid var(--light);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.form-floating {
    position: relative;
    margin-bottom: 1rem;
}

.form-control {
    border: 2px solid var(--light);
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(46, 204, 113, 0.25);
}

.form-floating label {
    padding-left: 0.75rem;
    color: var(--accent);
}

.submit-btn {
    background: var(--primary);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

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

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(46, 204, 113, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.form-message.error {
    display: block;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

.invalid-feedback {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-card {
        padding: 1.5rem;
    }
    
    .submit-btn {
        width: 100%;
    }
}

/* Pricing */
.price-card {
    max-width: 500px;
    margin: 2rem auto;
    background: var(--light);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: scale(1.02);
}

.price-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    padding: 2rem;
    text-align: center;
}

.price-header h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.price-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.original-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.discount-price {
    font-size: 2.5rem;
    font-weight: bold;
}

.discount-badge {
    background: var(--light);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
}

.price-features {
    padding: 2rem;
}

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

.price-features li {
    padding: 0.8rem 0;
    color: var(--accent);
    border-bottom: 1px solid var(--accent);
    opacity: 0.9;
}

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

.price-footer {
    padding: 2rem;
    background: rgba(141, 153, 174, 0.1);
    text-align: center;
}

.price-note {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Motivational Header */
.motivational-header {
    background: #1a472a;
    padding: 0.15rem 0;
}

.motivational-quote {
    color: #ecf0f1;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
    line-height: 1;
}

@media (max-width: 768px) {
    .motivational-header {
        padding: 0.12rem 0;
    }
    
    .motivational-quote {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .motivational-header {
        padding: 0.1rem 0;
    }
    
    .motivational-quote {
        font-size: 1.2rem;
    }
}

/* Footer */
footer {
    background: var(--secondary);
    color: var(--light);
    padding: 4rem 0 0;
}

.footer-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .footer-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
}

.footer-description {
    text-align: left;
}

.copyright {
    background: var(--primary);
    padding: 1rem;
    text-align: center;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .flex-container {
        flex-direction: column;
    }

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

    .footer-description {
        text-align: center;
    }
}

/* WhatsApp Section */
.whatsapp-section {
    background: var(--light);
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.whatsapp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent);
    opacity: 0.05;
}

.whatsapp-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.whatsapp-content h2 {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.whatsapp-description {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 1.3rem;
}

.whatsapp-button span {
    font-family: var(--font-primary);
}

@media (max-width: 768px) {
    .whatsapp-content h2 {
        font-size: 2rem;
    }
    
    .whatsapp-description {
        font-size: 1.1rem;
    }
    
    .whatsapp-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .whatsapp-button i {
        font-size: 1.2rem;
    }
}

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.thanks-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.thanks-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.message-content {
    margin-bottom: 2rem;
}

.main-message {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.sub-message {
    color: var(--accent);
    font-size: 1.1rem;
}

.social-links {
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(141, 153, 174, 0.1);
    border-bottom: 1px solid rgba(141, 153, 174, 0.1);
}

.social-text {
    color: var(--accent);
    margin-bottom: 1rem;
}

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

.social-icon {
    color: var(--accent);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.return-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.return-button:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .thanks-content {
        padding: 2rem 1rem;
        margin: 1rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

    .main-message {
        font-size: 1.1rem;
    }

    .sub-message {
        font-size: 1rem;
    }
}

/* Video Gallery */
.video-gallery {
    background: linear-gradient(135deg, var(--secondary) 0%, #1d1f2f 100%);
    padding: 4rem 0;
}

.video-gallery .container > h2,
.video-gallery .container > p {
    color: var(--light);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-item {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Makes video container square */
    overflow: hidden;
}

.video-item video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #111;
}

.video-content {
    padding: 1.5rem;
    background: #000;
    color: #fff;
}

.video-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.video-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .video-content {
        padding: 1.25rem;
    }
    
    .video-content h3 {
        font-size: 1.1rem;
    }
    
    .video-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .video-gallery {
        padding: 2rem 1rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .video-content {
        padding: 1.25rem;
    }

    .video-content h3 {
        font-size: 1.1rem;
    }

    .video-content p {
        font-size: 0.9rem;
    }
}

.quote-section {
    background: #1a472a;
    color: #fff;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.95) 0%, rgba(46, 204, 113, 0.2) 100%);
    z-index: 1;
}

.quote-section .container {
    position: relative;
    z-index: 2;
}

.quote-section p {
    font-size: 2rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

@media (max-width: 768px) {
    .quote-section {
        padding: 4rem 0;
    }
    
    .quote-section p {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .quote-section {
        padding: 3rem 0;
    }
    
    .quote-section p {
        font-size: 1.25rem;
    }
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #1a472a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

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

.scroll-top:hover {
    background: #2ecc71;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.scroll-top i {
    font-size: 24px;
    line-height: 1;
}

@media (max-width: 768px) {
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-top i {
        font-size: 20px;
    }
}
