/**
 * Liza's — Public Landing Page (index.php)
 * Navy & Champagne Gold Theme
 * Aligned with Admin Premium Theme
 *
 * @package Liza
 * @version 1.0.0
 */

/* ============================================================
   1. VARIABLES & RESET
   ============================================================ */

:root {
    /* Brand Colors */
    --brand-navy: #0c1222;
    --brand-navy-mid: #151d32;
    --brand-gold: #c9a84c;
    --brand-gold-light: #e8d5a3;
    --brand-gold-dark: #a68832;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Effects */
    --gradient-brand: linear-gradient(135deg, #c9a84c 0%, #e8d5a3 50%, #a68832 100%);
    --gradient-hero-overlay: linear-gradient(180deg, rgba(12, 18, 34, 0.72) 0%, rgba(12, 18, 34, 0.55) 40%, rgba(12, 18, 34, 0.82) 100%);
    --glass-light: rgba(255, 253, 249, 0.92);
    --radius-lg: 18px;
    --shadow-premium: 0 8px 32px rgba(12, 18, 34, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--brand-navy);
    min-height: 100vh;
}

/* Background layers */
body::before,
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

body::before {
    background-image: url('../../images/index.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

body::after {
    background: var(--gradient-hero-overlay);
}


/* ============================================================
   2. NAVIGATION
   ============================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.35s ease;
}

.navbar.scrolled {
    background: var(--glass-light);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0.65rem 5%;
    box-shadow: var(--shadow-premium);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
    border: 2px solid rgba(201, 168, 76, 0.35);
    flex-shrink: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.logo-text-main {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.15;
    transition: color 0.3s ease;
}

.logo-text-sub {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--brand-gold-light);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.navbar.scrolled .logo-text-main {
    color: var(--brand-navy);
}

.navbar.scrolled .logo-text-sub {
    color: var(--brand-gold-dark);
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    position: relative;
    transition: color 0.25s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--brand-navy);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-brand);
    transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-gold-light);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--brand-gold-dark);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.btn-nav {
    padding: 0.5rem 1.15rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    background: transparent;
    background-image: none;
}

.btn-nav-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: transparent;
    background-image: none;
}

.btn-nav-outline {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--brand-gold-light);
    color: var(--brand-gold-light);
    background-image: none;
}

.navbar.scrolled .btn-nav-outline {
    color: var(--brand-navy);
    border-color: rgba(201, 168, 76, 0.4);
    background: rgba(201, 168, 76, 0.1);
    background-image: none;
}

/* ============================================================
   FIXED: SIGN IN BUTTON - WHITE BACKGROUND (FULL FIX)
   ============================================================ */

/* Primary button - White background with navy text */
.btn-nav-primary,
.nav-actions .btn-nav-primary,
.nav-actions .btn-nav.btn-nav-primary,
a.btn-nav-primary,
a.btn-nav.btn-nav-primary {
    background: #ffffff !important;
    background-image: none !important;
    color: #0c1222 !important;
    border: 1.5px solid #ffffff !important;
    box-shadow: 0 4px 18px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-nav-primary:hover,
.nav-actions .btn-nav-primary:hover,
.nav-actions .btn-nav.btn-nav-primary:hover,
a.btn-nav-primary:hover,
a.btn-nav.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4);
    background: #f5f3ed !important;
    background-image: none !important;
    border-color: #f5f3ed !important;
}

.btn-nav-primary i,
.nav-actions .btn-nav-primary i,
.nav-actions .btn-nav.btn-nav-primary i,
a.btn-nav-primary i,
a.btn-nav.btn-nav-primary i {
    color: #0c1222;
}

/* When navbar is scrolled, keep button white */
.navbar.scrolled .btn-nav-primary,
.navbar.scrolled .nav-actions .btn-nav-primary,
.navbar.scrolled .nav-actions .btn-nav.btn-nav-primary,
.navbar.scrolled a.btn-nav-primary,
.navbar.scrolled a.btn-nav.btn-nav-primary {
    background: #ffffff !important;
    background-image: none !important;
    color: #0c1222 !important;
    border-color: #ffffff !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .btn-nav-primary:hover,
.navbar.scrolled .nav-actions .btn-nav-primary:hover,
.navbar.scrolled .nav-actions .btn-nav.btn-nav-primary:hover,
.navbar.scrolled a.btn-nav-primary:hover,
.navbar.scrolled a.btn-nav.btn-nav-primary:hover {
    background: #f5f3ed !important;
    background-image: none !important;
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.3);
}

/* Mobile Menu Button - keep white background */
.mobile-menu .btn-nav-primary,
.mobile-menu .btn-nav.btn-nav-primary,
.mobile-menu a.btn-nav-primary,
.mobile-menu a.btn-nav.btn-nav-primary {
    background: #ffffff !important;
    background-image: none !important;
    color: #0c1222 !important;
    border-color: #ffffff !important;
}

.mobile-menu .btn-nav-primary:hover,
.mobile-menu .btn-nav.btn-nav-primary:hover,
.mobile-menu a.btn-nav-primary:hover,
.mobile-menu a.btn-nav.btn-nav-primary:hover {
    background: #f5f3ed !important;
    background-image: none !important;
}

/* ============================================================
   END OF FIXED SIGN IN BUTTON
   ============================================================ */

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1001;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

.navbar.scrolled .menu-toggle span {
    background: var(--brand-navy);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(12, 18, 34, 0.97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-menu.open {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.25s ease;
}

.mobile-menu a:hover {
    color: var(--brand-gold-light);
}

.mobile-menu .btn-nav {
    margin-top: 0.5rem;
}

.mobile-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.75rem;
    cursor: pointer;
    padding: 8px;
}


/* ============================================================
   3. HERO SECTION
   ============================================================ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 7rem 5% 5rem;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--brand-gold-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease forwards;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 0.5rem;
    animation: fadeUp 0.8s ease 0.1s forwards;
}

.hero h1 .gold {
    color: var(--brand-gold-light);
    display: block;
    font-size: 0.72em;
    letter-spacing: 4px;
    margin-top: 0.35rem;
}

.hero .tagline {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.45rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.82);
    max-width: 620px;
    margin: 1.25rem auto 2rem;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    animation: fadeUp 0.8s ease 0.3s forwards;
}

.btn-hero {
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: all 0.25s ease;
    letter-spacing: 0.03em;
    cursor: pointer;
    border: none;
}

.btn-hero-primary {
    background: var(--gradient-brand);
    color: var(--brand-navy);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(201, 168, 76, 0.5);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--brand-gold-light);
    color: var(--brand-gold-light);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--brand-gold-light);
    font-weight: 700;
}

.hero-stat span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 22px;
    height: 36px;
    border: 2px solid rgba(201, 168, 76, 0.5);
    border-radius: 14px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 7px;
    background: var(--brand-gold);
    border-radius: 2px;
    animation: scrollDot 2s infinite;
}


/* ============================================================
   4. COMMON SECTION STYLES
   ============================================================ */

.section-wrap {
    padding: 5rem 5%;
    position: relative;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 0.75rem;
}

.section-label::after {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: var(--gradient-brand);
    margin: 0.5rem auto 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
}


/* ============================================================
   5. SERVICES SECTION
   ============================================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 253, 249, 0.95);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    color: var(--brand-navy);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(201, 168, 76, 0.35);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-gold-dark);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.service-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-navy);
}

.service-list {
    list-style: none;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
    font-size: 0.92rem;
    color: #475569;
}

.service-list li:last-child {
    margin-bottom: 0;
}

.service-list i {
    color: var(--brand-gold);
    font-size: 0.85rem;
    width: 18px;
    flex-shrink: 0;
}


/* ============================================================
   6. ABOUT SECTION
   ============================================================ */

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-frame {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--brand-navy-mid), var(--brand-navy));
    border: 2px solid rgba(201, 168, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.about-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-frame .placeholder-icon {
    font-size: 4rem;
    color: rgba(201, 168, 76, 0.4);
}

.about-visual::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content .section-label::after {
    margin: 0.5rem 0 0;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.about-content h2 span {
    color: var(--brand-gold-light);
}

.about-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}


/* ============================================================
   7. CONTACT SECTION
   ============================================================ */

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: rgba(255, 253, 249, 0.95);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all 0.3s ease;
    color: var(--brand-navy);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(201, 168, 76, 0.3);
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.contact-header i {
    font-size: 1.5rem;
    color: var(--brand-gold-dark);
}

.contact-header h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
}

.contact-details p {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-details i {
    color: var(--brand-gold);
    margin-top: 3px;
    width: 18px;
    flex-shrink: 0;
}

.contact-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    flex-wrap: wrap;
}

.contact-social a {
    color: var(--brand-gold-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.contact-social a:hover {
    text-decoration: underline;
}


/* ============================================================
   8. CTA SECTION
   ============================================================ */

.cta-band {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(21, 29, 50, 0.6));
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--radius-lg);
}

.cta-band h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}


/* ============================================================
   9. FOOTER
   ============================================================ */

footer {
    background: rgba(12, 18, 34, 0.95);
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    padding: 4rem 5% 2rem;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-gold-light);
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.social-links {
    display: flex;
    gap: 0.65rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--brand-gold-light);
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-links a:hover {
    background: var(--gradient-brand);
    color: var(--brand-navy);
    transform: translateY(-2px);
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.25rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.55rem;
}

.footer-column ul li:last-child {
    margin-bottom: 0;
}

.footer-column ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.footer-column ul a:hover {
    color: var(--brand-gold-light);
}

.footer-bottom {
    max-width: 1100px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
}


/* ============================================================
   10. ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollDot {
    0% {
        opacity: 1;
        top: 6px;
    }
    100% {
        opacity: 0;
        top: 18px;
    }
}

/* Utility animation class */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   11. RESPONSIVE DESIGN
   ============================================================ */

/* Large tablets and small laptops */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablets and mobile devices */
@media (max-width: 768px) {
    /* Navigation */
    .nav-links,
    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Hero */
    .hero-stats {
        gap: 1.5rem;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Sections */
    .section-wrap {
        padding: 3rem 5%;
    }

    .cta-band {
        padding: 2rem 1.5rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero h1 .gold {
        font-size: 0.7em;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .service-card {
        padding: 1.5rem 1.25rem;
    }

    .contact-card {
        padding: 1.25rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Print styles */
@media print {
    .navbar {
        position: static;
        background: #fff !important;
        color: #000 !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 5%;
    }

    body::before,
    body::after {
        display: none;
    }

    .btn-nav,
    .btn-hero {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }
}