/* Update the root color variables (around line 1-20) */
:root {
    --primary-color: #610b8a;
    /* Professional purple */
    --secondary-color: #4A148C;
    /* Medium slate blue - lighter purple */
    --accent-color: #e74c3c;
    /* Keeping your accent color */
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --gradient-primary: linear-gradient(135deg, #4A148C, #7B1FA2);
    /* Deep purple gradient */
    --gradient-secondary: linear-gradient(135deg, #e74c3c, #c0392b);
    --bg-light: #ffffff;
    --card-bg: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.15);
    --container-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --transition-speed: 0.3s;
    overflow-x: hidden;
}

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    scroll-behavior: smooth;
    min-width: 0;
    overflow-x: hidden;
    /* background-image: url('Pictures/explore.jpg') */
}

body {
    background-size: fill;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    align-items: center;
    justify-content: center;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Inter:wght@400&family=DM+Sans:wght@400&display=swap');


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    /* Bold */
}

body,
p,
span,
a,
li {
    font-family: 'Inter', sans-serif;
    /* Default to Inter */
    font-weight: 400;
    /* Regular */
}

/* Optional: Fallback to DM Sans if Inter is unavailable */
body,
p,
span,
a,
li {
    font-family: 'Inter', 'DM Sans', sans-serif;
}

#navigateHome {
    text-decoration: none;
    /* Removes underline */
    /* color: #0064E1; */

    color: var(--primary-color);
    /* Keeps the default text color */
    display: inline-block;
    /* Prevents underline from appearing due to inline element */
}

#navigateHome:visited,
#navigateHome:hover,
#navigateHome:focus {
    text-decoration: none;
    /* Ensures no underline on visit, hover, or focus */
    /* color: #0045bc; */
    color: rgb(215, 215, 215);
    /* Ensures color stays consistent */
}

#navigateHome h1 {
    margin: 0;
}

/* Company Name */
.Companyname {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 0.8rem;
    margin: 0;
    box-shadow: var(--shadow);
}

.company-logo img {
    width: 100x;
    height: 100px;
    border-radius: 50%;
    margin-right: 0.5rem;

}


.Companyname h1 {
    color: white;
    font-size: 2rem;
    letter-spacing: 2px;
}

.company-logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Header Navigation */
.Header-bar {
    background: white;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
    width: 100%;
}

.Header {
    /* background: linear-gradient(to right, #004aad, #007bff); */
    background: white;
    /* box-shadow: 0 4px 18px -4px rgba(60, 60, 120, 0.15); */
    color: white;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10000;
    position: sticky;
    top: 0;
    width: 100%;
    box-sizing: border-box;

}

.company-logo {
    flex-shrink: 0;
}

.Header-nav {
    margin-left: auto;
    margin-right: 100px;
    /* Push the navigation to the right */
    display: flex;
    justify-content: flex-end;
    /* Align items to the right */
    align-items: center;
}

.Header-nav ul {
    display: flex;
    gap: 20px;
    /* Add spacing between navigation items */
    list-style: none;
    margin: 0;
    padding: 0;
}

.Header-nav ul li {
    position: relative;
}

.Header-nav ul li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: #000000;
    text-decoration: none;
    padding: 6px 0;
    display: inline-block;
    transition: color 0.2s;
    position: relative;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.Header-nav ul li a::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 4px;
    background: #791da0;
    border-radius: 2px;
    transition: width 0.25s cubic-bezier(.4, 0, .2, 1);
}


.Header-nav ul li a:hover::after,
.Header-nav ul li a.active::after {
    width: 100%;
}

.location-select select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

.location-select select:hover {
    border-color: #007bff;
}

.location-select {
    flex-shrink: 0;
}

.search-box {
    flex-shrink: 0;
    display: flex;
    gap: 0.5rem;
}

.search-box input {
    padding: 0.4rem 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    width: 200px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.search-box button {
    padding: 0.4rem 0.8rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.header-icons {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-left: 0.8rem;
}

.likes-btn,
.profile-btn {
    font-size: 1rem;
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;

}

.likes-btn a {
    color: inherit;
    text-decoration: none;
    display: inline-block;

}

.likes-btn a:hover {
    color: #ff4d6d;
    /* Change to your preferred hover color */
}

/* Profile dropdown styles */
.profile-btn {
    position: relative;

}

.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    z-index: 1000;
    margin-top: 10px;
}

.profile-dropdown a {
    display: block;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.2;
}

.profile-dropdown a:hover {
    background-color: #f5f5f5;
}

.login-indicator {
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
}

#signOutButton {
    border-top: 1px solid #f0f0f0;
}

.likes-btn:hover,
.profile-btn:hover {
    color: var(--primary-color);
}

.likes-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: white;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

.profile-btn a {
    color: inherit;
    text-decoration: none;
}

.likes-btn i,
.profile-btn i,
.announcement-btn i {
    color: black;
}




.main-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
    width: 100%;
}

/* Coupons and Discounts Heading and Paragraph */
.main-container h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #004aad;
    text-align: center;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.main-container p {
    font-size: 1.2rem;
    color: black;
    margin-bottom: 20px;
    line-height: 1.8;
}

.main-para {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: center;


}

.coupon-section {
    background: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.coupon-section h3 {
    font-size: 1.8rem;
    color: black;
    margin-bottom: 10px;
}

.coupon-section p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

.coupon-section ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.coupon-section ol li {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

/* Full-screen coupon section */
.fullscreen-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 2rem 0;
    background: linear-gradient(135deg, #5297ff 0%, #e4edf5 100%);
    position: relative;
}

.coupon-content-wrapper {
    width: 90%;
    max-width: 1400px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    height: 75vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.coupon-info-container {
    display: flex;
    gap: 2.5rem;
    height: 100%;
}

.coupon-text {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.coupon-text h2 {
    font-size: 2.2rem;
    color: #002244;
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.9rem;
    border-bottom: 2px solid #e0e0e0;
}

.coupon-description {
    flex-grow: 1;
}

.coupon-description h3 {
    font-size: 1.6rem;
    color: #003366;
    margin: 0 0 1rem 0;
}

.redemption-steps {
    padding-left: 1.25rem;
}

.redemption-steps li {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
    line-height: 1.5;
    color: #444;
    padding-left: 0.5rem;
}



.coupon-right-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.coupon-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 2rem;
}

.coupon-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    /* border: 1px dashed #002244; */
    padding: 0.6rem;
}

.validity {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    text-align: center;
    background: #f8f8f8;
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    border: 1px solid #ddd;
}

.price-container {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid #eee;
    margin-bottom: 1.5rem;
}

.price-details {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: #000000 !important;
    font-size: 1.5rem !important;
    margin: 0;
}

.discount-price {
    font-size: 1.5rem !important;
    font-weight: 400;
    color: #000000 !important;
    margin: 0;
}

.discount-label {
    background-color: hsl(217, 100%, 70%);
    color: white !important;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 600;
    margin: 0;
}


.voucher-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.add-to-cart-btn,
.buy-now-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

/* Universal Button Styling for All Coupon Sections */
.add-to-cart-btn {
    background-color: #f8f9fa;
    /* Light gray/white */
    color: #2d3748;
    /* Dark slate gray */
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.add-to-cart-btn:hover {
    background-color: #edf2f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.buy-now-btn {
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: white;
    border: none;
    box-shadow: 0 4px 10px rgba(58, 123, 213, 0.3);
}

.buy-now-btn:hover {
    background: linear-gradient(135deg, #2d6bc1, #00b8e0);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(58, 123, 213, 0.4);
}

.video-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 10%;
    max-height: 200px;
    /* Add this to limit maximum height */
}

.video-container h3 {
    font-size: 1.4rem;
    color: #003366;
    margin: 0 0 0.0rem 0;
}

.video-wrapper {
    flex: 1;
    width: 90%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    min-height: 200px;
    max-height: 200px;
    /* Add this to maintain fixed height */
    position: relative;
    /* Add this for positioning context */
}

/* Ensure embedded iframes and videos fill the wrapper and maintain aspect ratio */
.video-wrapper iframe,
.video-wrapper video {
    width: 100%;
    height: 100%;
    min-height: 200px;
    max-height: 315px;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}


/* Custom color schemes for each coupon section */

/* GRE Section */
.gre-section {
    /* background: linear-gradient(135deg, #5297ff 0%, #e4edf5 100%); */
    background: #004AAD;
}

.gre-discount {
    background-color: hsl(217, 100%, 70%);
}

.gre-btn:hover {
    background-color: #003366;

}

/* TOEFL Section */
.toefl-section {
    background: linear-gradient(135deg, #ff7d26 0%, #e9f5d8 100%);
    background: #FF914D;
}

.toefl-discount {
    background-color: #ff8e55;
}

.toefl-btn {
    background-color: #2e6b28;
}

.toefl-btn:hover {
    background-color: #1d4c1a;
}

/* Duolingo Section */
.duolingo-section {
    background: linear-gradient(135deg, #ce16fc 0%, #ffa7a7 100%);
    background: #FF5757;
}

.duolingo-discount {
    background-color: #d99fff;
}

.duolingo-btn {
    background-color: #58008e;
}

.duolingo-btn:hover {
    background-color: #410068;
}

/* PTE Section */
.pte-section {
    background: linear-gradient(135deg, #1c9f6b 0%, #e4f1f5 100%);
    background: #7ED957;
}

.pte-discount {
    background-color: #44d39a;
}

.pte-btn {
    background-color: #1a6985;
}

.pte-btn:hover {
    background-color: #0d4759;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .coupon-content-wrapper {
        padding: 1.75rem;
        height: auto;
        min-height: 85vh;
    }

    .redemption-steps li {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .coupon-info-container {
        gap: 1.5rem;
    }

    .coupon-text h2 {
        font-size: 1.8rem;
    }

    .coupon-description h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .Header {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 10px 15px;
    }

    .Header-nav ul {
        gap: 10px;
        flex-wrap: wrap;
    }

    .Header-nav ul li a {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }

    .search-box {
        width: 100%;
        order: 10;
    }

    .search-box input {
        flex: 1;
        width: 100%;
    }

    .location-select {
        order: 5;
    }

    .header-icons {
        order: 6;
    }
}

@media (max-width: 576px) {
    .Header-nav ul {
        display: none;
    }

    .company-logo img {
        width: 60px;
        height: 60px;
    }
}

.coupon-right-panel {
    flex-direction: column;
}

.coupon-image {
    margin-bottom: 1.5rem;
}

.video-container {
    min-height: 250px;
}

.voucher-actions {
    margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
    .fullscreen-section {
        min-height: auto;
        padding: 1rem 0;
    }

    .coupon-content-wrapper {
        width: 95%;
        padding: 1.25rem;
    }

    .add-to-cart-btn,
    .buy-now-btn {
        padding: 0.75rem 1rem;
    }

    .video-wrapper {
        min-height: 180px;
    }
}

/* Fix for other sections to maintain design consistency */
.coupon-section:not(.fullscreen-section) {
    padding: 2rem;
    margin: 2rem 0;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .coupon-content-wrapper {
        padding: 30px;
        height: 90vh;
    }
}

@media (max-width: 768px) {
    .coupon-info-container {
        flex-direction: column;
        gap: 20px;
        height: auto;
    }

    .coupon-text h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .coupon-description h3 {
        font-size: 1.4rem;
    }

    .coupon-content-wrapper {
        height: auto;
        min-height: 90vh;
    }

    .video-container {
        height: 300px;
    }

    .price-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .voucher-actions {
        width: 100%;
    }

    .add-to-cart-btn,
    .buy-now-btn {
        flex: 1;
        text-align: center;
    }
}

.coupon-header h3 {
    text-align: center;
    justify-items: center;
    margin: 20px 0;
}

.video-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 20px;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    border: none;
    border-radius: 10px;
    object-fit: cover;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    /* Adjust the height as needed */
    background-image: url('Pictures/Vouchers/vouchers\ main\ logo.png');
    /* Replace with your hero image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

/* Hero Section with Video Background */
.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-section {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 300px;
    }
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-background .video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

/* Show fallback image if video fails to load */
.video-background video:not([src]),
.video-background video[src=""]~.video-fallback {
    display: block;
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 10;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-cta-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero-cta-btn:hover {
    background-color: var(--secondary-color);
}

/* Voucher Actions */
.voucher-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.add-to-cart-btn,
.buy-now-btn {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn {
    background-color: #f39c12;
    color: white;
}

.add-to-cart-btn:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.buy-now-btn {
    background-color: #27ae60;
    color: white;
}

.buy-now-btn:hover {
    background-color: #2ecc71;
    transform: translateY(-2px);
}

/* Voucher Details */
.voucher-details {
    margin: 20px 0;
    text-align: center;
    font-size: 1rem;
    color: #333;
}

.voucher-details .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #004aad;
    margin-bottom: 5px;
}

.voucher-details .discount {
    font-size: 1.2rem;
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 5px;
}

.voucher-details .offer {
    font-size: 1rem;
    color: #e67e22;
    margin-bottom: 5px;
}

.voucher-details .terms {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

@media (max-width: 768px) {
    .Header {
        flex-direction: column;
        gap: 1rem;
    }

    .Header-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-container {
        padding: 0 10px;
    }

    .coupon-section {
        padding: 15px;
    }

    .coupon-section h3 {
        font-size: 1.5rem;
    }

    .coupon-section p,
    .coupon-section ol li {
        font-size: 0.9rem;
    }
}

.footer {
    background: #002244;
    /* Dark Navy Blue */
    color: white;
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0px 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    position: relative;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #004aad, #9100ec);
    /* Matches CTA gradient */
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.footer-section h3:hover::after {
    transform: scaleX(1.1);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-section:nth-child(2) ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.footer-section:nth-child(2) ul li {
    margin-bottom: 0.8rem;
}

.footer-section:nth-child(2) ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;

}

.footer-section:nth-child(2) ul li {
    margin-bottom: 0.8rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, #004aad, #9100ec);
    /* Matches CTA gradient */
    transform: translateY(-3px);
}

/* Professional Heading Section */
.voucher-heading-section {
    padding: 0.2rem 0 0.2rem;
    text-align: center;
    background-color: #f5f7fa;
    border-bottom: 1px solid #e4edf5;
    margin-bottom: 1rem;
}

.voucher-heading-container {
    max-width: 1200px;
    margin: 0;
    padding: 0 1rem;
}

.voucher-heading-section h1 {
    font-size: 2.8rem;
    color: #002244;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.heading-underline {
    height: 4px;
    width: 80px;
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    margin: 0 auto 1.2rem;
    border-radius: 2px;
}

.voucher-heading-section p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.faq-section h2 {
    font-size: 2.2rem;
    color: #002244;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

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

.faq-item {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    color: #ffffff;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(109, 40, 217, 0.95);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem 2rem;
}

.faq-answer p {
    color: #000000;
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

.faq-answer a {
    color: #a5f3fc;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    color: #67e8f9;
    text-decoration: underline;
}

/* Inquiry Form Section */
.inquiry-form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
}

.inquiry-content {
    display: flex;
    gap: 3rem;
}

.inquiry-text {
    flex: 1;
    padding-top: 1rem;
}

.inquiry-text h2 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.inquiry-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 2rem;
}

.inquiry-contact-info {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item span {
    font-size: 1rem;
    color: #374151;
    font-weight: 500;
}

.inquiry-form-container {
    flex: 1.2;
    background-color: white;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 1rem;
    color: #2d3748;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #3a7bd5;
    box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.2);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.checkbox-group input {
    margin-top: 0.25rem;
}

.checkbox-label {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4a5568;
}

.form-actions {
    margin-top: 1rem;
}

.submit-btn {
    padding: 1rem 2rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.submit-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4);
}

.submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

/* Form Success Message */
.success-message {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.success-message h2 {
    font-size: 2rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.success-message p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ef4444;
}

.form-group.error .form-error {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .inquiry-content {
        flex-direction: column;
    }

    .inquiry-text {
        padding-top: 0;
    }

    .voucher-heading-section h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .voucher-heading-section h1 {
        font-size: 2rem;
    }

    .voucher-heading-section p {
        font-size: 1.1rem;
    }

    .inquiry-form-container {
        padding: 1.5rem;
    }
}

.footer {
    background: #002244;
    /* Keeping your dark Navy Blue */
    color: white;
    padding: 4rem 6rem 2rem;
}

.footer-content {
    max-width: 1600px;
    margin: 0px 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Changed to 3 columns */
    gap: 1rem;
    text-align: left;
    /* Changed from center to left alignment */
}

.footer-section h3 {
    position: relative;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #004aad, #9100ec);
    /* Keeping your gradient */
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.footer-section h3:hover::after {
    transform: scaleX(1.1);
}

.footer-section.about p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #ecf0f1;
    text-align: left;
}

.footer-section .contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    color: #ecf0f1;
}

.footer-section .contact p i {
    margin-right: 0.8rem;
    color: #3498db;
}

/* Quick Links Section */
.footer-section.quick-links {
    max-width: 180px;
    margin: 0 auto;
}

.centered-links {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
    padding: 0;
    margin: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
    text-align: left;
}

.footer-section.quick-links li a {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

/* Social Links Section */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(135deg, #004aad, #9100ec);
    /* Matches your CTA gradient */
    transform: translateY(-3px);
}

/* Footer Bottom Section */
.footer-bottom {
    background-color: #001530;
    /* Slightly darker than the footer background */
    padding: 1.5rem 1rem;
    text-align: center;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;

}

.footer-bottom p {
    color: #ecf0f1;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: #3498db;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .links-columns {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-links {
        justify-content: flex-start;
    }
}