:root {
    /* Shared Fallback Variables */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(31, 31, 31, 0.62);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-hover-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    --surface-light: #111111;

    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-xxl: 30px;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background-image: radial-gradient(circle at 50% 0%, rgba(var(--theme-color-rgb), 0.12), transparent 70%);
    overflow-x: hidden;
    position: relative;
}

/* Background Animation Canvas */
#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.45;
    pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.container {
    width: 100%;
    max-width: 950px;
    position: relative;
    z-index: 1;
}

/* ----- Header Navbar (whatin.in original style) ----- */
header {
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
    background: rgba(31, 31, 31, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 0.85rem 2rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    cursor: pointer;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}

nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 768px) {
    nav {
        display: none;
        /* simple hidden for admin simplicity, or wrap as needed */
    }
}

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

nav a:hover {
    color: var(--theme-color);
    text-shadow: 0 0 10px var(--theme-glow);
}

.cta-btn-header {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
}

.cta-btn-header:hover {
    border-color: var(--theme-color);
    box-shadow: 0 0 12px var(--theme-glow);
}

/* ----- Animations ----- */
@keyframes fadeInUpScale {
    0% {
        opacity: 0;
        transform: translateY(25px) scale(0.97);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.animate-reveal {
    opacity: 0;
    animation: fadeInUpScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.25s;
}

.delay-3 {
    animation-delay: 0.4s;
}

.delay-4 {
    animation-delay: 0.55s;
}

/* ----- Back Link Button ----- */
.back-link-container {
    width: 100%;
    margin-bottom: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--theme-color);
    background: rgba(var(--theme-color-rgb), 0.05);
    border-color: var(--theme-color);
    transform: translateX(-4px);
    box-shadow: 0 0 15px var(--theme-glow);
}

/* ----- Page Header & Glow Titles ----- */
.page-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 850;
    margin-bottom: 0.6rem;
    background: linear-gradient(135deg, #ffffff 30%, var(--theme-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 25px var(--theme-glow);
}

.page-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.card-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-xxl);
    padding: 3rem 2.5rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(var(--theme-color-rgb), 0.1);
}

.card-panel:hover {
    border-color: var(--theme-color);
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 0 30px var(--theme-glow), 0 20px 40px rgba(0, 0, 0, 0.6);
}

.card-panel-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card-panel-title i {
    color: var(--theme-color);
    font-size: 1.3rem;
    text-shadow: 0 0 12px var(--theme-glow);
}

/* ----- Form Struct & Fields ----- */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1.25rem;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: color 0.3s, text-shadow 0.3s;
    z-index: 5;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 1.15rem 1.15rem 1.15rem 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

textarea {
    padding-top: 1.2rem;
    resize: vertical;
    min-height: 110px;
}

.input-wrapper.textarea-wrapper i {
    top: 1.35rem;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--theme-color);
    background: rgba(0, 0, 0, 0.55);
    box-shadow: 0 0 15px var(--theme-glow);
}

input:focus+i,
textarea:focus+i,
select:focus+i {
    color: var(--theme-color);
    text-shadow: 0 0 10px var(--theme-glow);
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

/* Custom Dropdown Arrow */
select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.2rem;
    padding-right: 3rem !important;
}

select option {
    background-color: #0c0c0c;
    color: var(--text-primary);
}

/* ----- Drag & Drop Files ----- */
.file-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.drop-zone {
    border: 1px dashed rgba(var(--theme-color-rgb), 0.35);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.5rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 0 10px rgba(var(--theme-color-rgb), 0.05);
}

.drop-zone:hover,
.drop-zone.dragover {
    border-color: var(--theme-color);
    background: rgba(var(--theme-color-rgb), 0.08);
    box-shadow: inset 0 0 15px rgba(var(--theme-color-rgb), 0.15), 0 0 20px rgba(var(--theme-color-rgb), 0.25);
}

.drop-zone input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.drop-zone i {
    font-size: 2.2rem;
    color: var(--text-secondary);
    transition: color 0.3s ease, transform 0.3s ease;
}

.drop-zone:hover i {
    color: var(--theme-color);
    transform: scale(1.1);
}

.drop-zone-title {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.drop-zone-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.file-name {
    font-size: 0.85rem;
    color: #10b981;
    /* Success Green */
    font-weight: 700;
    margin-top: 5px;
    word-break: break-all;
    display: none;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

/* ----- Required Documents Checklist ----- */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.checklist-item:hover {
    background: rgba(var(--theme-color-rgb), 0.03);
    border-color: rgba(var(--theme-color-rgb), 0.2);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.checklist-item i {
    color: var(--theme-color);
    font-size: 1.1rem;
    background: rgba(var(--theme-color-rgb), 0.08);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(var(--theme-color-rgb), 0.2);
}

.checklist-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.checklist-item span {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ----- Pricing Grid & Cards ----- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.pricing-card.active-plan {
    border-color: var(--theme-color);
    background: rgba(var(--theme-color-rgb), 0.04);
    box-shadow: 0 10px 30px var(--theme-glow);
    transform: translateY(-4px);
}

.pricing-card.premium-glow {
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.active-plan.premium-glow {
    border-color: var(--theme-color);
    box-shadow: 0 0 40px var(--theme-glow);
}

.pricing-card .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--text-primary);
    color: #000000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card.active-plan.premium-glow .badge {
    background: var(--theme-color);
    color: #000;
    box-shadow: 0 0 10px var(--theme-glow);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card .timeframe {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-card .price {
    font-size: 3.2rem;
    font-family: var(--font-heading);
    font-weight: 850;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 40%, var(--theme-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px var(--theme-glow);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 auto 1rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 250px;
}

.pricing-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--theme-color);
    font-size: 0.85rem;
}

/* ----- How it Works Steps ----- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover {
    background: rgba(var(--theme-color-rgb), 0.02);
    border-color: rgba(var(--theme-color-rgb), 0.15);
    transform: translateY(-5px);
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(var(--theme-color-rgb), 0.04);
    position: absolute;
    top: 5px;
    right: 15px;
    line-height: 1;
    transition: color 0.3s;
}

.step-card:hover .step-number {
    color: rgba(var(--theme-color-rgb), 0.09);
}

.step-card i {
    font-size: 2rem;
    color: var(--theme-color);
    margin: 0 auto 1.5rem;
    background: rgba(var(--theme-color-rgb), 0.06);
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(var(--theme-color-rgb), 0.15);
}

.step-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ----- FAQ Accordions ----- */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    border-color: rgba(var(--theme-color-rgb), 0.2);
    background: rgba(255, 255, 255, 0.025);
}

.faq-header {
    padding: 1.4rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-header i {
    font-size: 0.95rem;
    color: var(--theme-color);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(var(--theme-color-rgb), 0.07);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.faq-body {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active {
    border-color: rgba(var(--theme-color-rgb), 0.35);
    background: rgba(var(--theme-color-rgb), 0.03);
    box-shadow: 0 0 20px rgba(var(--theme-color-rgb), 0.05);
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
    background: var(--theme-color);
    color: #000;
    box-shadow: 0 0 10px var(--theme-glow);
}

.faq-item.active .faq-body {
    padding: 0 2rem 1.6rem;
    max-height: 250px;
    opacity: 1;
}

/* ----- Payment Container & QR Flow ----- */
.payment-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0;
}

.fee-badge {
    background: rgba(var(--theme-color-rgb), 0.08);
    color: var(--theme-color);
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(var(--theme-color-rgb), 0.25);
    box-shadow: 0 0 10px rgba(var(--theme-color-rgb), 0.15);
}

.fee-amount {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 850;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 40%, var(--theme-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px var(--theme-glow);
}

.qr-block-wrapper {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.1rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2.2rem;
    width: 210px;
    height: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
}

.qr-block-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    z-index: 2;
    background-color: white;
    padding: 5px;
}

.qr-block-placeholder {
    position: absolute;
    inset: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    border: 1px dashed var(--glass-border);
    gap: 8px;
    z-index: 1;
}

.qr-block-placeholder i {
    font-size: 2.5rem;
    color: var(--theme-color);
    text-shadow: 0 0 10px var(--theme-glow);
}

.qr-block-wrapper img:not([src=""])+.qr-block-placeholder {
    display: none;
}

.utr-input-box {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

/* Submit Action Button */
.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--theme-color);
    color: #000000;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 800;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 0 25px var(--theme-glow);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px var(--theme-glow), 0 5px 25px rgba(255, 255, 255, 0.4);
    background: #ffffff;
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.submit-btn.shimmering::after {
    left: 100%;
}

.submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    border-top-color: #000;
    animation: spin 1s ease-in-out infinite;
}

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

/* ----- Footer ----- */
footer {
    width: 100%;
    background: var(--bg-secondary);
    padding: 5rem 0 3.5rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--theme-color);
    text-shadow: 0 0 8px var(--theme-glow);
}

.social-links {
    display: flex;
    gap: 1.8rem;
}

.social-links a {
    font-size: 1.6rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--theme-color);
    transform: translateY(-4px);
    text-shadow: 0 0 10px var(--theme-glow);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.85;
}

/* ========================================================================
   MODERN GLASSMORPHISM & FLOAT ANIMATION STYLE GUIDE
   ======================================================================== */
.floating-wrapper {
    display: inline-block;
    animation: floatUpDown 6s ease-in-out infinite;
}

.glass-box {
    background: rgba(17, 25, 40, 0.65);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    color: #ffffff;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-box p {
    color: rgba(255, 255, 255, 0.7);
}

.glass-box:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 0 25px 2px rgba(6, 182, 212, 0.45),
        0 15px 35px 0 rgba(0, 0, 0, 0.5);
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}