@import url("https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100..900&display=swap");

* {
    font-family: 'Vazirmatn';
}
/* Discounts two-banner grid */
.discounts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.discount-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-radius: 16px;
}

.discount-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: rgba(0,0,0,0.35);
}

.discount-card .banner-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.deal-title.compact .black { font-size: 40px; font-weight: 900; letter-spacing: 2px; }
.deal-title.compact .friday { font-size: 40px; font-weight: 900; color: #ff3b6b; letter-spacing: 2px; }
.banner-sub { opacity: 0.95; }

.code-btn {
    display: inline-block;
    background: #ff3b6b;
    color: #fff;
    border-radius: 6px;
    padding: 8px 14px;
    font-weight: 800;
    width: fit-content;
}

.banner-countdown .tile { width: 72px; }
.banner-countdown .num { font-size: 22px; padding: 10px 0 4px 0; }
.banner-countdown .lbl { font-size: 11px; padding: 5px 0; }

.bg-left {
    background: url('assets/apps.jpg') center/cover no-repeat;
}

.bg-right {
    background: url('assets/apps.jpg') center/cover no-repeat;
}

@media (max-width: 992px) {
    .discounts-grid { grid-template-columns: 1fr; }
}
/*font Variables*/
/*Color Variables*/


body {
    background: linear-gradient(to right, #dfe9f3, #ffffff);
    font-family: 'Vazirmatn', sans-serif;
    min-height: 100vh;
}

.main-container {
    margin-top: 80px;
    display: flex;
    min-height: calc(100vh - 80px);
    padding: 2rem;
    flex-direction: row-reverse;
    gap: 2rem;
}

.image-section {
    flex: 0 0 50%;
    height: calc(100vh - 4rem);
    /* background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?ixlib=rb-4.0.3'); */
    background-image: url('assets/img_about2.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 1rem 0 0 1rem;
    position: relative;
    position: sticky;
    top: 2rem;
}

.image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1rem 0 0 1rem;
}

.form-section {
    flex: 0 0 50%;
    height: calc(100vh - 120px);
    background: #ffffffed;
    padding: 1.5rem;
    border-radius: 1rem 1rem 1rem 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 1rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.form-section form {
    flex: 1;
    overflow-y: auto;
    padding-right: 0.5rem;
    max-height: calc(100vh - 280px);
    padding-bottom: 0;
}

.form-section form::-webkit-scrollbar {
    width: 6px;
}

.form-section form::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.form-section form::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.form-section form::-webkit-scrollbar-thumb:hover {
    background: #555;
}

h2 {
    color: #005f73;
    font-weight: bold;
    font-size: 1.3rem;
}

.hidden {
    display: none;
}

.form-label {
    font-weight: bold;
    font-size: 0.9rem;
}

hr {
    border-top: 2px solid #ccc;
}

/* Multi-step form styles */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s;
    max-height: calc(100vh - 250px);
    overflow-y: auto;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    position: relative;
    z-index: 2;
}

.step.active {
    background: #005f73;
    border-color: #005f73;
    color: white;
}

.step.completed {
    background: #28a745;
    border-color: #28a745;
    color: white;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

/* Fixed Navigation Buttons */
.navigation-buttons-fixed {
    position: sticky;
    bottom: 0;
    /* background: #ffffffed; */
    padding: 1rem 0;
    /* border-top: 1px solid #e9ecef; */
    margin-top: 1rem;
    /* box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); */
    z-index: 10;
}

.btn-prev {
    background: #6c757d;
    color: white;
}

.btn-next {
    background: #005f73;
    color: white;
}

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

@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        gap: 1rem;
    }
    .image-section {
        flex: 0 0 300px;
        height: 300px;
        position: relative;
        top: 0;
        border-radius: 1rem 1rem 0 0;
    }
    .image-section::before {
        border-radius: 1rem 1rem 0 0;
    }
    .form-section {
        flex: 1;
        height: auto;
        position: relative;
        top: 0;
        border-radius: 0 0 1rem 1rem;
    }
}

.form-control, .form-select {
    text-align: right !important;
    direction: rtl;
    font-size: 0.9rem;
}

.form-select option {
    text-align: right;
    direction: rtl;
}

/* برای spinner های عددی */
input[type="number"] {
    text-align: right !important;
    direction: rtl;
}

/* برای placeholder ها */
.form-control::placeholder {
    text-align: right;
    direction: rtl;
}

/* برای select ها */
.form-select {
    background-position: left 0.75rem !important;
}

.contact-info-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    margin-left: 8px;
    font-size: 0.9rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-item span {
    font-size: 0.9rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.contact-item.website a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-item.website a:hover {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* ویدیو بک‌گراند تمام‌صفحه */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
    /* filter: brightness(0.5) blur(2px); */
    pointer-events: none;
}

/* Fallback background when video fails to load */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.video-failed::before {
    opacity: 1;
}

.main-container, .form-section {
    position: relative;
    z-index: 2;
}

@media (max-width: 600px) {
    .bg-video {
        object-fit: cover;
        min-width: 100vw;
        min-height: 100vh;
    }
}

/* Toast Notification Styles */
#notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    left: auto;
    z-index: 99999 !important;
    min-width: 260px;
    max-width: 350px;
    background: #ffdddd;
    color: #b71c1c;
    border: 1px solid #f5c2c7;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    direction: rtl;
    text-align: right;
}
#notification.show {
    opacity: 1;
    pointer-events: auto;
}
@media (max-width: 600px) {
    #notification {
        right: 1rem;
        left: 1rem;
        bottom: 1rem;
        min-width: unset;
        max-width: unset;
    }
}

/* Login Modal Styles */
.login-step {
    display: none;
}

.login-step.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.verification-code-container {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 1rem 0;
}

.verification-input {
    width: 50px !important;
    height: 50px;
    text-align: center !important;
    font-size: 1.2rem;
    font-weight: bold;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.verification-input:focus {
    border-color: #005f73;
    box-shadow: 0 0 0 0.2rem rgba(0, 95, 115, 0.25);
    outline: none;
}

.verification-input.filled {
    border-color: #28a745;
    background-color: #f8fff9;
}

#countdown {
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: bold;
}

.btn-link {
    text-decoration: none;
    color: #005f73;
}

.btn-link:hover {
    color: #004a5a;
}

.btn-link:disabled {
    color: #6c757d;
    pointer-events: none;
}

/* Modal customization for RTL */
.modal-header .btn-close {
    margin: 0;
    margin-left: auto;
}

.modal-title {
    color: #005f73;
    font-weight: bold;
}

/* Loading state for buttons */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Success animation */
.success-checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #28a745;
    position: relative;
    margin-left: 8px;
}

.success-checkmark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -60%) rotate(45deg);
}

/* Custom Scrollbar Styles */
html {
    scroll-behavior: smooth;
}

/* Hide scrollbars completely */
::-webkit-scrollbar {
    width: 0;
    display: none;
}

::-webkit-scrollbar-track {
    display: none;
}

::-webkit-scrollbar-thumb {
    display: none;
}

::-webkit-scrollbar-corner {
    display: none;
}

/* Firefox - hide scrollbar */
* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Hide scrollbar for specific elements */
.form-section form::-webkit-scrollbar {
    width: 0;
    display: none;
}

.modal-body::-webkit-scrollbar {
    width: 0;
    display: none;
}

/* Hide scroll to top button */
.scroll-to-top {
    display: none !important;
}

/* Login Page Styles */
.login-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.login-container {
    width: 100%;
    max-width: 450px;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-header {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    padding: 2rem;
    text-align: center;
    color: white;
}

.login-header .logo-container {
    justify-content: center;
}

.login-header .logo-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.login-header .logo {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.login-header .logo-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
}

.login-body {
    padding: 2rem;
}

.login-body .form-control {
    border-radius: 12px;
    border: 2px solid #e9ecef;
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.login-body .form-control:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

.login-body .btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    border: none;
    border-radius: 12px;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.login-body .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.login-body .btn-outline-secondary {
    border-radius: 12px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* Verification code inputs for login page */
.login-page .verification-code-container {
    gap: 12px;
    margin: 1.5rem 0;
}

.login-page .verification-input {
    width: 50px !important;
    height: 50px;
    font-size: 1.2rem;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.login-page .verification-input:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

.login-page .verification-input.filled {
    border-color: #28a745;
    background-color: #f8fff9;
}

/* Responsive login page */
@media (max-width: 768px) {
    .login-page {
        padding: 1rem;
    }

    .login-container {
        max-width: 100%;
    }

    .login-header {
        padding: 1.5rem;
    }

    .login-header .logo-icon {
        width: 50px;
        height: 50px;
    }

    .login-header .logo {
        font-size: 1.5rem;
    }

    .login-body {
        padding: 1.5rem;
    }

    .login-page .verification-input {
        width: 50px !important;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .login-header {
        padding: 1rem;
    }

    .login-body {
        padding: 1rem;
    }

    .login-page .verification-code-container {
        gap: 8px;
    }

    .login-page .verification-input {
        width: 45px !important;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Mobile scrollbar adjustments */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 8px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
    padding: 1rem 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.header-center {
    flex: 1;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.main-nav a:hover {
    background: rgba(255, 255, 255, 0.12);
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hamburger-btn {
    display: none;
    margin-left: 0.5rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.logo-icon i {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-container:hover .logo-icon {
    transform: rotate(10deg);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-subtitle {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: -2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-actions .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.header-actions .btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.header-actions .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.header-actions .btn-light {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.header-actions .btn-light:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Profile dropdown styles */
.header-actions .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
}

.header-actions .dropdown-item {
    color: #333;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0.25rem;
}

.header-actions .dropdown-item:hover {
    background: rgba(0, 95, 115, 0.1);
    color: #005f73;
    transform: translateX(-2px);
}

.header-actions .dropdown-item i {
    margin-left: 0.5rem;
    width: 16px;
}

.header-actions .dropdown-divider {
    border-color: rgba(0, 0, 0, 0.1);
    margin: 0.5rem 0;
}

/* Adjust main container for header */
.main-container {
    margin-top: 80px;
    display: flex;
    min-height: calc(100vh - 80px);
    padding: 2rem;
    flex-direction: row-reverse;
    gap: 2rem;
}

.landing-section {
    scroll-margin-top: 100px;
    padding: 100px 0 40px 0;
    position: relative;
    z-index: 1;
}

.landing-section h2 {
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* App Section */
.glass-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    padding: 24px;
}

.app-section .app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 24px;
}

.app-image {
    display: flex;
    justify-content: center;
}

.phone-mock {
    width: 260px;
    height: 520px;
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(255,255,255,0.25), rgba(255,255,255,0.08));
    border: 2px solid rgba(255,255,255,0.4);
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background: rgba(0,0,0,0.7);
    border-radius: 0 0 12px 12px;
}

.phone-screen {
    position: absolute;
    top: 45px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: url('assets/img_about2.jpg') center/cover no-repeat;
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}

.app-content {
    color: #fff;
}

.app-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.app-desc {
    font-size: 0.95rem;
    line-height: 1.9;
    opacity: 0.95;
    margin-bottom: 1rem;
}

.download-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.download-buttons .btn {
    border-radius: 12px;
    padding: 0.6rem 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-android {
    background: linear-gradient(135deg, #34a853, #1e7a39);
    color: #fff;
}
.btn-site {
    background: linear-gradient(135deg, #e2df06, #010c04);
    color: #fff;
}
.btn-telegram {
    background: linear-gradient(135deg, #0c5bd1, #1e7a39);
    color: #fff;
}
.btn-ios {
    background: linear-gradient(135deg, #333, #111);
    color: #fff;
}

.btn-android:hover { filter: brightness(1.05); }
.btn-ios:hover { filter: brightness(1.08); }

@media (max-width: 992px) {
    .app-section .app-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .app-content { padding: 0 8px; }
    .download-buttons { justify-content: center; }
}

@media (max-width: 480px) {
    .phone-mock { width: 220px; height: 460px; }
    .app-title { font-size: 1.6rem; }
}

/* Black Friday Section */
.bf-section {
    text-align: center;
}

.bf-title {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.bf-countdown {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 1rem;
    direction: ltr;
}

.bf-countdown .time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.time-value {
    color: #fff;
    font-weight: 800;
    font-size: 2rem;
    line-height: 1;
}

.time-label {
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
}

.separator {
    color: rgba(255,255,255,0.6);
    font-size: 2rem;
    font-weight: 700;
}

.bf-desc {
    color: #fff;
    opacity: 0.95;
    margin-bottom: 1rem;
}

.bf-actions {
    display: flex;
    justify-content: center;
}

.btn-bf-primary {
    background: linear-gradient(135deg, #ff6b6b, #0423ff);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0.6rem 1.2rem;
    font-weight: 700;
}

.btn-bf-primary:hover { filter: brightness(1.05); }

@media (max-width: 480px) {
    .bf-countdown { gap: 6px; padding: 10px 12px; }
    .bf-countdown .time-box { min-width: 56px; }
    .time-value { font-size: 1.6rem; }
}

/* Discounts hero (matches reference image) */
.discounts-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 24px;
    padding: 12px 0;
}

.bf-hero-left {
    color: #fff;
}

.deal-title .black {
    font-size: 88px;
    font-weight: 900;
    letter-spacing: 6px;
    line-height: 0.9;
}
.deal-title .offer {
    font-size: 50px;
    font-weight: 900;
    letter-spacing: 6px;
    color:#f4ce19;
    line-height: 0.9;
}
.deal-title .day {
    font-size: 50px;
    font-weight: 900;
    letter-spacing: 6px;
    line-height: 0.9;
    -webkit-text-stroke: 1px rgba(255,255,255,0.9);
    color: rgba(0,0,0,0);
}
.deal-title .friday {
    font-size: 88px;
    font-weight: 900;
    letter-spacing: 6px;
    line-height: 0.9;
    -webkit-text-stroke: 1px rgba(255,255,255,0.9);
    color: rgba(0,0,0,0);
}
.store-script {
    font-size: 50px;
    font-weight: 800;
    line-height: 1;
    color: #3ab77e;
    transform: rotate(-10deg);
    /*margin-top: 20px;*/
}
.sale-script {
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    color: #ff3b6b;
    transform: rotate(-10deg);
    margin-top: -20px;
}

.deal-countdown {
    display: flex;
    gap: 16px;
    margin: 20px 0 24px 0;
}

.deal-countdown .tile {
    width: 90px;
    background: #e81f4b;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.35);
    text-align: center;
}

.deal-countdown .tile .num {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    padding: 14px 0 6px 0;
}

.deal-countdown .tile .lbl {
    background: #fff;
    color: #333;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 6px 0;
    border-radius: 0 0 6px 6px;
}

.btn-shop {
    background: #ff3b6b;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 22px;
    font-weight: 800;
    letter-spacing: 1px;
}

.btn-shop:hover { filter: brightness(1.05); }

.bf-hero-right {
    position: relative;
}

.product-visual {
    position: relative;
    display: inline-block;
}

.product-visual .circle {
    position: absolute;
    inset: -40px -60px -40px -60px;
    background: radial-gradient(circle at 40% 40%, rgba(255,255,255,0.06), rgba(0,0,0,0) 60%);
    border-radius: 50%;
    z-index: 0;
}

.product-img {
    position: relative;
    z-index: 1;
    width: 380px;
    max-width: 100%;
    height: auto;
}

.sale-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background: linear-gradient(135deg, #ff1f5a, #ff3b6b);
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px 999px 999px 999px / 70% 70% 30% 30%;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.sale-badge .super {
    font-weight: 900;
    line-height: 1.1;
    font-size: 14px;
    text-align: right;
}

.sale-badge .off {
    background: #fff;
    color: #ff3b6b;
    font-weight: 900;
    border-radius: 999px;
    padding: 6px 8px;
    font-size: 12px;
}

.sale-badge .off span {
    font-weight: 700;
    margin-right: 3px;
}

@media (max-width: 992px) {
    .discounts-hero { grid-template-columns: 1fr; text-align: center; }
    .deal-title .black, .deal-title .friday { font-size: 64px; }
    .sale-script { font-size: 90px; }
    .product-img { width: 320px; }
    .sale-badge { right: 0; top: 10px; }
    .deal-countdown { justify-content: center; }
}

@media (max-width: 480px) {
    .deal-title .black, .deal-title .friday { font-size: 48px; letter-spacing: 4px; }
    .sale-script { font-size: 72px; }
    .deal-countdown .tile { width: 76px; }
}

/* Ads Section */
.ads-section .ads-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 24px;
}

.ads-image {
    display: flex;
    justify-content: center;
}

.ads-img {
    width: 100%;
    max-width: 460px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.ads-content { color: #fff; }
.ads-title { font-size: 2rem; margin-bottom: 0.6rem; }
.ads-subtitle { opacity: 0.9; margin-bottom: 1rem; line-height: 1.9; }

.ads-features { display: flex; flex-direction: column; gap: 16px; margin: 1rem 0; }

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.feature-title { font-weight: 800; }
.feature-desc { font-size: 0.9rem; opacity: 0.9; }

.ads-actions { margin-top: 0.5rem; }

@media (max-width: 992px) {
    .ads-section .ads-grid { grid-template-columns: 1fr; text-align: center; }
    .ads-features { align-items: center; }
}

/* Contact section action buttons */
.contact-actions .btn {
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
}

/* General button font size */
.btn {
    font-size: 0.85rem;
}

/* General heading font sizes */
h5, h6 {
    font-size: 0.9rem;
}

h4 {
    font-size: 1rem;
}

/* Compact form spacing */
.form-section .mb-3 {
    margin-bottom: 0.8rem;
}

.form-section .mb-4 {
    margin-bottom: 1.2rem;
}

.form-section .mt-4 {
    margin-top: 1.2rem;
}

/* Summary Step Styles */
.summary-container {
    background: rgba(0, 95, 115, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 95, 115, 0.1);
}

/* Personality Categories Styles */
.personality-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.category-section {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 1.2rem;
    border: 1px solid rgba(0, 95, 115, 0.1);
    transition: all 0.3s ease;
}

.category-section:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #005f73;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 95, 115, 0.2);
}

.category-title i {
    font-size: 1.1rem;
}

.category-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-options .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.category-options .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 95, 115, 0.2);
}

/* Selection Counter */
.selection-counter {
    background: rgba(0, 95, 115, 0.05);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(0, 95, 115, 0.1);
}

.counter-text {
    display: block;
    text-align: center;
    font-weight: 600;
    color: #005f73;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.counter-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 95, 115, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.counter-progress {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

/* Responsive summary */
@media (max-width: 768px) {
    .summary-container {
        padding: 1rem;
    }

    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .summary-label {
        min-width: auto;
        font-size: 0.8rem;
    }

    .summary-value {
        margin-right: 0;
        font-size: 0.8rem;
    }

    .summary-tags {
        margin-right: 0;
    }

    .summary-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Responsive personality categories */
@media (max-width: 768px) {
    .personality-categories {
        gap: 1rem;
    }

    .category-section {
        padding: 1rem;
    }

    .category-title {
        font-size: 0.85rem;
    }

    .category-options .btn {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .selection-counter {
        padding: 0.8rem;
    }

    .counter-text {
        font-size: 0.8rem;
    }
}

/* My Gifts Page Styles */
.my-gifts-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
}

.my-gifts-page .bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.my-gifts-page .main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.my-gifts-page .right-menu {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.gifts-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
    width: calc(100% - 4rem);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    margin: 120px auto 2rem auto;
    position: relative;
    z-index: 100;
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
}

.gifts-header {
    text-align: center;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.gifts-title {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.gifts-subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin: 0;
}

/* Gift Flip Container */
.gift-flip-container {
    position: relative;
    height: 350px;
    margin: 1.5rem 0;
    perspective: 1000px;
    flex: 1;
    min-height: 300px;
}

.gift-card {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.gift-card-front {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.gift-image {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.gift-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gift-card:hover .gift-img {
    transform: scale(1.05);
}

.gift-info {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gift-name {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.gift-description {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    flex: 1;
}

.gift-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.gift-tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Gift Navigation */
.gift-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1.5rem 0;
    gap: 1rem;
    flex-shrink: 0;
}

.gift-counter {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(52, 152, 219, 0.2);
}

.gift-navigation .btn {
    border-radius: 20px;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

/* Gift Actions */
.gift-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.gift-actions .btn {
    border-radius: 20px;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 120px;
    font-size: 0.9rem;
}

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

/* Back to Form Button */
.back-to-form {
    text-align: center;
    margin-top: 1.5rem;
    flex-shrink: 0;
}

.back-to-form .btn {
    border-radius: 20px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

/* Paper Flip Animation */
.gift-card.flipping {
    animation: flipCard 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes flipCard {
    0% {
        transform: rotateY(0deg) scale(1);
    }
    50% {
        transform: rotateY(90deg) scale(0.8);
    }
    100% {
        transform: rotateY(0deg) scale(1);
    }
}

.gift-card.sliding-out {
    transform: translateX(-100%) rotateY(-15deg);
    opacity: 0;
}

.gift-card.sliding-in {
    transform: translateX(100%) rotateY(15deg);
    opacity: 0;
}

.gift-card.active {
    transform: translateX(0) rotateY(0deg);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .my-gifts-page .right-menu {
        position: fixed;
        right: 0;
        top: auto;
        bottom: 0;
        transform: none;
        width: 100%;
        z-index: 1000;
    }

    .my-gifts-page .right-menu .menu-container {
        flex-direction: row;
        justify-content: space-around;
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .my-gifts-page .right-menu .menu-item {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
        padding: 0.5rem;
        min-width: auto;
        font-size: 0.7rem;
    }

    .my-gifts-page .right-menu .menu-item i {
        font-size: 1.2rem;
    }

    .gifts-container {
        padding: 1.5rem;
        margin: 100px 1rem 1.5rem 1rem;
        width: calc(100% - 2rem);
        min-height: calc(100vh - 180px);
        margin-bottom: 80px; /* Add bottom margin for mobile menu */
    }

    .gifts-title {
        font-size: 2rem;
    }

    .gift-flip-container {
        height: 320px;
        min-height: 280px;
    }

    .gift-image {
        height: 140px;
    }

    .gift-navigation {
        flex-direction: column;
        gap: 0.8rem;
        margin: 1.2rem 0;
    }

    .gift-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
        margin: 1.2rem 0;
    }

    .gift-actions .btn {
        width: 100%;
        max-width: 220px;
    }

    .gifts-header {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .my-gifts-page .right-menu .menu-container {
        padding: 0.4rem;
    }

    .my-gifts-page .right-menu .menu-item {
        padding: 0.4rem;
        font-size: 0.65rem;
    }

    .my-gifts-page .right-menu .menu-item i {
        font-size: 1.1rem;
    }

    .gifts-container {
        padding: 1rem;
        margin: 90px 0.5rem 1rem 0.5rem;
        width: calc(100% - 1rem);
        min-height: calc(100vh - 160px);
        margin-bottom: 70px; /* Adjust bottom margin for smaller screens */
    }

    .gifts-title {
        font-size: 1.8rem;
    }

    .gift-flip-container {
        height: 280px;
        min-height: 250px;
        margin: 1rem 0;
    }

    .gift-image {
        height: 120px;
    }

    .gift-info {
        padding: 0.8rem;
    }

    .gift-name {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .gift-description {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .gift-navigation {
        margin: 1rem 0;
    }

    .gift-actions {
        margin: 1rem 0;
    }

    .back-to-form {
        margin-top: 1rem;
    }
}

/* Right Side Menu Styles */
.right-menu {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    width: 200px;
}

.menu-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px 0 0 15px;
    padding: 1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    margin: 0.2rem 0;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 3px solid transparent;
    font-size: 0.85rem;
    font-weight: 500;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(-5px);
    border-right-color: #ff6b6b;
}

.menu-item.active {
    background: rgba(255, 107, 107, 0.2);
    color: white;
    border-right-color: #ff6b6b;
    font-weight: 600;
}

.menu-item i {
    font-size: 1.1rem;
    margin-left: 0.8rem;
    width: 20px;
    text-align: center;
}

.menu-item span {
    flex: 1;
    text-align: right;
}

/* Menu item specific colors */
.menu-item[data-section="gift-form"] i {
    color: #ff6b6b;
}

.menu-item[data-section="my-gifts"] i {
    color: #ff8e53;
}

.menu-item[data-section="history"] i {
    color: #4ecdc4;
}

.menu-item[data-section="favorites"] i {
    color: #ffe66d;
}

.menu-item[data-section="settings"] i {
    color: #95e1d3;
}

.menu-item[data-section="help"] i {
    color: #a8e6cf;
}

/* Responsive menu */
@media (max-width: 1200px) {
    .right-menu {
        width: 180px;
    }

    .menu-item {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }

    .menu-item i {
        font-size: 1rem;
        margin-left: 0.6rem;
    }
}

@media (max-width: 768px) {
    .right-menu {
        position: fixed;
        bottom: 0;
        right: 0;
        top: auto;
        transform: none;
        width: 100%;
        height: auto;
    }

    .menu-container {
        border-radius: 15px 15px 0 0;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom: none;
        padding: 0.5rem;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .menu-item {
        flex-direction: column;
        padding: 0.5rem;
        margin: 0.1rem;
        border-right: none;
        border-bottom: 3px solid transparent;
        text-align: center;
        min-width: 80px;
    }

    .menu-item:hover {
        transform: translateY(-3px);
        border-bottom-color: #ff6b6b;
    }

    .menu-item.active {
        border-bottom-color: #ff6b6b;
    }

    .menu-item i {
        margin-left: 0;
        margin-bottom: 0.3rem;
        font-size: 1.2rem;
    }

    .menu-item span {
        font-size: 0.7rem;
        text-align: center;
    }
}

/* Responsive header */
@media (max-width: 768px) {
    .header-content {
        padding: 0 0.5rem;
        flex-wrap: wrap;
        row-gap: 0.5rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-icon i {
        font-size: 1.2rem;
    }

    .main-header {
        padding: 0.6rem 0;
    }

    .hamburger-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav {
        display: none;
    }

    .main-nav a {
        font-size: 0.85rem;
        padding: 0.35rem 0.6rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-subtitle {
        font-size: 0.7rem;
    }

    .header-actions .btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .main-container {
        margin-top: 70px;
        min-height: calc(100vh - 70px);
        padding: 1rem;
    }

    .form-section {
        height: calc(100vh - 100px);
        padding: 1rem;
    }

    .form-section form {
        max-height: calc(100vh - 220px);
    }

    .form-step.active {
        max-height: calc(100vh - 260px);
    }

    .navigation-buttons-fixed {
        padding: 0.8rem 0;
        margin-top: 0.8rem;
    }

    .landing-section {
        scroll-margin-top: 80px;
        padding: 70px 0 32px 0;
    }
}

@media (max-width: 480px) {
    .logo-container {
        gap: 0.5rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

    .logo-icon i {
        font-size: 1rem;
    }

    .logo {
        font-size: 1rem;
    }

    .logo-subtitle {
        font-size: 0.6rem;
    }

    .header-actions {
        gap: 0.3rem;
    }

    .header-actions .btn {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .main-nav a {
        font-size: 0.8rem;
        padding: 0.3rem 0.5rem;
    }

    .landing-section {
        scroll-margin-top: 70px;
        padding: 100px 0 28px 0;
    }
}