/* Matrimony Website - Custom Styles */

:root {
    --primary-color: #C2185B; /* Fuchsia/Magenta - matching Pushpadia logo */
    --secondary-color: #FFB800; /* Gold - matching Pushpadia logo */
    --accent-color: #E91E63; /* Lighter magenta */
    --primary-dark: #9E1450; /* Darker magenta for hover */
    --light-bg: #FFF5F9; /* Light pink tint */
    --dark-text: #333;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    padding-top: 80px; /* Account for fixed navbar */
    background-color: #f8f9fa;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

/* Logo and Branding */
.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.navbar-brand {
    font-size: 1.1rem;
}

.brand-name {
    color: var(--primary-color);
    font-size: 1.4rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.tagline {
    color: var(--secondary-color);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    line-height: 1;
    margin-top: 2px;
} 

/* Hero Banner Section */
.hero-banner-section {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 3rem 0;
    overflow: hidden;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-bg-1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1); 
    }
} 

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: linear-gradient(135deg, rgba(194, 24, 91, 0.75) 0%, rgba(156, 39, 176, 0.65) 50%, rgba(255, 184, 0, 0.4) 100%);*/
    z-index: 1;
}

.hero-banner-section .container {
    position: relative;
    z-index: 2;
}

.min-vh-75 {
    min-height: 70vh;
}

.banner-content {
    padding: 1.5rem 0;
}

/* Banner Animations */
.animate-fade-in-up {
    animation: fadeInUp 1s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.animate-fade-in-up-delay-1 {
    animation: fadeInUp 1s ease-out 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.animate-fade-in-up-delay-2 {
    animation: fadeInUp 1s ease-out 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.animate-fade-in-up-delay-3 {
    animation: fadeInUp 1s ease-out 0.9s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-title {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.brand-highlight {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 184, 0, 0.5), 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 184, 0, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
}

.banner-subtitle {
    font-size: 1.4rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    font-weight: 600;
}

.banner-description {
    font-size: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.7;
}

/* Banner Features Badges */
.banner-features {
    margin-top: 1.5rem;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.feature-badge i {
    font-size: 1rem;
}

.registration-card {
    border-radius: 15px;
    overflow: hidden;
    max-width: 100%;
    animation: slideInRight 0.8s ease-out;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.registration-card .card-header {
    border-radius: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.registration-card .card-header h5 {
    font-size: 1.1rem;
}

.registration-card .form-control,
.registration-card .form-select {
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    border: 1px solid #dee2e6;
    font-size: 0.9rem;
}

.registration-card .form-label {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.registration-card .form-check-input {
    margin-top: 0.5rem;
    cursor: pointer;
    
}

.registration-card .form-check-label {
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.registration-card .form-check-input:checked + .form-check-label {
    background-color: rgba(194, 24, 91, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

/* Button Group Styling for Gender Selection */
.registration-card .btn-check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.registration-card .btn-check:checked + .btn-outline-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 8px rgba(194, 24, 91, 0.3);
}

.registration-card .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 8px !important;
    font-weight: 500;
    padding: 3px 9px !important;
    cursor: pointer;
}

.registration-card .btn-outline-primary:hover {
    background-color: rgba(194, 24, 91, 0.1);
    border-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.registration-card .btn-check:focus + .btn-outline-primary {
    box-shadow: 0 0 0 0.25rem rgba(194, 24, 91, 0.25);
}

/* Gender Selection Icons */
.registration-card #profileForBride + label i {
    color: var(--primary-color);
}

.registration-card #profileForGroom + label i {
    color: var(--primary-color);
}

.registration-card #profileForBride:checked + label i,
.registration-card #profileForGroom:checked + label i {
    color: white;
}

.registration-card .input-group-text {
    border-radius: 8px 0 0 8px;
    border-right: none;
}

.registration-card .input-group .form-control {
    border-left: none;
    border-radius: 0 8px 8px 0;
}

/* Hero Section (Legacy - keeping for compatibility) */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 3rem 0;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="%23e9ecef" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section .card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.hero-section .card-header {
    border-radius: 0;
}

/* Feature Cards */
.feature-icon {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
}

.card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--primary-color) !important;
}

.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 24, 91, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.card {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 12px;
    border: 1px solid #e9ecef;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(194, 24, 91, 0.2) !important;
    border-color: var(--primary-color);
}

.card:hover::after {
    transform: scaleX(1);
}

/* Step Numbers */
.step-number {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    box-shadow: 0 4px 15px rgba(194, 24, 91, 0.3);
    cursor: pointer;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-number:hover {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 6px 20px rgba(194, 24, 91, 0.4);
}

.step-number:hover::before {
    opacity: 1;
}

.step-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
}

.step-item:hover {
    background-color: rgba(194, 24, 91, 0.05);
}

/* Membership Cards */
.membership-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    height: 100% !important;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    /* min-height: 500px; */
}

.membership-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(194, 24, 91, 0.25) !important;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 15px 15px 0 0;
}

.membership-card:hover::before {
    transform: scaleX(1);
}

.membership-card .card-header {
    border-radius: 15px 15px 0 0;
    padding: 2rem 1rem !important;
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 2px solid #f0f0f0;
}

.membership-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem !important;
}

.membership-card ul {
    flex: 1;
    margin-bottom: 1.5rem;
}

.membership-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.membership-card ul li:last-child {
    border-bottom: none;
}

.membership-card .btn {
    margin-top: auto;
    padding: 0.75rem 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.membership-features {
    min-height: 220px;
}

.membership-features li {
    font-size: 0.85rem !important;
    line-height: 1.6;
}

.membership-features li i {
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
}


/* Plan Icons */
.plan-icon {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.plan-icon-large {
    font-size: 4rem;
    line-height: 1;
}

.membership-card .price {
    margin: 0.75rem 0;
}

.membership-card .price span {
    display: block;
    line-height: 1.2;
}

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

.membership-card .card-header small {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Membership Slick Slider */
.membership-slider-wrapper {
    position: relative;
}

.membership-slider .slick-list {
    margin: -10px;
}

.membership-slider .slick-slide > div {
    padding: 10px;
}

/* Slick Arrow Styling */
.membership-slider .slick-prev,
.membership-slider .slick-next {
    z-index: 10;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.membership-slider .slick-prev {
    left: -20px;
}

.membership-slider .slick-next {
    right: -20px;
}

.membership-slider .slick-prev:before,
.membership-slider .slick-next:before {
    font-size: 20px;
    color: white;
    opacity: 1;
}

.membership-slider .slick-prev:hover,
.membership-slider .slick-next:hover {
    background-color: var(--primary-dark);
}

/* Slick Dots Styling */
.membership-slider .slick-dots {
    bottom: -50px;
    position: relative;
    margin-top: 30px;
}

.membership-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0.5;
}

.membership-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--primary-color);
}

/* Responsive Membership Cards */
@media (max-width: 991.98px) {
    .membership-card {
        min-height: 480px;
    }
    
    .membership-card .card-header {
        min-height: 160px;
        padding: 1.5rem 1rem !important;
    }
    
    .membership-features {
        min-height: 200px;
    }
    
    .membership-slider .slick-prev {
        left: -10px;
    }
    
    .membership-slider .slick-next {
        right: -10px;
    }
    
    .membership-slider .slick-prev,
    .membership-slider .slick-next {
        width: 35px;
        height: 35px;
    }
    
    .membership-slider .slick-prev:before,
    .membership-slider .slick-next:before {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .membership-card {
        min-height: auto;
    }
    
    .membership-card .card-header {
        min-height: 150px;
        padding: 1.25rem 1rem !important;
    }
    
    .membership-card .card-body {
        padding: 1.25rem !important;
    }
    
    .membership-features {
        min-height: auto;
    }
    
    .plan-icon {
        font-size: 2.5rem;
    }
    
    .membership-card h5 {
        font-size: 1.25rem;
    }
    
    .membership-slider-wrapper {
        padding: 0 5px;
        margin: 0 -5px;
    }
    
    .membership-slider .slick-prev {
        left: 5px;
    }
    
    .membership-slider .slick-next {
        right: 5px;
    }
    
    .membership-slider .slick-prev,
    .membership-slider .slick-next {
        width: 30px;
        height: 30px;
    }
    
    .membership-slider .slick-prev:before,
    .membership-slider .slick-next:before {
        font-size: 14px;
    }
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background-color: #ffffff !important;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(194, 24, 91, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(194, 24, 91, 0.15);
    padding: 0.3rem 0;
}

.navbar-brand {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-light .navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 0.25rem;
    border-radius: 8px;
}

.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(194, 24, 91, 0.05);
}

.navbar-light .navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(194, 24, 91, 0.25);
}

.navbar-light .navbar-toggler {
    border-color: rgba(0,0,0,0.1);
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 0.9rem;
    }
    
    .logo-img {
        height: 35px !important;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
    
    .tagline {
        font-size: 0.55rem;
    }
}


/* Forms */
.form-control,
.form-select {
    transition: all 0.3s ease;
    border: 1.5px solid #dee2e6;
    border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(194, 24, 91, 0.15), 0 2px 8px rgba(194, 24, 91, 0.1);
    transform: translateY(-1px);
}

.form-control:hover:not(:focus),
.form-select:hover:not(:focus) {
    border-color: rgba(194, 24, 91, 0.5);
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.form-control:focus ~ .form-label,
.form-select:focus ~ .form-label {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(194, 24, 91, 0.3);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
}

/* Footer */
.footer-main {
    background: linear-gradient(180deg, #2c2c2c 0%, #1f1f1f 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
}

.footer-top {
    padding: 4rem 0 2rem;
    background-color: #2c2c2c;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(194, 24, 91, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 184, 0, 0.1) 0%, transparent 50%);
}

.footer-bottom {
    padding: 1.5rem 0;
    background-color: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(194, 24, 91, 0.4));
    transition: transform 0.3s ease;
}

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

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand-name {
    color: var(--primary-color);
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
    text-shadow: 0 2px 4px rgba(194, 24, 91, 0.2);
}

.footer-tagline {
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-top: 0.35rem;
    text-shadow: 0 1px 2px rgba(255, 184, 0, 0.2);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Footer Links */
.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.footer-subtitle {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-list li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-list li a::before {
    content: '\2022';
    color: var(--secondary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.footer-list li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
    text-decoration: none;
}

.footer-list li a:hover::before {
    transform: scale(1.3);
}

/* Social Links */
.footer-social h6 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(194, 24, 91, 0.4);
}

/* Footer Contact */
.footer-contact {
    margin-top: 0;
}

.footer-contact-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.footer-contact-item i {
    color: var(--secondary-color);
    font-size: 1rem;
    width: 20px;
    margin-right: 0.75rem;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Footer Bottom */
.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.footer-bottom i {
    color: var(--secondary-color);
}

.footer-bottom .mx-2 {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive Footer */
@media (max-width: 991.98px) {
    .footer-top {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-logo-img {
        height: 55px;
    }
    
    .footer-brand-name {
        font-size: 1.6rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .footer-top {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-logo {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .footer-brand-name {
        font-size: 1.4rem;
    }
    
    .footer-tagline {
        font-size: 0.7rem;
    }
    
    .footer-title {
        margin-top: 1.5rem;
    }
    
    .footer-bottom {
        text-align: center !important;
    }
    
    .footer-bottom .col-md-6 {
        text-align: center !important;
    }
}

/* Trust Section */
#trustSection .card {
    border-radius: 15px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-banner-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .min-vh-75 {
        min-height: auto;
    }
    
    .banner-content {
        padding: 1rem 0;
        text-align: center;
    }
    
    .banner-title {
        font-size: 2rem !important;
    }
    
    .banner-subtitle {
        font-size: 1.2rem !important;
    }
    
    .banner-description {
        font-size: 0.95rem !important;
    }
    
    .banner-features {
        justify-content: center;
    }
    
    .feature-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .registration-card {
        margin-top: 2rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero-banner-section {
        padding: 1.5rem 0;
    }
    
    .banner-title {
        font-size: 1.75rem !important;
    }
    
    .banner-subtitle {
        font-size: 1.1rem !important;
    }
    
    .banner-description {
        font-size: 0.9rem !important;
    }
    
    .feature-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.7rem;
    }
    
    .registration-card .card-header h5 {
        font-size: 1rem;
    }
    
    .registration-card .card-body {
        padding: 1rem !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .navbar-brand .d-flex.flex-column {
        margin-left: 0.5rem;
    }
    
    .logo-img {
        height: 40px !important;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
    
    .tagline {
        font-size: 0.6rem;
    }
}

@media (max-width: 575.98px) {
    .banner-title {
        font-size: 1.5rem !important;
    }
    
    .banner-subtitle {
        font-size: 1rem !important;
    }
    
    .banner-description {
        font-size: 0.85rem !important;
    }
    
    .feature-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        margin-bottom: 0.5rem;
    }
    
    .banner-features .d-flex {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Button Animations */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Section Spacing */
section {
    padding: 4rem 0;
}

/* Background Sections */
.bg-white {
    background-color: #ffffff !important;
}

/* Section Headers */
section h2.display-5,
section h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

section h2.display-5::after,
section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

section .lead {
    color: #6c757d;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Section Spacing */
section {
    position: relative;
    overflow: hidden;
}

section.py-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

/* Modal Enhancements */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-radius: 15px 15px 0 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 2rem;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading States */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Focus Visible for Accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Better Text Selection */
::selection {
    background-color: var(--primary-color);
    color: white;
}

/* Policy Pages Styles */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.6s ease-out;
}

.policy-content h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--secondary-color);
}

.policy-content h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.policy-content h2:hover {
    padding-left: 1.5rem;
    color: var(--primary-dark);
}

.policy-content h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
    color: #495057;
    line-height: 1.8;
}

.policy-content ul,
.policy-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-content li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
    position: relative;
}

.policy-content ul li::marker {
    color: var(--primary-color);
}

.policy-content .alert {
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Contact Form */
/* Contact Page Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, rgba(194, 24, 91, 0.05) 0%, rgba(255, 184, 0, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="%23C2185B" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100%25" height="100%25" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.contact-title-bg {
    position: relative;
    display: inline-block;
}

.contact-title-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.contact-hero-badges {
    margin-top: 2rem;
}

.hero-badge-item {
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(194, 24, 91, 0.2);
    border-color: var(--primary-color);
}

.hero-badge-item i {
    font-size: 1.1rem;
}

/* Contact Info Cards */
.contact-info-wrapper,
.contact-form-wrapper {
    height: 100%;
}

.contact-info-card-main,
.contact-form-card {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    background: #ffffff;
}

.card-header-contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-header-contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.contact-header-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-header-icon i {
    font-size: 2rem;
    color: white;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(194, 24, 91, 0.03) 0%, rgba(255, 184, 0, 0.03) 100%);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(194, 24, 91, 0.15);
    border-left-width: 6px;
    background: linear-gradient(135deg, rgba(194, 24, 91, 0.05) 0%, rgba(255, 184, 0, 0.05) 100%);
}

.contact-info-item:hover::before {
    left: 100%;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(194, 24, 91, 0.3);
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-info-content {
    flex: 1;
}

.contact-info-content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
    padding-left: 5px;
}

.contact-link:hover::after {
    width: 100%;
}

/* Contact Form */
.contact-form {
    padding: 0;
}

.contact-form .form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(194, 24, 91, 0.15), 0 4px 12px rgba(194, 24, 91, 0.1);
    transform: translateY(-2px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .form-check {
    background: rgba(194, 24, 91, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

.contact-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-form .form-check-label {
    font-size: 0.9rem;
}

.contact-form .form-check-label a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.contact-form .form-check-label a:hover {
    text-decoration: underline;
}

/* Registration Form Checkbox Styling */
.registration-card .registration-form-check {
    background: rgba(194, 24, 91, 0.05);
    padding: 4px 14px;
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    margin-top: 0.5rem;
}

.registration-card .registration-form-check .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.registration-card .registration-form-check .form-check-label {
    font-size: 0.9rem;
}

.registration-card .registration-form-check .form-check-label a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.registration-card .registration-form-check .form-check-label a:hover {
    text-decoration: underline;
}

/* Map Section */
.map-card {
    border-radius: 20px;
    overflow: hidden;
}

.card-header-map {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 1.5rem;
    text-align: center;
}

.map-container {
    position: relative;
    min-height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
    padding: 3rem;
    text-align: center;
}

.map-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(194, 24, 91, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

.map-icon-wrapper i {
    font-size: 3rem;
    color: white;
}

.map-placeholder h5 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.map-placeholder p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* About Us Section */
.about-icon-wrapper {
    text-align: center;
}

.about-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(194, 24, 91, 0.3);
    animation: float 3s ease-in-out infinite;
}

.about-icon i {
    font-size: 4rem;
    color: white;
}

.about-feature-item {
    padding: 0.75rem;
    background: rgba(194, 24, 91, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    background: rgba(194, 24, 91, 0.1);
    transform: translateX(5px);
}

.stat-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(194, 24, 91, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(194, 24, 91, 0.3);
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Comprehensive Mobile Responsive Styles */

/* Large Tablets and Below (991.98px) */
@media (max-width: 991.98px) {
    /* Contact Page */
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-icon {
        margin: 0 auto;
    }
    
    .card-header-contact {
        padding: 1.5rem 1rem;
    }
    
    .contact-header-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-header-icon i {
        font-size: 1.5rem;
    }
    
    .hero-badge-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* About Us Section */
    .about-content {
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .about-icon {
        width: 100px;
        height: 100px;
    }
    
    .about-icon i {
        font-size: 3rem;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    /* Policy Pages */
    .policy-content {
        padding: 2rem 1.5rem;
    }
    
    /* Membership Cards */
    .membership-card .card-header {
        padding: 1.5rem 1rem !important;
    }
    
    /* Section Headers */
    section h2.display-5,
    section h2 {
        font-size: 2rem;
    }
    
    section .lead {
        font-size: 1rem;
    }
    
    /* Step Numbers */
    .step-number {
        width: 70px !important;
        height: 70px !important;
        font-size: 1.75rem !important;
    }
}

/* Tablets and Below (768px) */
@media (max-width: 768px) {
    /* Contact Page */
    .contact-hero-section {
        padding: 2rem 0 !important;
    }
    
    .contact-title-bg {
        font-size: 2rem !important;
    }
    
    .map-container {
        min-height: 300px;
    }
    
    .map-placeholder {
        min-height: 300px;
        padding: 2rem;
    }
    
    .map-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .map-icon-wrapper i {
        font-size: 2.5rem;
    }
    
    /* About Us */
    .about-icon {
        width: 90px;
        height: 90px;
    }
    
    .about-icon i {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .stat-card h3 {
        font-size: 1.75rem;
    }
    
    /* Policy Pages */
    .policy-content {
        padding: 1.5rem 1rem;
    }
    
    .policy-content h1 {
        font-size: 1.75rem;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
        padding-left: 0.5rem;
    }
    
    /* Why Choose Us Cards */
    .feature-card {
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        font-size: 2.5rem !important;
    }
    
    /* Modal */
    .modal-body {
        padding: 1.5rem;
    }
    
    /* Container Padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Small Devices (575.98px) */
@media (max-width: 575.98px) {
    /* Contact Page */
    .contact-hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-badge-item {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .contact-info-item {
        padding: 1rem;
    }
    
    .contact-info-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-info-icon i {
        font-size: 1.25rem;
    }
    
    .contact-form .form-control,
    .contact-form .form-select {
        font-size: 0.9rem;
    }
    
    .contact-form textarea {
        min-height: 120px;
    }
    
    .map-placeholder {
        padding: 1.5rem;
    }
    
    .map-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .map-icon-wrapper i {
        font-size: 2rem;
    }
    
    /* About Us */
    .about-icon {
        width: 80px;
        height: 80px;
    }
    
    .about-icon i {
        font-size: 2rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon i {
        font-size: 1.25rem;
    }
    
    .stat-card h3 {
        font-size: 1.5rem;
    }
    
    .stat-card p {
        font-size: 0.9rem;
    }
    
    .about-feature-item {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
    
    /* Policy Pages */
    .policy-content {
        padding: 1rem 0.75rem;
        border-radius: 10px;
    }
    
    .policy-content h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .policy-content h2 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
        padding-left: 0.5rem;
    }
    
    .policy-content p {
        font-size: 0.9rem;
        text-align: left;
    }
    
    /* Registration Form */
    .registration-card .form-control,
    .registration-card .form-select {
        font-size: 0.85rem;
    }
    
    .registration-card .btn-outline-primary {
        padding: 8px 12px !important;
        font-size: 0.85rem;
    }
    
    .registration-card .btn-outline-primary i {
        font-size: 1.25rem !important;
    }
    
    .registration-card .registration-form-check {
        padding: 8px 10px;
    }
    
    .registration-card .registration-form-check .form-check-label {
        font-size: 0.8rem;
    }
    
    /* Step Numbers */
    .step-number {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
    
    /* Section Headers */
    section h2.display-5,
    section h2 {
        font-size: 1.5rem;
    }
    
    section .lead {
        font-size: 0.95rem;
    }
    
    /* Cards */
    .card-body {
        padding: 1rem !important;
    }
    
    /* Buttons */
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Footer */
    .footer-top {
        padding: 2rem 0 1rem;
    }
    
    .footer-logo {
        text-align: center;
        margin-bottom: 1.5rem;
    }
}

/* Extra Small Devices (400px) */
@media (max-width: 400px) {
    /* Contact Page */
    .contact-title-bg {
        font-size: 1.5rem !important;
    }
    
    .contact-info-content h5 {
        font-size: 1rem;
    }
    
    /* About Us */
    .about-icon {
        width: 70px;
        height: 70px;
    }
    
    .about-icon i {
        font-size: 1.75rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-card h3 {
        font-size: 1.25rem;
    }
    
    /* Policy Pages */
    .policy-content {
        padding: 0.75rem;
    }
    
    .policy-content h1 {
        font-size: 1.25rem;
    }
    
    .policy-content h2 {
        font-size: 1.1rem;
    }
    
    .policy-content p {
        font-size: 0.85rem;
    }
    
    /* Registration Form */
    .registration-card .card-header h5 {
        font-size: 0.9rem;
    }
    
    .registration-card .form-label {
        font-size: 0.8rem;
    }
    
    /* Step Numbers */
    .step-number {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem !important;
    }
    
    /* Section Headers */
    section h2.display-5,
    section h2 {
        font-size: 1.25rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

.registration-card #profileForBride + label:hover i {
    color: white;
}