* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

:root {
    --primary-bg-color: #0c0c0c;
    --secondary-bg-color: #0c0c0c;
    --primary-text-color: #e3cc97;
    --light-text-color: #fff;
    --dark-text-color: #0c0c0c;

    --big-font: 6.6rem;
    --p-font: 1rem;

    --tip-card-bg: #1e1e1e;
    --border-radius: 10px;
    --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--primary-bg-color);
    color: var(--light-text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Header Section */
header {
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .50s ease;
    position: relative;
    z-index: 1;
}

.header-text {
    font-family: 'Pacifico', cursive;
    font-size: 2em;
    color: var(--primary-text-color);
}

.header-language-selection {
    display: flex;
}

.header-language-selection a {
    display: inline-block;
    margin: 0 10px;
    color: var(--light-text-color);
    font-size: var(--p-font);
    font-family: 'Pacifico', cursive;
    transition: all .6s ease;
    align-items: center;
}

.header-language-selection a:hover {
    color: var(--primary-text-color);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    font-family: Verdana, Geneva, sans-serif;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.hero h1 {
    font-size: 3.25rem;
    margin-bottom: 15px;
    color: var(--primary-text-color);
    line-height: 1.2;
    font-family: Verdana, Geneva, sans-serif;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light-text-color);
    line-height: 1.5;
    font-family: Verdana, Geneva, sans-serif;
}

/* Introduction Section */
.introduction-wrapper {
    background-color: var(--secondary-bg-color);
    width: 100%;
    padding: 80px 0;
}

.introduction {
    text-align: center;
    font-family: Verdana, Geneva, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.introduction h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-text-color);
}

.introduction p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 40px;
}

/* Scores */
.scores {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.score-caption {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--primary-text-color);
    margin-top: 5px;
}

.hidden {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hidden.show {
    opacity: 1;
    transform: translateX(0);
}

/* Scores animation delays */
.scores .hidden:nth-child(1) {
    transition-delay: 0ms;
}

.scores .hidden:nth-child(2) {
    transition-delay: 200ms;
}

.scores .hidden:nth-child(3) {
    transition-delay: 400ms;
}

.scores .hidden:nth-child(4) {
    transition-delay: 600ms;
}

.scores .hidden:nth-child(5) {
    transition-delay: 800ms;
}

.score-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hidden img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 8px;
}

/* Tips Section */
.tips-section {
    font-family: Verdana, Geneva, sans-serif;
    text-align: center;
}

.tips-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-text-color);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.tip-card {
    background-color: var(--tip-card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: left;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-card h3 {
    color: var(--primary-text-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--primary-text-color);
    padding-bottom: 10px;
}

.tip-card ul {
    padding-left: 20px;
}

.tip-card li {
    margin-bottom: 10px;
}

/* Booking Section */
.booking {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.booking-content {
    flex: 1;
    font-family: Verdana, Geneva, sans-serif;
}

.booking-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.booking-image img {
    max-width: 100%;
    height: auto;
}

.booking h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-text-color);
    line-height: 1.2;
    font-family: Verdana, Geneva, sans-serif;
}

.booking h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light-text-color);
    line-height: 1.5;
    font-family: Verdana, Geneva, sans-serif;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-text-color);
    color: var(--dark-text-color);
    border: none;
    border-radius: var(--border-radius);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
    text-align: center;
    margin: 10px 10px 10px 0;
    box-shadow: var(--box-shadow);
    font-family: Verdana, Geneva, sans-serif;
}

.btn:hover {
    background-color: var(--primary-text-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-text-color);
    color: var(--primary-text-color);
}

.btn-outline:hover {
    background-color: var(--primary-text-color);
    color: var(--dark-text-color);
}

/* Footer Styles */
.footer {
    width: 100%;
    padding: 20px 0;
    background-color: var(--primary-bg-color);
    text-align: center;
    border-top: 1px solid #333;
    position: relative;
    z-index: 1;
}

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

.footer p {
    color: var(--primary-text-color);
    font-size: 0.9rem;
    font-family: Verdana, Geneva, sans-serif;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.active,
.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Payment Modal Styles */
.payment-modal {
    display: none;
    /* Keep hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    transition: opacity 0.3s ease;
    /* Changed to opacity for smoother feel */
    opacity: 0;
    /* Start invisible for transition */
    pointer-events: none;
    /* Prevent interaction when hidden */
}

.payment-modal.show {
    /* Class to show modal */
    display: block;
    opacity: 1;
    pointer-events: auto;
}


.modal-content {
    background-color: var(--tip-card-bg);
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #333;
    border-radius: var(--border-radius);
    width: 80%;
    max-width: 900px;
    position: relative;
    box-shadow: var(--box-shadow);
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95);
    /* Slight scale for entry animation */
    transition: transform 0.3s ease;
}

.payment-modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    color: var(--primary-text-color);
    position: absolute;
    /* Position relative to modal-content */
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    /* Ensure proper alignment */
}

.close-modal:hover {
    color: var(--light-text-color);
}

.payment-modal h2 {
    color: var(--primary-text-color);
    margin-bottom: 30px;
    text-align: center;
    font-family: Verdana, Geneva, sans-serif;
    margin-top: 0;
    /* Remove default margin */
}

/* Important Details Section */
.important-details {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #333;
    border-radius: var(--border-radius);
    background-color: rgba(30, 30, 30, 0.5);
}

.important-details h3 {
    color: var(--primary-text-color);
    margin-bottom: 15px;
    font-family: Verdana, Geneva, sans-serif;
    text-align: center;
    margin-top: 0;
}

.important-details h4 {
    color: var(--primary-text-color);
    margin: 20px 0 10px;
    font-family: Verdana, Geneva, sans-serif;
}

.details-list {
    padding-left: 15px;
    list-style-type: none;
    /* Removed bullets as using icons */
    margin: 0;
    /* Reset margin */
}

.details-list li {
    margin-bottom: 10px;
    font-family: Verdana, Geneva, sans-serif;
    line-height: 1.5;
}

.details-list li strong {
    /* Style the bold parts */
    color: var(--light-text-color);
    /* Make labels slightly brighter */
}

.details-list a {
    /* Style link within list */
    color: var(--primary-text-color);
    text-decoration: underline;
}

.details-list a:hover {
    opacity: 0.8;
}


/* Payment Options */
.payment-options {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.payment-option {
    flex: 1;
    padding: 20px;
    border: 1px solid #333;
    border-radius: var(--border-radius);
    background-color: rgba(30, 30, 30, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    /* Center align content */
}

.payment-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.payment-option h3 {
    color: var(--primary-text-color);
    margin-top: 0;
    margin-bottom: 10px;
    /* Reduced margin */
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.4rem;
    /* Slightly smaller title */
}

.payment-option p {
    /* Style the description */
    margin-bottom: 15px;
    /* Reduced margin */
    font-family: Verdana, Geneva, sans-serif;
    font-size: 0.9rem;
    color: #ccc;
    /* Lighter color for description */
}

.upi-qr {
    width: 180px;
    /* Slightly smaller QR */
    height: 180px;
    display: block;
    margin: 15px auto 15px;
    /* Adjusted margins */
    border: 3px solid var(--primary-text-color);
    /* Add border */
    border-radius: 5px;
}

.important-note {
    margin-top: 15px;
    color: var(--primary-text-color);
    font-weight: bold;
    font-size: 0.9rem;
    /* Slightly smaller note */
}

.important-note a {
    color: var(--primary-text-color);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.important-note a:hover {
    opacity: 0.8;
}

/* REMOVED .payment-btn.disabled style */

/* Price display styles */
.price-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px auto;
    /* Center banner, reduced margin */
    position: relative;
    padding: 10px 15px;
    /* Adjusted padding */
    background-color: rgba(40, 40, 40, 0.7);
    border-radius: var(--border-radius);
    width: fit-content;
}

.original-price {
    font-size: 1.5rem;
    /* Adjusted size */
    color: #aaa;
    /* Slightly brighter grey */
    text-decoration: line-through;
    margin-right: 10px;
    /* Reduced space */
}

.discount-price {
    font-size: 2rem;
    /* Adjusted size */
    color: var(--primary-text-color);
    font-weight: bold;
}

.discount-badge {
    position: absolute;
    top: -10px;
    /* Adjusted position */
    right: -10px;
    /* Adjusted position */
    background-color: #d12c2c;
    /* Default badge color */
    color: white;
    padding: 4px 8px;
    /* Adjusted padding */
    border-radius: 15px;
    /* Adjusted radius */
    font-size: 0.8rem;
    /* Adjusted size */
    font-weight: bold;
    transform: rotate(5deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Different badge color for international if needed */
#buymeacoffee-option .discount-badge {
    background-color: #1f7ed0;
}


/* Terms agreement notice */
.terms-agreement-notice {
    margin: 25px 0 10px;
    /* Adjusted margin */
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--primary-text-color);
    border-radius: 4px;
}

.terms-agreement-notice p {
    margin: 0;
    font-size: 1rem;
    /* Adjusted size */
    line-height: 1.4;
}

/* Make the modal look better on mobile */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 8% auto;
        /* Adjusted margin */
        padding: 20px;
        max-height: 85vh;
        /* Adjust max height */
    }

    .payment-options {
        flex-direction: column;
        gap: 20px;
        /* Reduced gap */
    }

    .payment-option {
        padding: 15px;
    }

    .payment-option h3 {
        font-size: 1.3rem;
    }

    .price-banner {
        /* Keep flex-direction row for better comparison on mobile */
        padding: 8px 12px;
        margin: 10px auto;
    }

    .original-price {
        font-size: 1.3rem;
        margin-right: 8px;
    }

    .discount-price {
        font-size: 1.7rem;
    }

    .discount-badge {
        font-size: 0.75rem;
        padding: 3px 7px;
        top: -8px;
        right: -8px;
    }

    .upi-qr {
        width: 150px;
        height: 150px;
    }

    .important-note {
        font-size: 0.85rem;
    }

    .details-list li {
        font-size: 0.9rem;
    }

    .terms-agreement-notice p {
        font-size: 0.95rem;
    }

    .close-modal {
        top: 10px;
        right: 15px;
        font-size: 24px;
    }

    .payment-modal h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        /* Center text on mobile */
    }

    .hero-content {
        order: 2;
        /* Text below image */
    }

    .hero-image {
        order: 1;
        /* Image above text */
        margin-bottom: 30px;
        /* Space between image and text */
    }

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

    .hero h2 {
        font-size: 1.3rem;
        /* Slightly smaller subtitle */
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .booking {
        flex-direction: column;
        text-align: center;
        /* Center text on mobile */
    }

    .booking-content {
        order: 2;
        /* Text below image */
    }

    .booking h1 {
        font-size: 2rem;
    }

    .booking-image {
        order: 1;
        /* Image above text */
        margin-bottom: 30px;
        /* Space between image and text */
    }

    section {
        padding: 60px 20px;
        min-height: auto;
        /* Remove min-height on mobile */
    }

    /* REMOVED .testimonial-card media query styles */

    .header {
        padding: 15px 5%;
        /* Adjust header padding */
    }

    .header-text {
        font-size: 1.8em;
        /* Adjust logo size */
    }

    .header-language-selection a {
        margin: 0 5px;
        /* Reduce space between lang links */
        font-size: calc(var(--p-font) * 0.9);
        /* Smaller lang links */
    }
}

/* Score Responsive adjustments (kept from original) */
/* Desktop view (default) */
@media (min-width: 769px) {
    .scores {
        flex-wrap: nowrap;
    }
}

/* Tablet view */
@media (max-width: 768px) and (min-width: 481px) {
    .scores {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .score-item {
        width: calc(50% - 20px);
    }

    /* Overall score gets its own row */
    .score-item.overall-score {
        /* More specific selector */
        margin-top: 20px;
        width: 100%;
        max-width: 180px;
        /* Adjusted max-width */
        margin-left: auto;
        /* Center it */
        margin-right: auto;
    }
}

/* Mobile view */
@media (max-width: 480px) {
    .scores {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .score-item {
        width: calc(50% - 15px);
        /* Adjust width and gap */
        gap: 15px;
    }

    /* Make sure listening and speaking are on the first row */
    .score-item:nth-child(1),
    .score-item:nth-child(2) {
        margin-bottom: 15px;
    }

    /* Overall score gets its own row */
    .score-item.overall-score {
        /* More specific selector */
        margin-top: 15px;
        width: 100%;
        max-width: 160px;
        /* Adjusted max-width */
        margin-left: auto;
        /* Center it */
        margin-right: auto;
    }

    .score-item img {
        /* Adjust score image size on mobile */
        width: 120px !important;
        height: 120px !important;
    }

    .score-caption {
        font-size: 0.8rem;
        /* Smaller caption */
    }
}

/* Add any other styles below */