/* ───────────────────────────────────────────
   Noise & Toys — Custom Styles
   ─────────────────────────────────────────── */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    overflow-x: hidden;
}

/* ─── Page Loader ─── */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #102a43;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.active {
    opacity: 1;
    visibility: visible;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.loader-bar {
    width: 120px;
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 999px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-fill {
    width: 40%;
    height: 100%;
    background: #f59e0b;
    border-radius: 999px;
    animation: loaderSlide 1s ease-in-out infinite;
}

@keyframes loaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(250%); }
}

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(16, 42, 67, 0.06);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(16, 42, 67, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #102a43;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}

.logo-icon {
    color: #102a43;
}

.logo-text {
    font-weight: 600;
}

.logo-amp {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #f59e0b;
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #334e68;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f59e0b;
    transition: width 0.25s ease;
    border-radius: 999px;
}

.nav-link:hover {
    color: #102a43;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #102a43;
    color: #fff;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.2s ease;
}

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

.nav-cta:hover {
    background: #243b53;
    color: #fff;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background: #102a43;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(16, 42, 67, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: #fff;
    padding: 100px 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu-overlay.open .mobile-menu-content {
    transform: translateX(0);
}

.mobile-nav-link {
    text-decoration: none;
    color: #334e68;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(16, 42, 67, 0.06);
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: #102a43;
}

.mobile-nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #102a43;
    color: #fff;
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 0.5rem;
}

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f8 40%, #f8f6f0 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 42, 67, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(245, 158, 11, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(16, 42, 67, 0.08);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #334e68;
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #f59e0b;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.12;
    color: #102a43;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
}

.accent-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #d97706;
    font-weight: 400;
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #486581;
    margin: 0 0 2rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: #102a43;
    color: #fff;
    box-shadow: 0 4px 20px rgba(16, 42, 67, 0.25);
}

.btn-primary:hover {
    background: #243b53;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 42, 67, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    color: #102a43;
    border: 1px solid rgba(16, 42, 67, 0.12);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.btn-navy {
    background: #102a43;
    color: #fff;
    box-shadow: 0 4px 20px rgba(16, 42, 67, 0.25);
}

.btn-navy:hover {
    background: #243b53;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 42, 67, 0.3);
}

.btn-gold {
    background: #d97706;
    color: #fff;
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.3);
}

.btn-gold:hover {
    background: #b45309;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(217, 119, 6, 0.4);
}

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

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

/* Hero right — card layout */
.hero-right {
    position: relative;
    min-height: 520px;
}

.hero-card-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(16, 42, 67, 0.15);
    aspect-ratio: 420/500;
}

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

.card-main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(16, 42, 67, 0.85) 0%, transparent 100%);
}

.card-main-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.floating-card {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(16, 42, 67, 0.12);
    border: 1px solid rgba(16, 42, 67, 0.04);
    z-index: 2;
}

.floating-card .fc-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 12px;
    color: #92400e;
    flex-shrink: 0;
}

.floating-card .fc-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: #102a43;
    line-height: 1.2;
}

.floating-card .fc-label {
    font-size: 0.75rem;
    color: #627d98;
    line-height: 1.3;
}

.floating-card-1 {
    top: 10%;
    right: -20px;
    animation: float-1 4s ease-in-out infinite;
}

.floating-card-2 {
    bottom: 28%;
    left: -30px;
    animation: float-2 5s ease-in-out infinite;
}

.floating-card-3 {
    bottom: 8%;
    right: 10%;
    animation: float-3 4.5s ease-in-out infinite;
}

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

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

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

/* ─── Section shared ─── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d97706;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: #102a43;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.section-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #486581;
    max-width: 560px;
}

/* ─── About ─── */
.about {
    padding: 8rem 0;
    background: #fff;
}

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

.about-image-wrap {
    position: relative;
}

.about-img-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 20px;
    z-index: -1;
}

.about-img-wrap img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(16, 42, 67, 0.1);
    display: block;
}

.about-img-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: #102a43;
    color: #fff;
    padding: 12px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(16, 42, 67, 0.25);
}

.about-text {
    font-size: 1.02rem;
    line-height: 1.75;
    color: #486581;
    margin: 0 0 1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

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

.about-feature .af-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 8px;
    color: #92400e;
    flex-shrink: 0;
}

.about-feature span {
    font-size: 0.95rem;
    color: #334e68;
    font-weight: 500;
}

/* ─── Products ─── */
.products {
    padding: 8rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f0f4f8 100%);
}

.section-header {
    margin-bottom: 3.5rem;
}

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

.product-card {
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(16, 42, 67, 0.06);
    border: 1px solid rgba(16, 42, 67, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(16, 42, 67, 0.12);
}

.pc-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.pc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

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

.pc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 42, 67, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pc-overlay span {
    background: #fff;
    color: #102a43;
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.product-card:hover .pc-overlay {
    opacity: 1;
}

.pc-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.pc-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #102a43;
    margin: 0 0 0.4rem;
}

.pc-desc {
    font-size: 0.88rem;
    color: #627d98;
    line-height: 1.6;
    margin: 0;
}

/* ─── Why Us ─── */
.why-us {
    padding: 8rem 0;
    background: #fff;
}

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

.why-left .section-sub {
    margin-bottom: 0;
}

.why-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-card {
    background: linear-gradient(135deg, #f8fafc, #f0f4f8);
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid rgba(16, 42, 67, 0.04);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 30px rgba(16, 42, 67, 0.08);
}

.wc-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: rgba(245, 158, 11, 0.2);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.wc-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #fde68a);
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.wc-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #102a43;
    margin: 0 0 0.4rem;
}

.wc-text {
    font-size: 0.9rem;
    color: #486581;
    line-height: 1.65;
    margin: 0;
}

/* ─── Testimonials ─── */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(135deg, #102a43 0%, #243b53 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials .section-label {
    color: #fde047;
}

.testimonials .section-title {
    color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
}

.tc-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1.25rem;
}

.tc-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.5rem;
    font-style: italic;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tc-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.tc-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.tc-location {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ─── Visit ─── */
.visit {
    padding: 8rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f0f4f8 100%);
}

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

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    border: 1px solid rgba(16, 42, 67, 0.06);
    box-shadow: 0 2px 12px rgba(16, 42, 67, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 42, 67, 0.1);
}

.contact-card-static {
    cursor: default;
    pointer-events: none;
}

.cc-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 12px;
    color: #92400e;
    flex-shrink: 0;
}

.cc-label {
    font-size: 0.78rem;
    color: #627d98;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin-bottom: 2px;
}

.cc-value {
    font-size: 0.95rem;
    color: #102a43;
    font-weight: 600;
}

.contact-card svg:last-child {
    margin-left: auto;
    color: #bcccdc;
    flex-shrink: 0;
}

.hours-box {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(16, 42, 67, 0.06);
    box-shadow: 0 2px 12px rgba(16, 42, 67, 0.04);
}

.hours-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #102a43;
    margin-bottom: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(16, 42, 67, 0.04);
    font-size: 0.9rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span:first-child {
    color: #486581;
    font-weight: 500;
}

.hours-row span:last-child {
    color: #102a43;
    font-weight: 600;
}

.hours-closed span:last-child {
    color: #627d98;
    font-weight: 500;
}

.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(16, 42, 67, 0.12);
    border: 4px solid #fff;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* ─── CTA Banner ─── */
.cta-banner {
    padding: 6rem 0;
    background: linear-gradient(135deg, #102a43 0%, #243b53 60%, #334e68 100%);
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(245, 158, 11, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(253, 224, 71, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Footer ─── */
.footer {
    background: #0a1a2e;
    padding: 4rem 0 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .logo-link {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 1.25rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fde047;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ─── Toast ─── */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #102a43;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 12px 40px rgba(16, 42, 67, 0.3);
    z-index: 2000;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast svg {
    color: #f59e0b;
    flex-shrink: 0;
}

/* ─── Scroll Reveal ─── */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 2.5rem;
    }
    
    .hero-right {
        min-height: 420px;
    }
    
    .about-grid,
    .why-grid,
    .visit-grid {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 4rem;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-right {
        min-height: 320px;
        order: -1;
    }
    
    .hero-card-main {
        aspect-ratio: 4/3;
        border-radius: 18px;
    }
    
    .floating-card-1 {
        right: -10px;
        top: 5%;
    }
    
    .floating-card-2 {
        left: -10px;
    }
    
    .floating-card-3 {
        right: 5%;
    }
    
    .about,
    .products,
    .why-us,
    .testimonials,
    .visit {
        padding: 5rem 0;
    }
    
    .about-grid,
    .why-grid,
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image-wrap {
        order: -1;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        justify-content: center;
        width: 100%;
    }
    
    .floating-card {
        padding: 10px 14px;
    }
    
    .floating-card .fc-icon {
        width: 32px;
        height: 32px;
    }
    
    .floating-card .fc-value {
        font-size: 0.78rem;
    }
    
    .floating-card .fc-label {
        font-size: 0.68rem;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .reveal-up,
    .reveal-left,
    .reveal-right {
        opacity: 0;
        transform: translateY(30px);
    }
    
    .reveal-up.revealed,
    .reveal-left.revealed,
    .reveal-right.revealed {
        opacity: 1;
        transform: none;
    }
}

@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-up,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }
}
