/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ===== Geometric Background Shapes ===== */
.geo-shapes {
    z-index: 0;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
    background: #d4a017;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
}

.geo-circle--2 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    left: -100px;
    opacity: 0.03;
}

.geo-square {
    position: absolute;
    opacity: 0.04;
    background: #0a0f2c;
    border-radius: 20px;
    transform: rotate(15deg);
}

.geo-square--1 {
    width: 300px;
    height: 300px;
    top: 40%;
    right: 5%;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 80px 140px 80px;
    border-color: transparent transparent #d4a017 transparent;
    opacity: 0.04;
    transform: rotate(-15deg);
}

.geo-triangle--1 {
    top: 60%;
    left: 3%;
}

.geo-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: 0.06;
    background-image: radial-gradient(circle, #0a0f2c 1.5px, transparent 1.5px);
    background-size: 12px 12px;
}

.geo-dots--1 {
    bottom: 20%;
    right: 10%;
}

/* ===== Navigation ===== */
.nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10, 15, 44, 0.06);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 4px 30px rgba(10, 15, 44, 0.08);
}

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

.nav__logo {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.nav__logo-text {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    color: #0a0f2c;
}

.nav__logo-sub {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #d4a017;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0a0f2c;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a017;
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: #d4a017;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: #0a0f2c;
    color: #fff !important;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: #162366;
    transform: translateY(-1px);
}

.nav__toggle {
    color: #0a0f2c;
    padding: 0.5rem;
}

/* Mobile Menu */
.nav__mobile {
    border-top: 1px solid rgba(10, 15, 44, 0.08);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
}

.nav__mobile-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav__mobile-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #0a0f2c;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(10, 15, 44, 0.06);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.nav__mobile-link:hover {
    color: #d4a017;
    padding-left: 0.5rem;
}

.nav__mobile-link--cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0a0f2c;
    color: #fff !important;
    border-radius: 50px;
    margin-top: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-bottom: none;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
}

.hero__gradient {
    background: linear-gradient(135deg, #0a0f2c 0%, #111b52 40%, #1a2a78 70%, #2438a0 100%);
}

.hero__shapes {
    pointer-events: none;
}

.hero__shape {
    position: absolute;
    opacity: 0.12;
}

.hero__shape--circle-1 {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: #d4a017;
    top: -100px;
    right: -100px;
    opacity: 0.08;
}

.hero__shape--circle-2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #f0cc5c;
    bottom: -50px;
    left: 5%;
    opacity: 0.06;
}

.hero__shape--rect-1 {
    width: 200px;
    height: 200px;
    background: #d4a017;
    top: 20%;
    left: 8%;
    transform: rotate(30deg);
    opacity: 0.06;
    border-radius: 20px;
}

.hero__shape--rect-2 {
    width: 120px;
    height: 120px;
    background: #f0cc5c;
    bottom: 25%;
    right: 12%;
    transform: rotate(-20deg);
    opacity: 0.08;
    border-radius: 12px;
}

.hero__shape--triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 100px 60px;
    border-color: transparent transparent #f0cc5c transparent;
    top: 30%;
    right: 5%;
    transform: rotate(-10deg);
    opacity: 0.1;
}

.hero__content {
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.hero__badge {
    animation: fadeInDown 0.8s ease both;
}

.hero__headline {
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero__subhead {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__ctas {
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero__scroll {
    animation: fadeInUp 0.8s ease 0.5s both;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__scroll-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero__scroll-text {
    font-family: 'Space Grotesk', sans-serif;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn--gold {
    background: #d4a017;
    color: #0a0f2c;
}

.btn--gold:hover {
    background: #e8b828;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 160, 23, 0.35);
}

.btn--navy {
    background: #0a0f2c;
    color: #fff;
}

.btn--navy:hover {
    background: #162366;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 15, 44, 0.3);
}

.btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

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

.btn--md {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
}

.btn--full {
    width: 100%;
}

/* ===== Sections ===== */
.section {
    position: relative;
    padding: 6rem 0;
}

.section--light {
    background: #fafafa;
}

.section--navy {
    background: #0a0f2c;
}

.section--gold {
    background: linear-gradient(135deg, #fdf0c4 0%, #f7db8a 50%, #e8b828 100%);
}

.section__container {
    position: relative;
    z-index: 1;
}

.section__header {
    text-align: left;
}

.section__label {
    display: block;
}

.section__label--light {
    color: #0a0f2c;
}

.section__title {
    font-family: 'DM Serif Display', Georgia, serif;
}

.section__title--light {
    color: #0a0f2c;
}

/* ===== Marquee ===== */
.marquee-strip {
    position: relative;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 12px;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    flex-shrink: 0;
}

.marquee-dot {
    color: rgba(10, 15, 44, 0.4);
    flex-shrink: 0;
    font-size: 0.5rem;
    line-height: 1;
    padding-top: 0.35rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Product Cards ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 15, 44, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(10, 15, 44, 0.12);
}

.product-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card__accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a017, #f0cc5c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card__accent {
    transform: scaleX(1);
}

.product-card__content {
    display: flex;
    flex-direction: column;
}

.product-card__icon {
    display: inline-flex;
}

.product-card__title {
    font-family: 'Space Grotesk', sans-serif;
}

.product-card__desc {
    font-size: 0.9375rem;
}

.product-card--cta {
    background: linear-gradient(135deg, #0a0f2c, #111b52);
}

.product-card--cta .product-card__title {
    color: #fff;
}

/* ===== About Section ===== */
.about__shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.about__shape {
    position: absolute;
    opacity: 0.06;
}

.about__shape--circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: #d4a017;
    top: -200px;
    right: -150px;
}

.about__shape--square {
    width: 250px;
    height: 250px;
    background: #f0cc5c;
    bottom: -80px;
    left: 5%;
    transform: rotate(20deg);
    border-radius: 24px;
}

.about__shape--dot-grid {
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle, #d4a017 2px, transparent 2px);
    background-size: 16px 16px;
    top: 30%;
    left: 3%;
    opacity: 0.15;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.about__images {
    position: relative;
}

.about__img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about__img-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__img-float {
    border: 4px solid #0a0f2c;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.about__img-float-img {
    width: 250px;
    height: 187px;
    object-fit: cover;
    display: block;
}

.about__badge {
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.4);
}

.about__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about__feature-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== Visit Section ===== */
.visit__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.visit__map {
    position: relative;
    min-height: 350px;
    box-shadow: 0 12px 40px rgba(10, 15, 44, 0.12);
}

.visit__map-img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
}

.visit__map-overlay {
    transition: background 0.3s ease;
}

.visit__map:hover .visit__map-overlay {
    background: rgba(10, 15, 44, 0.5);
}

.visit__map-btn {
    transition: all 0.25s ease;
}

.visit__info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.visit__card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(10, 15, 44, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.visit__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(10, 15, 44, 0.1);
}

.visit__card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.visit__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
}

/* ===== Contact Section ===== */
.contact__shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.contact__shape {
    position: absolute;
    opacity: 0.15;
    background: #0a0f2c;
}

.contact__shape--circle-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: -100px;
    left: -80px;
}

.contact__shape--circle-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    bottom: -60px;
    right: 5%;
}

.contact__shape--rect {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 3%;
    transform: rotate(25deg);
    border-radius: 16px;
    opacity: 0.08;
}

.contact__form {
    box-shadow: 0 20px 60px rgba(10, 15, 44, 0.15);
}

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

.form-label {
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(10, 15, 44, 0.12);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #0a0f2c;
    background: #fafafa;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-input::placeholder {
    color: rgba(10, 15, 44, 0.35);
}

.form-input:focus {
    border-color: #d4a017;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.1);
}

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

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

.contact__info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ===== Footer ===== */
.footer {
    position: relative;
}

.footer__container {
    position: relative;
    z-index: 1;
}

.footer__logo {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.footer__logo-text {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2rem;
}

.footer__logo-sub {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer__heading {
    margin-bottom: 1rem;
}

.footer__links,
.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__link {
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer__social-link:hover {
    background: #d4a017;
    color: #0a0f2c;
    transform: translateY(-2px);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #0a0f2c;
    color: #d4a017;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(10, 15, 44, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
    z-index: 40;
}

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

.back-to-top:hover {
    background: #162366;
    transform: translateY(-2px);
}

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal[data-reveal-state="hidden"] {
    opacity: 0;
    transform: translateY(30px);
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .reveal[data-reveal-state="hidden"] {
        opacity: 1;
        transform: none;
    }
    
    .marquee-track {
        animation: none;
    }
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .visit__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .section {
        padding: 8rem 0;
    }
}

@media (max-width: 767px) {
    .hero__headline {
        font-size: 2.75rem;
    }
    
    .hero__shape--circle-1 {
        width: 300px;
        height: 300px;
    }
    
    .hero__shape--rect-1 {
        width: 120px;
        height: 120px;
    }
    
    .hero__shape--rect-2 {
        width: 80px;
        height: 80px;
    }
    
    .section__title {
        font-size: 2.5rem;
    }
    
    .about__img-float {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
    }
    
    .about__img-float-img {
        width: 100%;
        height: auto;
    }
    
    .about__badge {
        position: relative;
        top: auto;
        left: auto;
        display: inline-block;
        margin-top: 1rem;
    }
    
    .about__features {
        grid-template-columns: 1fr;
    }
}
