/* ==========================================================================
   KINGTON GROUP - Main Stylesheet
   Gold Brand Color: #DDBD6B | Dark Theme
   ========================================================================== */

/* CSS Variables */
:root {
    --gold: #DDBD6B;
    --gold-light: #E8D094;
    --gold-dark: #C4A654;
    --black: #000000;
    --charcoal: #2A1D17;
    --dark-grey: #3A1C16;
    --medium-grey: #3A2D27;
    --light-grey: #4A3D37;
    --white: #FFFFFF;
    --text-grey: #B0B0B0;
    --font-primary: 'Montserrat', 'Inter', 'Poppins', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overscroll-behavior: none;
}

body {
    font-family: var(--font-primary);
    background-color: var(--charcoal);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    overscroll-behavior: none;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: #00E676;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, opacity 0.3s ease;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid #69F0AE;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-width 0.3s ease;
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-width: 2px;
    border-color: #76FF03;
}

/* Hide cursor on touch devices */
@media (hover: none) {
    .cursor, .cursor-follower {
        display: none;
    }
    body {
        cursor: auto;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--gold); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    color: var(--text-grey);
    margin-bottom: 1rem;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold-light);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 2rem 1.25rem 2rem;
    transition: background-color var(--transition-medium), padding var(--transition-medium);
}

header.scrolled {
    background-color: rgba(42, 29, 23, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 2rem 1rem 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

header.scrolled .lego-brick-edge {
    opacity: 1;
}

/* Lego Brick Edge Pattern */
.lego-brick-edge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    opacity: 0;
    transition: opacity var(--transition-medium);
    pointer-events: none;
}

.lego-brick-edge svg {
    width: 100%;
    height: 8px;
    display: block;
    transform: scaleY(-1);
}

@media (min-width: 768px) {
    .lego-brick-edge svg {
        height: 10px;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.logo img {
    height: 50px;
    width: auto;
    transition: transform var(--transition-medium);
}

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

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Brand Text in Header */
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.brand-main {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.brand-sub {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-grey);
    letter-spacing: 0.5px;
}

.brand-slogan {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.5px;
    font-style: italic;
}

@media (max-width: 992px) {
    .brand-text {
        display: flex;
    }

    .brand-main {
        font-size: 0.75rem;
    }

    .brand-sub {
        font-size: 0.55rem;
    }

    .brand-slogan {
        font-size: 0.5rem;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width var(--transition-medium), left var(--transition-medium);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
    left: 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.nav-contact-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: none;
    transition: all var(--transition-medium);
    border-radius: 8px;
}

.nav-contact-btn:hover {
    background-color: var(--gold);
    color: var(--black);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--gold);
    transition: all var(--transition-medium);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay/Backdrop */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -75%;
        width: 75%;
        height: 100vh;
        background-color: var(--charcoal);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right var(--transition-medium);
        z-index: 999;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.25rem;
    }

    .nav-contact-btn {
        display: none;
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-grey) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(221, 189, 107, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(221, 189, 107, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-logo {
    width: 180px;
    height: auto;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero h1 span {
    color: var(--gold);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-grey);
    letter-spacing: 4px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-chinese {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-slogan {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-title-small {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 40px;
    left: 40px;
    z-index: 100;
    transition: opacity 0.3s ease;
}

.scroll-indicator.hidden {
    opacity: 0 !important;
    pointer-events: none;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 13px;
    position: relative;
    background-color: rgba(42, 29, 23, 0.8);
}

.scroll-dot {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 2px;
    animation: scrollDot 1.5s ease-in-out infinite;
}

.scroll-indicator.at-bottom .scroll-dot {
    animation: none;
    top: 22px;
    opacity: 0.3;
}

@keyframes scrollDot {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 22px; opacity: 0.3; }
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 1.5rem auto;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   BRANDS SECTION
   ========================================================================== */
.brands-section {
    background-color: var(--dark-grey);
    padding: 4rem 0;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.brand-item {
    flex: 0 0 calc(33.333% - 2rem);
    display: flex;
    justify-content: center;
    padding: 1.5rem 2rem;
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.6;
    transition: all var(--transition-medium);
}

@media (max-width: 768px) {
    .brands-grid {
        gap: 1rem;
        max-width: 400px;
    }

    .brand-item {
        flex: 0 0 45%;
        padding: 1rem;
    }
}

.brand-item:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.brand-item img {
    height: 40px;
    width: auto;
}

/* ==========================================================================
   PRODUCT GROUPS
   ========================================================================== */
.product-group {
    background-color: var(--dark-grey);
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid var(--medium-grey);
    transition: all var(--transition-medium);
}

.product-group:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(221, 189, 107, 0.15);
    border-color: var(--gold);
}

.product-group h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.product-image-wrapper {
    max-width: 100%;
    margin: 0 auto 2rem;
    text-align: center;
    background-color: var(--white);
    border-radius: 8px;
    padding: 1rem;
    overflow: hidden;
}

.product-image-wrapper img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.product-description {
    color: var(--text-grey);
    text-align: center;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Product Cards Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--dark-grey);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--medium-grey);
    transition: all var(--transition-medium);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(221, 189, 107, 0.15);
    border-color: var(--gold);
}

.product-card-image {
    height: 250px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card-content {
    padding: 1.5rem;
}

.product-card-content h3 {
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.product-card-content p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==========================================================================
   FEATURES / WHY CHOOSE US
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--dark-grey);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--medium-grey);
    transition: all var(--transition-medium);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(221, 189, 107, 0.15);
    border-color: var(--gold);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--black);
}

.feature-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.service-card {
    background-color: var(--dark-grey);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--medium-grey);
    transition: all var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(221, 189, 107, 0.15);
    border-color: var(--gold);
}

.service-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--text-grey);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--black);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--dark-grey);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: none;
    transition: all var(--transition-medium);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(221, 189, 107, 0.4);
    color: var(--black);
}

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

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--black);
}

.btn-dark {
    background-color: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background-color: var(--dark-grey);
    transform: translateY(-2px);
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-grey) 100%);
    padding-top: 100px;
}

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

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

.about-text h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--white);
    padding: 1rem;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--gold);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 12px;
    height: 12px;
    background-color: var(--gold);
    border-radius: 50%;
}

.timeline-item h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info h3 {
    color: var(--gold);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--black);
}

.contact-item-content h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
}

.contact-item-content p {
    margin: 0;
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
    background-color: var(--dark-grey);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--medium-grey);
}

.contact-form h3 {
    color: var(--gold);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--medium-grey);
    border: 1px solid var(--light-grey);
    border-radius: 4px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

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

/* Form Message Styles */
.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background-color: rgba(76, 175, 80, 0.2);
    border: 1px solid #4CAF50;
    color: #4CAF50;
}

.form-message.error {
    background-color: rgba(244, 67, 54, 0.2);
    border: 1px solid #f44336;
    color: #f44336;
}

/* Submit Button Loading State */
#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-loading::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Map */
.map-container {
    margin-top: 4rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--medium-grey);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    display: block;
}

/* ==========================================================================
   DOWNLOADS PAGE
   ========================================================================== */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.download-card {
    background-color: var(--dark-grey);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--medium-grey);
    text-align: center;
    transition: all var(--transition-medium);
}

.download-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(221, 189, 107, 0.15);
    border-color: var(--gold);
}

.download-icon {
    width: 80px;
    height: 80px;
    background-color: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.download-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--black);
}

.download-card h3 {
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.download-card p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background-color: var(--charcoal);
    border-top: 1px solid var(--gold);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 4rem;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

.footer-logo img {
    height: 120px;
    width: auto;
    margin-bottom: 0;
}

.footer-logo h3 {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.footer-subsidiary {
    color: var(--text-grey);
    font-size: 0.85rem;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0.9em;
}

.footer-slogan {
    color: var(--gold);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0;
    padding-left: 0.9em;
}

.footer-contact h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-contact .phone-numbers {
    margin-top: 1rem;
}

.footer-contact .phone-numbers p {
    margin-bottom: 0.5rem;
}

.footer-links h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-grey);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--gold);
    padding: 1.5rem 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-grey);
    margin: 0;
}

/* ==========================================================================
   PAGE HERO (Inner Pages)
   ========================================================================== */
.page-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-grey) 100%);
    padding-top: 100px;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(221, 189, 107, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    position: relative;
    z-index: 1;
}

.page-hero p {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 1rem auto 0;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-grey { color: var(--text-grey); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.bg-dark { background-color: var(--dark-grey); }
.bg-charcoal { background-color: var(--charcoal); }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    .hero-logo {
        width: 120px;
    }

    .container {
        padding: 0 1rem;
    }

    .product-group {
        padding: 2rem 1.5rem;
    }

    .footer-main {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.8rem;
    }
}
