:root {
    --primary-color: #4e54c8;
    --secondary-color: #8f94fb;
}

body {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    min-height: 100vh;
}

.hero-section {
    padding: 40px 0;  /* Reduced from 100px */
    color: white;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.qr-container {
    text-align: center;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 15px;
    margin: 30px auto;
}

.qr-code-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px auto;
    width: 320px;        /* Increased to 320px for ~25% larger */
    height: 360px;       /* Increased from 320px to 360px to accommodate text */
    padding-bottom: 40px; /* Add padding at bottom */
}

#qrcode {
    padding: 0;
    margin: 0 auto;
}

#qrcode img {
    margin: 0 auto;
    display: block;
}

.qr-code-wrapper svg {
    width: 100%;
    height: 100%;
    display: block;      /* Remove extra space */
    object-fit: contain; /* Maintain aspect ratio */
}

.feature-icon {
    font-size: 2.5rem;
    color: white;
    margin: 20px 0;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.step-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
    height: 100%;
}

.step-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 2px solid white;
}

.step-box h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.step-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1rem;
}

.handwritten {
    font-family: 'Dancing Script', cursive;
    font-size: 1.1em;
    font-weight: 700;
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.2);
}

.finder-box {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    color: white;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.2);
}

.finder-header {
    text-align: center;
    margin-bottom: 25px;
}

.finder-header i {
    font-size: 3rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.finder-header h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    margin: 0;
}

.finder-content .lead {
    font-size: 1.1rem;
    opacity: 0.9;
    text-align: center;
    margin-bottom: 30px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-icon i {
    font-size: 1.2rem;
}

.contact-details {
    flex: 1;
}

.contact-details label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 3px;
}

.contact-details a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-details a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.stacked-icons {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
}

.stacked-icons i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.stacked-icons .fa-circle-check {
    font-size: 3.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stacked-icons .fa-heart {
    font-size: 1.8rem;
    color: #ff6b6b;
    background: none;
    border: none;
    margin-top: -5px;
}

/* Toast Notifications */
.toast {
    max-width: 450px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-radius: 12px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.toast:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.toast .toast-body {
    padding: 1rem;
    line-height: 1.5;
}

.toast strong {
    font-weight: 600;
}

.toast .btn-close-white {
    opacity: 0.8;
    transition: opacity 0.2s;
}

.toast .btn-close-white:hover {
    opacity: 1;
}
