/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* CSS Variables */
:root {
    --primary-color: #ea580c;
    --primary-dark: #c2410c;
    --primary-light: #fb923c;
    --secondary-color: #f59e0b;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --text-color: #374151;
    --text-light: #6b7280;
    --text-dark: #111827;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --header-height: 70px;
}

/* Utility Classes */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 5rem 0;
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section__description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.highlight {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: center;
    justify-content: center;
    min-width: 120px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--gray-300);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    height: var(--header-height);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.nav__logo i {
    margin-right: 0.5rem;
    font-size: 1.75rem;
    color: var(--primary-color);
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav__link:hover,
.nav__link.active-link {
    color: var(--primary-color);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active-link::after {
    width: 100%;
}


.nav__toggle,
.nav__close {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* Hide mobile nav header on desktop */
.nav__header {
    display: none;
}


/* Home Section */
.home {
    padding-top: calc(var(--header-height) + 2rem);
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.home__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.home__title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.home__description {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.home__buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.home__stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat__text {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.home__image {
    position: relative;
    height: 500px;
}

.home__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.home__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    width: 75px;
    height: 100px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
    overflow: hidden;
}

.floating-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--border-radius);
    transition: var(--transition);
    pointer-events: none;
    z-index: 1;
}

.floating-card:hover::after {
    background: rgba(0, 0, 0, 0.15);
}

.floating-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: -15%;
    animation-delay: -2s;
}

.card-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: -4s;
}

.card-4 {
    top: 35%;
    left: -5%;
    animation-delay: -1s;
}

.card-5 {
    bottom: 40%;
    right: -8%;
    animation-delay: -3s;
}

.card-6 {
    top: 75%;
    right: 5%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Products Section */
.products {
    background-color: var(--gray-50);
}


.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.product-card__image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-card__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    pointer-events: none;
}

.product-card:hover .product-card__image::after {
    background: rgba(0, 0, 0, 0.2);
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-card__badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 10;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-authenticated {
    background-color: var(--success-color);
    color: var(--white);
}

.badge-limited {
    background-color: var(--secondary-color);
    color: var(--white);
}

.badge-rookie {
    background-color: var(--primary-color);
    color: var(--white);
}

.badge-memorial {
    background-color: var(--accent-color);
    color: var(--white);
}

.product-card__wishlist {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--white);
    border: 2px solid transparent;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.product-card__wishlist:hover {
    background-color: var(--white);
    color: #ef4444;
    border: 2px solid #ef4444;
}

.product-card__content {
    padding: 1.5rem;
}

.product-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-card__description {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 2.625rem; /* 1.5 line-height * 0.875rem * 2 lines */
}

.product-card__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.stars {
    display: flex;
    color: var(--secondary-color);
}

.rating-text {
    font-size: 0.875rem;
    color: var(--text-light);
}



/* Authentication Section */
.authentication__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Certificate Verification Section - Standalone */
.certificate-verification-section {
    margin-top: 4rem;
    padding: 3rem 0;
}

/* Certificate Verification */
.certificate-verification {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
}

.verification__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.verification__description {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.verification__form {
    margin-bottom: 1.5rem;
}

.verification__input-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.verification__input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 1.125rem;
    outline: none;
    transition: var(--transition);
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-height: 56px;
}

.verification__input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.verification__btn {
    white-space: nowrap;
    min-width: 120px;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    min-height: 56px;
}

.verification__results {
    animation: fadeInUp 0.3s ease;
}

.verification__status {
    padding: 1rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    margin-bottom: 1rem;
}

.verification__status.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.verification__status.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.verification__details {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.verification__detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.verification__detail-item:last-child {
    border-bottom: none;
}

.verification__detail-label {
    font-weight: 500;
    color: var(--text-dark);
}

.verification__detail-value {
    color: var(--primary-color);
    font-weight: 600;
}

.authentication__features {
    margin: 3rem 0;
}

.feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.feature__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature__description {
    color: var(--text-light);
    line-height: 1.6;
}


.authentication__image {
    position: relative;
}

.auth__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.auth-badges {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.auth-badge {
    background-color: var(--white);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.auth-badge img {
    width: 60px;
    height: auto;
}

/* About Section */
.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.about-stat {
    text-align: center;
}

.about-stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.about-stat__text {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.about__mission {
    background-color: var(--gray-50);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin-top: 2rem;
}

.about__mission h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about__image {
    position: relative;
}

.about__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.about__overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.about__year {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.125rem;
}

/* Contact Section */
.contact {
    background-color: var(--gray-50);
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact__item {
    display: flex;
    gap: 1rem;
}

.contact__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact__details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact__details p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact__form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    font-family: inherit;
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__submit {
    width: 100%;
    position: relative;
    transition: var(--transition);
}

.form__submit:disabled {
    cursor: not-allowed;
    transform: none !important;
}

.form__submit:disabled:hover {
    transform: none !important;
}

.form__submit .fa-spinner {
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer__container {
    margin-bottom: 3rem;
}

.footer__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer__logo i {
    margin-right: 0.5rem;
    color: var(--primary-light);
}

.footer__description {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.footer__social-link:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.footer__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: flex-start;
}

.footer__links li {
    margin-bottom: 0;
}

.footer__link {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
}

.footer__link:hover {
    color: var(--primary-light);
}


.footer__bottom {
    border-top: 1px solid var(--gray-300);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copyright {
    color: var(--gray-300);
}


/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .section__title {
        font-size: 2rem;
    }
    
    .home__container,
    .authentication__container,
    .about__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .feature__content {
        text-align: left;
    }
    
    .home__title {
        font-size: 2.5rem;
    }
    
    .home__stats {
        justify-content: center;
    }
    
    .about__stats {
        justify-content: center;
    }
    
    .contact__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        border-left: 1px solid var(--gray-200);
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.1rem 2rem;
        border-bottom: 1px solid var(--gray-200);
        /*background-color: var(--gray-50);*/
    }
    
    .nav__header .nav__logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--text-color);
    }
    
    .nav__header .nav__logo i {
        font-size: 1.25rem;
        color: var(--primary-color);
    }
    
    .nav__list {
        flex-direction: column;
        gap: 0;
        text-align: left;
        padding: 0;
        margin: 0;
    }
    
    .nav__link {
        font-size: 1rem;
        font-weight: 400;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--gray-100);
        transition: background-color 0.2s ease;
        position: relative;
        display: block;
        color: var(--text-color);
    }
    
    .nav__link:hover {
        background-color: var(--gray-50);
        color: var(--primary-color);
    }
    
    .nav__link.active-link {
        background-color: var(--primary-color);
        color: var(--white);
    }
    
    .nav__link::after {
        display: none;
    }
    
    .nav__close,
    .nav__toggle {
        display: block;
    }
    
    .nav__toggle {
        font-size: 1.25rem;
        padding: 0.5rem;
        color: var(--text-color);
        transition: color 0.2s ease;
    }
    
    .nav__toggle:hover {
        color: var(--primary-color);
    }
    
    .nav__close {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        color: var(--text-light);
        transition: color 0.2s ease;
        font-size: 1.125rem;
        position: relative;
    }
    
    .nav__close:hover {
        color: var(--text-color);
    }
    
    .section__title {
        font-size: 1.75rem;
    }
    
    .home {
        padding-top: calc(var(--header-height) + 3rem);
    }
    
    .home__title {
        font-size: 2rem;
    }
    
    .home__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .home__stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .products__grid {
        grid-template-columns: 1fr;
    }
    
    .about__stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .floating-card {
        width: 75px;
        height: 100px;
        display: block;
    }
    
    .card-1 {
        top: 20%;
        left: 8%;
    }
    
    .card-2 {
        top: 70%;
        right: 5%;
    }
    
    .card-3 {
        top: 45%;
        left: 5%;
    }
    
    .card-4 {
        top: 75%;
        left: 15%;
    }
    
    .card-5 {
        top: 25%;
        right: 10%;
    }
    
    .card-6 {
        top: 55%;
        right: 8%;
    }
    
    .footer__content {
        text-align: center;
        gap: 2rem;
    }
    
    .footer__logo {
        justify-content: center;
    }
    
    .footer__links {
        justify-content: center;
        gap: 1rem;
    }
    
            .footer__bottom {
                flex-direction: column;
                text-align: center;
            }
            
            /* Certificate Verification Mobile */
            .certificate-verification-section {
                margin-top: 2rem;
                padding: 2rem 0;
            }
            
            .certificate-verification {
                padding: 2rem 1rem;
                margin: 0 1rem;
                max-width: none;
            }
            
            .verification__description {
                max-width: none;
                margin-bottom: 1.5rem;
            }
            
            .verification__title {
                font-size: 1.75rem;
            }
            
            .verification__description {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }
            
            .verification__input-group {
                flex-direction: column;
                gap: 1rem;
                max-width: none;
            }
            
            .verification__input {
                width: 100%;
                min-height: 48px;
                padding: 0.875rem 1rem;
                font-size: 1rem;
            }
            
            .verification__btn {
                width: 100%;
                min-height: 48px;
                padding: 0.875rem 1.5rem;
                min-width: auto;
            }
        }
        

@media screen and (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .home__title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
    }
    
    .product-card__content {
        padding: 1rem;
    }
    
    .contact__form {
        padding: 1.5rem;
    }
    
    .feature__content {
        text-align: left;
    }
    
    .home {
        padding-top: calc(var(--header-height) + 2.5rem);
    }
    
    .floating-card {
        width: 75px;
        height: 100px;
    }
    
    .card-1 {
        top: 18%;
        left: 5%;
    }
    
    .card-2 {
        top: 72%;
        right: 3%;
    }
    
    .card-3 {
        top: 42%;
        left: 3%;
    }
    
    .card-4 {
        top: 78%;
        left: 12%;
    }
    
    .card-5 {
        top: 22%;
        right: 8%;
    }
    
    .card-6 {
        top: 58%;
        right: 5%;
    }
    
    .footer__logo {
        justify-content: center;
    }
}
