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

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #0056b3;
    --primary-dark: #003d82;
    --secondary-color: #a81cff;
    --text-dark: #333;
    --text-light: #666;
    --text-lighter: #888;
    --bg-light: #f9f9f9;
    --bg-white: #fff;
    --shadow-sm: 0 2px 5px 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);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-fast: all 0.2s ease;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

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

/* Enhanced lazy loading for images */
img[data-src] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img.loaded {
    opacity: 1;
}

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

/* Enhanced Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(0);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    header {
        padding: 0.8rem 4%;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.6rem 3%;
    }
}

header.scrolled {
    padding: 0.8rem 5%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
    max-width: 60%;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo:hover::after {
    width: 100%;
}

.logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo:hover img {
    transform: rotate(5deg);
}

.logo span {
    white-space: nowrap;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: block;
}

@media (max-width: 576px) {
    .logo span {
        white-space: normal;
        line-height: 1.2;
        font-size: 0.9em;
    }
}

/* Weather and Currency Widget */
.utility-widgets {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
    margin-right: 1.5rem;
    font-size: 0.9rem;
}

.weather-widget, 
.currency-widget {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background-color: var(--bg-light);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.weather-widget:hover, 
.currency-widget:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background-color: rgba(0, 86, 179, 0.1);
}

.weather-widget i, 
.currency-widget i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.weather-temp, 
.currency-rate {
    font-weight: 600;
    color: var(--primary-color);
}

.weather-city, 
.currency-name {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Enhanced Nav styles */
nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--secondary);
}

@media (max-width: 768px) {
    nav ul {
        gap: 1.2rem;
    }

    nav a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    nav ul {
        gap: 1rem;
    }

    nav a {
        font-size: 0.8rem;
    }
}

.cta-button {
    background: linear-gradient(135deg, #007bff, #00bfff);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    overflow: hidden;
    text-decoration: none;
    position: relative;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00bfff, #007bff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    color: white;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:active {
    transform: translateY(1px);
}

.cta-button i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: scale(1.1);
}

.cta-button .price {
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-left: 3px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .cta-button {
        padding: 8px 12px;
        font-size: 0.85rem;
        border-radius: 6px;
    }

    .cta-button .price {
        padding: 2px 4px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 6px 10px;
        font-size: 0.8rem;
        border-radius: 5px;
    }

    .cta-button i {
        font-size: 0.8rem;
    }

    .cta-button .price {
        padding: 2px 4px;
        font-size: 0.7rem;
    }
}

/* Enhanced Hero slider */
.hero-slider {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: var(--bg-light);
    box-shadow: inset 0 -5px 10px rgba(0, 0, 0, 0.05);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    transform: translateX(100px);
    visibility: hidden;
}

.slide.leaving {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    z-index: 2;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0.85;
    transition: opacity 0.8s ease;
}

.slide.active::before {
    opacity: 0.8;
}

.slide.active {
    opacity: 1;
    z-index: 3;
    transform: translateX(0);
    visibility: visible;
}

.slide-content {
    text-align: left;
    padding: 2rem;
    max-width: 800px;
    position: relative;
    z-index: 3;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
    margin-left: 5%;
    margin-right: auto;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.slide-content h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), #ff4500);
    z-index: -1;
    transition: all 0.5s ease;
}

.hero-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s;
}

.hero-cta:hover {
    background-color: #ff5100;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.5);
    color: white;
}

.hero-cta:hover::before {
    transform: scale(1.1) rotate(-2deg);
}

.hero-cta:hover::after {
    left: 100%;
}

.hero-cta:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 107, 0, 0.4);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 5;
}

.slider-controls button {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.slider-controls button:hover {
    background-color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
    color: var(--primary-color);
}

.slider-controls button i {
    font-size: 2rem;
}

.slider-controls button.clicked {
    transform: scale(0.9);
}

.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    z-index: 5;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.indicator.pulse {
    animation: pulse 0.3s forwards;
}

/* Enhanced Back to top button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    z-index: -1;
    transition: all 0.5s ease;
}

.back-to-top::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    animation: fadeInUp 0.5s forwards;
}

.back-to-top:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.4);
}

.back-to-top:hover::before {
    transform: scale(1.1) rotate(-5deg);
}

.back-to-top:hover::after {
    left: 100%;
}

.back-to-top i {
    font-size: 1.3rem;
    animation: floatUpDown 2s infinite;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
    transform: translateY(-5px);
}
}

/* Fixed Utility Widgets */
.fixed-utility-widgets {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fixed-utility-widgets .weather-widget,
.fixed-utility-widgets .currency-widget {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fixed-utility-widgets .weather-widget::after,
.fixed-utility-widgets .currency-widget::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: all 0.6s;
}

.fixed-utility-widgets .weather-widget.show,
.fixed-utility-widgets .currency-widget.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fixed-utility-widgets .weather-widget.show {
    transition-delay: 0.1s;
}

.fixed-utility-widgets .currency-widget.show {
    transition-delay: 0.2s;
}

.fixed-utility-widgets .weather-widget:hover,
.fixed-utility-widgets .currency-widget:hover {
    transform: translateY(-8px) scale(1.05);
    background-color: var(--primary-color);
    border-color: rgba(255, 255, 255, 0.5);
}

.fixed-utility-widgets .weather-widget:hover::after,
.fixed-utility-widgets .currency-widget:hover::after {
    left: 100%;
}

.fixed-utility-widgets .weather-widget:hover i,
.fixed-utility-widgets .currency-widget:hover i {
    color: white;
    animation: pulse 1.5s infinite;
}

.fixed-utility-widgets .weather-widget i,
.fixed-utility-widgets .currency-widget i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Floating Buy Gerege Button */
.buy-gerege-button {
    position: fixed;
    right: 30px;
    bottom: 160px;
    background: linear-gradient(135deg, #007bff, #00bfff);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .fixed-utility-widgets {
        right: 20px;
        bottom: 20px;
        gap: 12px;
    }

    .fixed-utility-widgets .weather-widget,
    .fixed-utility-widgets .currency-widget {
        width: 45px;
        height: 45px;
    }

    .buy-gerege-button {
        right: 20px !important;
        bottom: 140px;
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo img {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .fixed-utility-widgets {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }

    .fixed-utility-widgets .weather-widget,
    .fixed-utility-widgets .currency-widget {
        width: 40px;
        height: 40px;
    }

    .buy-gerege-button {
        right: 15px !important;
        bottom: 120px;
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .logo {
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .logo img {
        width: 30px;
        height: 30px;
    }

    .logo span {
        max-width: 180px;
        white-space: normal;
        line-height: 1.2;
    }
}

.buy-gerege-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00bfff, #007bff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.buy-gerege-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.buy-gerege-button:hover::before {
    opacity: 1;
}

.buy-gerege-button:active {
    transform: translateY(1px);
}

.buy-gerege-button i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.buy-gerege-button:hover i {
    transform: scale(1.1);
}

.buy-gerege-button .price {
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-left: 3px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .buy-gerege-button {
        bottom: 20px;
        right: 20px;
        padding: 8px 12px;
        font-size: 0.85rem;
        border-radius: 6px;
    }

    .buy-gerege-button .price {
        padding: 2px 4px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .buy-gerege-button {
        bottom: 15px;
        right: 15px;
        padding: 6px 10px;
        font-size: 0.8rem;
        border-radius: 5px;
    }

    .buy-gerege-button i {
        font-size: 0.8rem;
    }

    .buy-gerege-button .price {
        padding: 2px 4px;
        font-size: 0.7rem;
    }
}

/* QR Code Modal */
.qr-modal {
    position: fixed;
    top: 50%;
    right: -100%; /* Start from right side instead of left */
    transform: translateY(-50%);
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    transition: right 0.3s ease; /* Change left to right transition */
    max-width: 90%;
    width: 300px;
}

.qr-modal.active {
    right: 50%; /* Move to center from right */
    transform: translate(50%, -50%); /* Center horizontally and vertically */
}

.qr-modal img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.qr-modal .close-qr {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .qr-modal {
        width: 280px;
    }
    
    .qr-modal.active {
        right: 50%;
    }
}

@media (max-width: 480px) {
    .qr-modal {
        width: 250px;
    }
}

/* Enhanced section transitions */
section {
    padding: 5rem 5%;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

section.in-view {
    opacity: 1;
    transform: translateY(0);
}

section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1.25rem;
}

section h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #dd8ded;
    border-radius: 2px;
}

section h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--primary-color);
}

section p {
    margin-bottom: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
    font-size: 1.05rem;
}

section .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About section */
.about {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(0, 86, 179, 0.05);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    z-index: 0;
}

.about::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: rgba(0, 86, 179, 0.05);
    border-radius: 50%;
    bottom: -200px;
    right: -200px;
    z-index: 0;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about h2 {
    color: var(--primary-color);
    margin-top: 3rem;
    font-size: 1.8rem;
    position: relative;
    padding-left: 1rem;
}

.about h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.about p {
    color: var(--text-light);
    line-height: 1.8;
}

.about ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.about ul li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    position: relative;
}

.about ul li strong {
    color: var(--primary-color);
}

.pillars {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
}

.pillar {
    background-color: var(--bg-white);
    color: var(--primary-color);
    width: 220px;
    height: 220px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pillar::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    z-index: -1;
    transition: var(--transition);
}

.pillar:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pillar:hover::before {
    height: 100%;
}

.pillar:hover {
    color: white;
}

/* Benefits section */
.benefits {
    background-color: var(--bg-white);
    text-align: center;
    position: relative;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.benefit-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 2.5rem 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    transform: translateY(0);
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-card:hover::after {
    height: 8px;
}

.benefit-card.hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15);
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.benefit-card p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 1rem;
}

/* News section */
.news {
    background-color: var(--bg-light);
    position: relative;
    padding-bottom: 6rem;
}

.news-slider {
    position: relative;
    height: 550px;
    overflow: hidden;
    margin: 3rem auto;
    max-width: 900px;
}

.news-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: translateX(50px);
}

.news-slider .slide.active {
    opacity: 1;
    transform: translateX(0);
}

.news-slider .slide.leaving {
    opacity: 0;
    transform: translateX(-50px);
}

.news-item {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.news-item:hover img {
    transform: scale(1.03);
}

.news-item h3 {
    padding: 1.5rem 1.75rem 0.75rem;
    color: var(--primary-color);
    font-size: 1.6rem;
}

.news-item p {
    padding: 0 1.75rem 1.75rem;
    color: var(--text-light);
    flex-grow: 1;
    font-size: 1.05rem;
}

.news .slider-controls {
    top: auto;
    bottom: 1rem;
    transform: none;
}

/* Help center section */
.help-center {
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.help-center::before {
    content: '';
    position: absolute;
    right: -200px;
    top: -200px;
    width: 400px;
    height: 400px;
    background-color: rgba(0, 86, 179, 0.05);
    border-radius: 50%;
}

.help-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.help-column {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.help-column:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.help-column h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px dashed rgba(0, 86, 179, 0.2);
}

.help-list {
    list-style: none;
}

.help-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
}

.help-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.help-list li strong {
    color: var(--primary-color);
    display: inline-block;
    min-width: 100px;
    margin-right: 0.5rem;
}

.help-additional {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.help-additional::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.05) 0%, rgba(0, 61, 130, 0.1) 100%);
    border-radius: var(--radius-md);
    z-index: -1;
}

.help-additional h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.help-additional h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.help-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    list-style-type: none;
}

.help-tips li {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
    padding-left: 3rem;
}

.help-tips li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    font-size: 1.2rem;
}

.help-tips li:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* FAQ section */
.faq {
    background-color: var(--bg-light);
    padding: 5rem 5%;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    left: -200px;
    bottom: -200px;
    width: 400px;
    height: 400px;
    background-color: rgba(0, 86, 179, 0.05);
    border-radius: 50%;
}

.faq h1 {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--primary-color);
    z-index: -1;
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.faq-item:hover::before {
    width: 8px;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

.faq-item h3::before {
    content: '\f059';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    margin-bottom: 0;
    padding-left: 2.3rem;
}

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

/* Responsive styles for FAQ section */
@media (max-width: 768px) {
    .faq-item {
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 0.5rem 2.5%;
    }
    
    .faq-container {
        margin-bottom: 1.5rem;
    }
    
    .faq-item {
        padding: 0.7rem;
        margin-bottom: 0.5rem;
        border-radius: 6px;
    }
    
    .faq-item::before {
        width: 3px;
    }
}

.contact-info, .address-info, .emergency-info, .socials {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    z-index: 1;
}

.contact-info:hover, .address-info:hover, .emergency-info:hover, .socials:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-info h3, .address-info h3, .emergency-info h3, .socials h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    text-align: center;
}

.contact-info h3::after, .address-info h3::after, .emergency-info h3::after, .socials h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.contact-info p, .address-info p, .emergency-info p {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info p i, .address-info p i, .emergency-info p i {
    color: var(--primary-color);
    min-width: 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: var(--shadow-md);
}

.social-icons a i {
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: #dd8ded75 !important; /* Pinkish beige color */
    color: #333333; /* Darker text for contrast on light background */
    padding: 2rem 5%;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    grid-column: span 1;
}

.footer-links, .footer-contact {
    grid-column: span 1;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 100px;
    max-width: 200px !important; /* Significantly increased size for mobile visibility */
    min-width: 120px !important; /* Ensure minimum width */
    height: auto !important;
    margin-bottom: 0.5rem;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-logo h3 {
    color: #8b4513; /* Saddle brown for brand visibility on light background */
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo p {
    color: #666;
    font-size: 1.1rem;
    text-align: center;
}

@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .footer-logo {
        grid-column: span 1;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.2rem;
        padding: 1.5rem 1rem;
    }

    .footer-logo,
    .footer-links,
    .footer-contact {
        grid-column: span 1;
        text-align: left;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        text-align: left;
    }

    .footer-contact p {
        text-align: left;
        margin-bottom: 0.6rem;
        justify-content: flex-start;
        font-size: 1rem;
    }

    .social-icons {
        justify-content: flex-start;
        margin-top: 0.8rem;
        gap: 0.8rem;
    }

    .footer-bottom {
        flex-direction: row;
        text-align: left;
        padding: 1rem;
        font-size: 1rem;
    }

    .footer-bottom-links {
        justify-content: flex-end;
        gap: 1rem;
    }

    footer {
        padding: 2rem 3% 0;
    }

    .footer-logo h3 {
        font-size: 1.5rem; /* Larger text on mobile view */
        margin-bottom: 0.6rem;
        font-weight: 700;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
        padding: 1rem 0.8rem;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .footer-links ul li a,
    .footer-contact p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }

    .footer-links ul {
        gap: 0.5rem;
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        margin-bottom: 0.8rem;
    }

    .footer-logo img {
        max-width: 120px !important; /* Slightly larger for very small screens */
        min-width: 80px !important; /* Ensure minimum width */
        height: auto !important;
    }

    .footer-logo h3 {
        font-size: 1.4rem;
    }
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
    color: #8b4513; /* Bright gold for headings */
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h4::after, .footer-contact h4::after, .footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

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

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: #555555; /* Dark gray for text content for contrast on light background */
    font-weight:600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links ul li a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: #a81cff;
}

.footer-links ul li a:hover {
    color: #8b4513; /* Saddle brown on hover for interactivity */
    transform: translateX(5px);
}

.footer-contact p {
    color: #555555; /* Dark gray for text content for contrast on light background */
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-contact p i {
    color: #a81cff);
    min-width: 20px;
}

.footer-social .social-icons {
    justify-content: flex-start;
}

.footer-social .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-social .social-icons a:hover {
    background-color: #a81cff;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #666666; /* Darker muted text for the bottom section */
    margin: 0;
}

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

.footer-bottom-links a {
    color: #666666; /* Darker muted text for the bottom section */
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: #8b4513; /* Saddle brown on hover for interactivity */
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition);
    z-index: 100;
}

.menu-toggle:hover {
    color: var(--primary-color);
}

.menu-toggle.clicked {
    transform: scale(0.9);
}

.menu-toggle.open {
    transform: rotate(90deg);
    background-color: var(--primary-dark);
}

/* Responsive design */
@media (max-width: 1200px) {
    .slide-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    section {
        padding: 4rem 4%;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .pillar {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.5rem 5%;
        position: relative;
    }
    
    .logo {
        z-index: 101;
    }
    
    .logo img {
        width: 30px;
        height: 30px;
    }
    
    .menu-toggle {
        display: block;
        z-index: 101;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-white);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 100;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
    }
    
    nav.active {
        transform: translateX(0);
    }
    
    nav ul {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        justify-content: center;
    }
    
    nav ul li {
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
    }
    
    nav a::after {
        height: 1px;
    }
    
    .hero-slider {
        height: 70vh;
    }
    
    .slide-content {
        padding: 1rem;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    section {
        padding: 3rem 4%;
    }
    
    section h1 {
        font-size: 2.2rem;
    }
    
    section h2 {
        font-size: 1.6rem;
    }
    
    .pillar {
        width: 150px;
        height: 150px;
        font-size: 1.2rem;
    }
    
    .news-slider {
        height: 500px;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    section h1 {
        font-size: 2rem;
    }
    
    .hero-cta {
        padding: 0.6rem 1.25rem;
        font-size: 1rem;
    }
    
    .slider-controls button {
        width: 40px;
        height: 40px;
    }
    
    .news-slider {
        height: 450px;
    }
    
    .news-item img {
        height: 200px;
    }
    
    .news-item h3 {
        font-size: 1.4rem;
        padding: 1.25rem 1.25rem 0.5rem;
    }
    
    .news-item p {
        padding: 0 1.25rem 1.25rem;
        font-size: 1rem;
    }
    
    .help-column h3, .faq-item h3 {
        font-size: 1.3rem;
    }
    
    .footer-logo img {
        max-width: 160px !important; /* Larger for very small screens */
        min-width: 100px !important; /* Ensure minimum width */
        height: auto !important;
    }
    
    .footer-logo h3 {
        font-size: 1.6rem !important;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease;
}

.modal-content {
    background-color: var(--bg-white);
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalFadeIn 0.4s;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    transform: scale(0.8);
    opacity: 0;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 1.25rem;
    right: 1.75rem;
    color: var(--text-lighter);
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--text-dark);
    background-color: rgba(0, 0, 0, 0.05);
}

.close-modal.rotate {
    animation: rotate 0.3s forwards;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(90deg); }
}

.modal h2 {
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    text-align: center;
    font-size: 1.8rem;
}

.modal p {
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--text-light);
    line-height: 1.6;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.75rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.form-group.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #f9fafb;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.15);
    background-color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ff3860;
    box-shadow: 0 0 0 1px #ff3860;
}

.payment-options p {
    margin-bottom: 0.75rem;
    text-align: left;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.payment-method {
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem 1.25rem;
    background-color: #f9fafb;
    border-radius: var(--radius-sm);
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.payment-method:hover {
    background-color: #f0f7ff;
    border-color: #cfe1ff;
}

.payment-method input {
    margin-right: 0.75rem;
    width: auto;
    accent-color: var(--primary-color);
}

.payment-method input:checked + span {
    color: var(--primary-color);
    font-weight: 500;
}

.payment-method span {
    color: var(--text-dark);
    transition: var(--transition);
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
}

.submit-btn:hover {
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (max-width: 500px) {
    .payment-methods {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .payment-method {
        width: 100%;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 2rem 1.5rem;
    }
    
    .modal h2 {
        font-size: 1.5rem;
    }
}

/* Purchase Form Success Message Styles */
.purchase-success {
    text-align: center;
    padding: 2rem;
}

.purchase-success i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

.purchase-success h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.purchase-success p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.purchase-success .delivery-note {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.purchase-success .close-modal-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.purchase-success .close-modal-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Form animations */
form.loading {
    opacity: 0.7;
    pointer-events: none;
}

form.shake {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}

form.fade-out {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

form.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.success-icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1rem;
    opacity: 0;
    transform: scale(0.5);
}

.success-icon.animate {
    animation: successIconAnimation 0.5s forwards 0.2s;
}

@keyframes successIconAnimation {
    0% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

/* Value Summary Section */
.value-summary {
    background-color: var(--bg-light);
    padding: 5rem 5%;
    text-align: center;
}

.value-summary .subtitle {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.2rem;
}

.value-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.value-item {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    width: 250px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-item.highlight {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.value-item.highlight:hover {
    transform: scale(1.05) translateY(-10px);
}

.value-item.highlight .value-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.value-item.highlight h3 {
    color: white;
}

.value-item.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.value-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.value-item p {
    font-size: 1rem;
    color: var(--text-light);
}

.value-cta {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

@media (max-width: 768px) {
    .value-grid {
        gap: 1.5rem;
    }
    
    .value-item {
        width: 100%;
        max-width: 280px;
        padding: 2rem 1.5rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 5%;
    background-color: var(--bg-white);
    text-align: center;
}

.testimonials .subtitle {
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--text-light);
    font-size: 1.2rem;
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto 2rem;
    min-height: 350px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    z-index: 1;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.testimonial-content {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    text-align: left;
}

.testimonial-stars {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

.testimonial-author h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonial-author p {
    margin: 0.3rem 0 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

.testimonial-arrows {
    display: flex;
    gap: 1rem;
}

.testimonial-arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.testimonial-arrows button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .testimonial-content {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-slider {
        min-height: 400px;
    }
}

/* Quick Benefits Navigation */
.quick-benefits-nav {
    background-color: var(--bg-white);
    padding: 2rem 5%;
    text-align: center;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.quick-benefits-nav h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.benefit-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
}

.benefit-link:hover {
    transform: translateY(-5px);
}

.benefit-link-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-link:hover .benefit-link-icon {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.benefit-link span {
    font-size: 0.85rem;
    font-weight: 500;
}

@media (max-width: 600px) {
    .benefit-link-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .benefit-links {
        gap: 1rem;
    }
}

/* Download Guide Section */
.download-guide {
    padding: 5rem 5%;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.download-guide .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.guide-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.guide-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
}

.guide-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.guide-features li i {
    color: var(--secondary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.download-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.download-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.download-btn i {
    margin-right: 0.5rem;
}

.guide-image {
    position: relative;
}

.guide-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
    transition: var(--transition);
}

.guide-image:hover img {
    transform: rotate(0);
}

.guide-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    z-index: -1;
}

@media (max-width: 992px) {
    .download-guide .container {
        grid-template-columns: 1fr;
    }
    
    .guide-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .guide-content {
        text-align: center;
    }
    
    .guide-features li {
        justify-content: center;
    }
}

/* Partner Map Section */
.map-section {
    padding: 5rem 5%;
    background-color: var(--bg-white);
    text-align: center;
}

.map-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-section .subtitle {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto 2.5rem;
}

.map-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-image img {
    width: 100%;
    height: auto;
    display: block;
}

.map-point {
    position: absolute;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.point-marker {
    display: block;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 rgba(0, 86, 179, 0.4);
    animation: pulse 2s infinite;
}

.map-tooltip {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    background-color: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 0.75rem;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.map-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

.map-tooltip h4 {
    color: var(--primary-color);
    margin: 0 0 0.5rem;
    font-size: 1rem;
}

.map-tooltip p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.85rem;
}

.map-point:hover .map-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 150%;
}

.view-all-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.view-all-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 86, 179, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 86, 179, 0);
    }
}

@media (max-width: 768px) {
    .map-container {
        margin-bottom: 2rem;
    }
    
    .map-point {
        width: 16px;
        height: 16px;
    }
    
    .point-marker {
        width: 16px;
        height: 16px;
    }
}

/* Weather and Currency Modal */
.widget-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.widget-content {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 90%;
    max-width: 400px;
    padding: 2rem;
    position: relative;
}

.widget-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1.25rem;
    transition: var(--transition);
}

.widget-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.widget-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.weather-details,
.currency-details {
    margin-bottom: 1.5rem;
}

.weather-details div,
.currency-details div {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.weather-details div:last-child,
.currency-details div:last-child {
    border-bottom: none;
}

.weather-details span:first-child,
.currency-details span:first-child {
    color: var(--text-light);
}

.weather-details span:last-child,
.currency-details span:last-child {
    font-weight: 500;
    color: var(--text-dark);
}

.refresh-button {
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.refresh-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.refresh-button i {
    transition: transform 0.3s ease;
}

.refresh-button.refreshing i {
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.weather-forecast {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.forecast-day {
    background-color: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    text-align: center;
}

.forecast-date {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.forecast-temp {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.currency-converter {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.currency-converter h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.converter-inputs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.converter-inputs input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
}

.converter-inputs input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.converter-selects {
    display: flex;
    gap: 0.75rem;
}

.converter-selects select {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    background-color: var(--bg-white);
}

.converter-selects select:focus {
    border-color: var(--primary-color);
    outline: none;
}

@media (max-width: 768px) {
    .utility-widgets {
        position: absolute;
        top: 0.5rem;
        right: 4rem;
    }
    
    .weather-city, 
    .currency-name {
        display: none;
    }
    
    .weather-widget, 
    .currency-widget {
        padding: 0.3rem 0.6rem;
    }
    
    .widget-content {
        width: 95%;
        padding: 1.5rem;
    }
    
    .weather-forecast {
        grid-template-columns: repeat(3, 1fr);
    }
} 

@media (max-width: 768px) {
    .footer-logo {
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-logo img {
        width: 100px;
        max-width: 200px !important; /* Significantly increased size for mobile visibility */
        min-width: 120px !important; /* Ensure minimum width */
        height: auto !important;
        margin-bottom: 0.5rem;
    }

    .footer-logo h3 {
        font-size: 1.5rem; /* Larger text on mobile view */
    }
}

@media (max-width: 480px) {
    .footer-logo img {
        max-width: 120px; /* Slightly larger for very small screens */
        min-width: 80px !important; /* Ensure minimum width */
        height: auto !important;
    }

    .footer-logo h3 {
        font-size: 1.4rem;
    }
}