* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #14b8a6;
    --secondary: #06b6d4;
    --accent: #0d9488;
    --dark: #0f172a;
    --darker: #020617;
    --light: #f1f5f9;
    --text-light: #e2e8f0;
    --glow-primary: rgba(20, 184, 166, 0.5);
    --glow-secondary: rgba(6, 182, 212, 0.5);
    --glow-accent: rgba(13, 148, 136, 0.5);
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1f3a 100%);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

/* Navbar */
.navbar-glassmorphism {
    background: rgba(15, 23, 42, 0.7) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(20, 184, 166, 0.2);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 0%;
}

/* Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #1a1f3a 0%, #0f2f3f 25%, #1a1f3a 50%, #0f2f3f 75%, #1a1f3a 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -2;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Blobs */
.floating-blob {
    position: fixed;
    border-radius: 50%;
    opacity: 0.3;
    mix-blend-mode: screen;
    z-index: -1;
}

.blob-1 {
    width: clamp(200px, 40vw, 400px);
    height: clamp(200px, 40vw, 400px);
    background: radial-gradient(circle, var(--primary), transparent);
    top: 10%;
    left: -50%;
    animation: float 20s infinite ease-in-out;
}

.blob-2 {
    width: clamp(150px, 35vw, 300px);
    height: clamp(150px, 35vw, 300px);
    background: radial-gradient(circle, var(--secondary), transparent);
    top: 50%;
    right: -50%;
    animation: float 25s infinite ease-in-out reverse;
}

.blob-3 {
    width: clamp(180px, 38vw, 350px);
    height: clamp(180px, 38vw, 350px);
    background: radial-gradient(circle, var(--accent), transparent);
    bottom: 10%;
    left: 50%;
    animation: float 22s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -30px); }
    50% { transform: translate(0, -60px); }
    75% { transform: translate(-30px, -30px); }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1f3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeOut 0.5s ease-in-out 1.5s forwards;
}

.loader-container {
    text-align: center;
    padding: 2rem;
}

.loader-logo {
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(20, 184, 166, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: clamp(60px, 10vh, 80px) clamp(1rem, 5vw, 2rem) clamp(30px, 5vh, 40px);
}

.hero-title {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--text-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
    background-clip: text;
    word-break: break-word;
}

.typing {
    position: relative;
}

.typing::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 1em;
    background: var(--primary);
    animation: blink 0.6s infinite;
}

@keyframes blink {
    0%, 49%, 100% { opacity: 1; }
    50%, 99% { opacity: 0; }
}

.hero-subtitle {
    font-size: clamp(0.95rem, 3vw, 1.2rem);
    color: rgba(226, 232, 240, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* Floating Icons */
.floating-icons {
    position: relative;
    height: clamp(250px, 60vw, 400px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.icon-card {
    position: absolute;
    width: clamp(70px, 15vw, 100px);
    height: clamp(70px, 15vw, 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 184, 166, 0.1);
    border: 2px solid rgba(20, 184, 166, 0.3);
    border-radius: 20px;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-card:hover {
    background: rgba(20, 184, 166, 0.2);
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--glow-primary);
    transform: translateY(-10px);
}

.icon-1 { top: 0; left: 5%; }
.icon-2 { top: 50%; right: 5%; }
.icon-3 { bottom: 5%; left: 15%; }
.icon-4 { top: 30%; right: 20%; }

@media (max-width: 768px) {
    .icon-1 { top: 10%; left: 10%; }
    .icon-2 { top: 40%; right: 10%; }
    .icon-3 { bottom: 15%; left: 20%; }
    .icon-4 { top: 25%; right: 25%; }
}

@media (max-width: 480px) {
    .icon-1 { top: 15%; left: 5%; }
    .icon-2 { top: 45%; right: 5%; }
    .icon-3 { bottom: 20%; left: 10%; }
    .icon-4 { top: 30%; right: 15%; }
}

/* Interest Cards Section */
.interests-section {
    padding: clamp(40px, 10vh, 60px) clamp(1rem, 5vw, 2rem);
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    font-weight: 700;
    margin-bottom: clamp(2rem, 5vh, 3rem);
    background: linear-gradient(135deg, #fff 0%, var(--text-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* NEW: Interest Card with Image Styling */
.interest-card {
    background: rgba(20, 184, 166, 0.05);
    border: 2px solid rgba(20, 184, 166, 0.2);
    border-radius: 20px;
    padding: clamp(1.5rem, 5vw, 2rem);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.interest-card:hover {
    background: rgba(20, 184, 166, 0.15);
    border-color: var(--primary);
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 60px var(--glow-primary);
}

.interest-card:hover .interest-icon {
    transform: scale(1.1) rotateY(5deg);
    filter: brightness(1.2);
}

.interest-card:hover .interest-icon img {
    filter: brightness(1.15) drop-shadow(0 0 10px var(--glow-primary));
}

/* NEW: Image Styling */
.interest-icon {
    width: clamp(80px, 20vw, 150px);
    height: clamp(80px, 20vw, 150px);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(6, 182, 212, 0.2));
    border: 2px solid rgba(20, 184, 166, 0.3);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.2);
    perspective: 1000px;
}

.interest-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(1) saturate(1.1);
}

.interest-icon img:hover {
    filter: brightness(1.2) saturate(1.3);
}

.interest-card h3 {
    font-size: clamp(1rem, 3vw, 1.3rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    color: #fff;
}

.interest-card p {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: rgba(226, 232, 240, 0.7);
    transition: all 0.3s ease;
}

.interest-card:hover h3 {
    color: var(--secondary);
}

.interest-card:hover p {
    color: rgba(226, 232, 240, 0.9);
}

/* Stagger Animation for Cards */
.interest-card {
    animation: slideUpCards 0.6s ease-out both;
}

.col-md-6:nth-child(1) .interest-card { animation-delay: 0.1s; }
.col-md-6:nth-child(2) .interest-card { animation-delay: 0.2s; }
.col-md-6:nth-child(3) .interest-card { animation-delay: 0.3s; }
.col-md-6:nth-child(4) .interest-card { animation-delay: 0.4s; }

@keyframes slideUpCards {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Form Section */
.form-section {
    padding: clamp(40px, 10vh, 60px) clamp(1rem, 5vw, 2rem);
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(20, 184, 166, 0.3);
    border-radius: 30px;
    padding: clamp(1.5rem, 5vw, 3rem);
    animation: slideUp 0.6s ease-out;
    width: 100%;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: rgba(226, 232, 240, 0.7);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* ====== NEW: ENHANCED FORM GROUPS ====== */
.form-group {
    margin-bottom: clamp(1.2rem, 4vw, 1.8rem);
}

.form-label {
    display: block;
    margin-bottom: clamp(0.5rem, 2vw, 0.75rem);
    font-weight: 600;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    color: rgba(226, 232, 240, 0.95);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-wrapper i {
    position: absolute;
    left: clamp(12px, 3vw, 18px);
    color: var(--primary);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* ====== NEW: RESPONSIVE INPUT FIELDS ====== */
.form-control-glow {
    background: rgba(20, 184, 166, 0.1) !important;
    border: 2px solid rgba(20, 184, 166, 0.3) !important;
    color: var(--text-light) !important;
    padding: clamp(14px, 3vw, 18px) clamp(16px, 4vw, 20px) clamp(14px, 3vw, 18px) clamp(45px, 8vw, 55px) !important;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: clamp(0.95rem, 2.5vw, 1.1rem) !important;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.form-control-glow::-webkit-outer-spin-button,
.form-control-glow::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-control-glow[type=number] {
    -moz-appearance: textfield;
}

.form-control-glow:focus {
    background: rgba(20, 184, 166, 0.15) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 25px var(--glow-primary), inset 0 0 15px rgba(20, 184, 166, 0.1) !important;
    transform: translateY(-2px) scale(1.02);
}

.form-control-glow:hover:not(:focus) {
    background: rgba(20, 184, 166, 0.12) !important;
    border-color: rgba(20, 184, 166, 0.5) !important;
}

.form-control-glow::placeholder {
    color: rgba(226, 232, 240, 0.6);
    font-weight: 400;
}

.form-control-glow:focus::placeholder {
    color: rgba(226, 232, 240, 0.4);
}

.form-control-glow:focus + i,
.form-control-glow:not(:placeholder-shown) + i {
    color: var(--secondary);
}

/* Select Input Enhancement */
.form-control-glow[type="select"],
select.form-control-glow {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2314b8a6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right clamp(12px, 3vw, 18px) center;
    padding-right: clamp(35px, 8vw, 45px) !important;
}

/* Buttons */
.btn-gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    padding: clamp(14px, 3vw, 18px) clamp(24px, 5vw, 32px);
    width: 100%;
    border-radius: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 700;
}

.btn-gradient-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--glow-primary), 0 0 30px rgba(20, 184, 166, 0.3);
    color: white;
}

.btn-gradient-primary:active {
    transform: translateY(-1px);
}

.btn-lg {
    padding: clamp(14px, 3vw, 18px) clamp(28px, 6vw, 36px) !important;
    font-size: clamp(1rem, 3vw, 1.15rem) !important;
}

.btn-submit {
    width: 100%;
    margin-top: clamp(1.2rem, 4vw, 1.8rem);
}

.btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: 600;
}

.form-footer {
    text-align: center;
    margin-top: clamp(1.2rem, 4vw, 1.8rem);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: rgba(226, 232, 240, 0.7);
}

input:focus{
    cursor: pointer;
}

.form-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-footer a:hover {
    color: var(--secondary);
}

/* Payment Styles */
.payment-container {
    padding: clamp(0.75rem, 2vw, 1rem);
}

.payment-amount {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    padding: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    margin-bottom: 1.5rem;
}

.payment-amount h3 {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.amount-display {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    font-weight: 700;
    color: white;
}

.account-details {
    background: rgba(20, 184, 166, 0.1);
    border: 2px solid rgba(20, 184, 166, 0.2);
    border-radius: 15px;
    padding: clamp(1rem, 3vw, 1.5rem);
}

.detail-group {
    margin-bottom: 1.5rem;
}

.detail-group:last-child {
    margin-bottom: 0;
}

.detail-group label {
    display: block;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    color: rgba(226, 232, 240, 0.7);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.detail-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(20, 184, 166, 0.05);
    border: 2px solid rgba(20, 184, 166, 0.2);
    border-radius: 10px;
    padding: clamp(0.75rem, 2vw, 1rem);
    font-weight: 600;
    word-break: break-all;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.account-number {
    font-family: 'Courier New', monospace;
    font-size: clamp(1rem, 3vw, 1.2rem);
    letter-spacing: 2px;
}

.btn-copy {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: clamp(0.9rem, 2vw, 1rem);
    padding: 0.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-copy:hover {
    color: var(--secondary);
    transform: scale(1.2);
}

.payment-reminder {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(20, 184, 166, 0.1));
    border-left: 4px solid var(--secondary);
    border-radius: 10px;
    margin-top: 1.5rem;
    padding: clamp(1rem, 3vw, 1.5rem);
}

.payment-reminder h5 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.payment-reminder p {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    margin: 0;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 24px);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #0f7469 100%);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    color: white;
}

/* Modal */
.modal-glassmorphism {
    background: rgba(15, 23, 42, 0.8) !important;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(20, 184, 166, 0.3) !important;
    border-radius: 20px;
}

.modal-glassmorphism .modal-header,
.modal-glassmorphism .modal-footer {
    border-color: rgba(20, 184, 166, 0.2) !important;
}

.modal-title {
    font-weight: 700;
    font-size: clamp(1.2rem, 4vw, 1.5rem);
}

.modal-body {
    padding: clamp(1rem, 3vw, 1.5rem);
}

.modal-footer {
    padding: clamp(0.75rem, 2vw, 1rem);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.btn-secondary {
    background: rgba(226, 232, 240, 0.1);
    border: 2px solid rgba(226, 232, 240, 0.2);
    color: var(--text-light);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.btn-secondary:hover {
    background: rgba(226, 232, 240, 0.15);
    border-color: rgba(226, 232, 240, 0.4);
    color: var(--text-light);
}

/* Success Animation */
.success-animation {
    position: relative;
    width: clamp(60px, 15vw, 80px);
    height: clamp(60px, 15vw, 80px);
    margin: 0 auto;
}

.success-checkmark {
    width: 100%;
    height: 100%;
    position: relative;
}

.success-checkmark svg {
    width: 100%;
    height: 100%;
}

.success-checkmark circle {
    stroke: var(--primary);
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: strokeAnim 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark path {
    stroke: var(--primary);
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: strokeAnim 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.4s forwards;
    stroke-linecap: round;
    stroke-width: 3;
}

@keyframes strokeAnim {
    to {
        stroke-dashoffset: 0;
    }
}

/* Toast */
.toast {
    background: rgba(15, 23, 42, 0.9) !important;
    border: 2px solid rgba(20, 184, 166, 0.3) !important;
    backdrop-filter: blur(10px);
    border-radius: 10px;
}

.toast-body {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    padding: clamp(0.75rem, 2vw, 1rem);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.8) 100%);
    position: relative;
    padding: clamp(2rem, 5vh, 3rem) clamp(1rem, 5vw, 2rem) clamp(0.75rem, 2vw, 1rem);
    margin-top: clamp(3rem, 8vh, 5rem);
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.footer-wave svg {
    display: block;
    width: 100%;
    color: rgba(20, 184, 166, 0.3);
}

.footer .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.footer p {
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 1rem);
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: clamp(35px, 8vw, 40px);
    height: clamp(35px, 8vw, 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 184, 166, 0.1);
    border: 2px solid rgba(20, 184, 166, 0.3);
    border-radius: 50%;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.social-icon:hover {
    background: rgba(20, 184, 166, 0.2);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--glow-primary);
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ripple:active::after {
    animation: rippleEffect 0.6s ease-out;
}

@keyframes rippleEffect {
    to {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* ====== RESPONSIVE BREAKPOINTS ====== */

@media (max-width: 768px) {
    .hero {
        padding: 60px 1rem 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-gradient-primary {
        width: 100%;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .form-container {
        border-radius: 20px;
    }

    .floating-icons {
        margin-top: 1.5rem;
    }

    .blob-1, .blob-2, .blob-3 {
        opacity: 0.15;
    }

    .modal-footer {
        flex-direction: column-reverse;
    }

    .modal-footer .btn {
        width: 100%;
    }

    .interest-icon {
        width: clamp(70px, 18vw, 120px);
        height: clamp(70px, 18vw, 120px);
    }

    .form-control-glow {
        padding: 14px 12px 14px 45px !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 1rem 25px;
        min-height: auto;
    }

    .form-section {
        padding: 30px 1rem;
    }

    .form-container {
        padding: 1.2rem;
        border-radius: 18px;
    }

    .interests-section {
        padding: 30px 1rem;
    }

    .interest-card {
        padding: 1rem;
    }

    .detail-box {
        padding: 0.75rem;
        font-size: clamp(0.75rem, 2vw, 0.85rem);
    }

    .account-number {
        letter-spacing: 1px;
    }

    .btn-copy {
        padding: 0.25rem 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .navbar-brand {
        font-size: 1.1rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .payment-reminder {
        margin-top: 1rem;
        padding: 1rem !important;
    }

    .interest-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 0.75rem;
    }

    .interest-card h3 {
        font-size: 1rem;
    }

    .interest-card p {
        font-size: 0.75rem;
    }

    .form-control-glow {
        padding: 16px 12px 16px 45px !important;
        font-size: 1rem !important;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .btn-gradient-primary {
        padding: 16px 20px !important;
        font-size: 1rem !important;
    }

    .input-wrapper i {
        left: 12px;
        font-size: 1.1rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .form-header h2 {
        font-size: 1.3rem;
    }

    .loader-logo {
        font-size: 1.8rem;
    }

    .amount-display {
        font-size: 1.8rem;
    }

    .icon-card {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .interest-icon {
        width: 70px;
        height: 70px;
    }

    .form-container {
        padding: 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }
}

/* Landscape Mode */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 40px 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .floating-icons {
        height: auto;
        margin-top: 1rem;
    }

    .icon-card {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Touch-friendly adjustments */
@media (hover: none) and (pointer: coarse) {
    .btn-gradient-primary:hover,
    .interest-card:hover,
    .social-icon:hover {
        transform: none;
    }

    .btn-gradient-primary:active {
        transform: scale(0.98);
    }

    .interest-card:active {
        transform: scale(0.98);
    }

    .interest-icon:hover {
        transform: none;
    }

    .form-control-glow:focus {
        transform: none;
    }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .floating-blob {
        opacity: 0.25;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
option{
    color: #222;
}