/* Base Styles */
@import url('./spacing-system.css');

:root {
    --navy: #141a26;       /* Headers, footers, navigation, primary accents */
    --white: #ffffff;      /* Main backgrounds, body text (inverse) */
    --gold-dark: #90691a;  /* Headings, primary buttons, key highlights */
    --gold-light: #d8ba60; /* Borders, hover states, dividers, subtle accents */
    --text-dark: #141a26;  /* Body text - using Navy for consistency and readability */
    --text-light: #5a6270; /* Lighter text for contrast */
    --light-bg: #f9f9f9;
    --transition: var(--transition-normal);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--white);
    scroll-behavior: smooth;
}

p {
    margin-bottom: var(--paragraph-margin);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    color: var(--gold-dark);
    margin-bottom: var(--heading-margin);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-gap);
}

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

ul {
    list-style: none;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Enhanced Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.5px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-normal);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
    color: var(--white);
    border-color: var(--gold-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(144, 105, 26, 0.3);
}

.btn-white {
    background-color: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: var(--gold-light);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background-color: var(--gold-dark);
    color: var(--white);
}

/* Enhanced Header */
header {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2436 100%);
    box-shadow: var(--shadow-md);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(216, 186, 96, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-gap);
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hamburger menu - hidden on desktop */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-light);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-logo-image {
    height: min(90px, var(--header-height));
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.1) contrast(1.05);
    position: relative;
}

.nav-logo-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.nav-logo-image:hover {
    transform: scale(1.08) translateY(-2px);
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 4px 12px rgba(144, 105, 26, 0.3));
}

.nav-logo-image:hover::before {
    opacity: 0.6;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--grid-gap-md);
}

.nav-links ul {
    display: flex;
    gap: var(--element-gap);
}

.nav-links a {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold-light);
    background-color: rgba(216, 186, 96, 0.1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transition: var(--transition-normal);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 80%;
}

/* Enhanced Hero Section */
.hero {
    min-height: 85vh;
    padding-top: calc(var(--header-height) + 40px + env(safe-area-inset-top));
    padding-bottom: var(--space-2xl);
    padding-left: var(--container-gap);
    padding-right: var(--container-gap);
    background: linear-gradient(135deg, rgba(20, 26, 38, 0.8) 0%, rgba(20, 26, 38, 0.6) 100%), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-color: var(--navy);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(216, 186, 96, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    padding: 40px 20px 0;
    margin-top: auto;
    margin-bottom: auto;
    width: 100%;
}

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

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

.hero p {
    font-size: 1.3rem;
    margin-bottom: var(--space-xl);
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: var(--element-gap);
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Enhanced Features Section */
.features {
    padding: var(--section-padding-large) 0;
    background-color: var(--white);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    opacity: 0.3;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--grid-gap-lg);
    margin-top: var(--space-2xl);
}

.feature {
    text-align: center;
    padding: var(--card-padding);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-normal);
    background: var(--white);
    border: 1px solid rgba(216, 186, 96, 0.1);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
    transition: var(--transition-normal);
}

.feature:hover i {
    transform: scale(1.1);
}

.feature h3 {
    margin-bottom: var(--space-sm);
    color: var(--navy);
    font-weight: 600;
    transition: var(--transition-normal);
}

.feature:hover h3 {
    color: var(--gold-dark);
}

/* Vision & Mission Section */
.vision-mission {
    padding: var(--section-padding-large) 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    opacity: 0.5;
}

.vision-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.vision-header h2 {
    font-size: 2.8rem;
    color: var(--navy);
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
}

.vision-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    border-radius: 2px;
}

.vision-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--grid-gap-lg);
    margin-bottom: var(--section-padding);
}

.vision-card {
    background: var(--white);
    padding: var(--card-padding);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid rgba(216, 186, 96, 0.1);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.vision-card:hover::before {
    transform: scaleX(1);
}

.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    transition: var(--transition-normal);
}

.vision-icon i {
    font-size: 2rem;
    color: var(--white);
}

.vision-card:hover .vision-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(144, 105, 26, 0.3);
}

.vision-card h3 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    font-weight: 600;
    transition: var(--transition-normal);
}

.vision-card:hover h3 {
    color: var(--gold-dark);
}

.vision-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Care Philosophy Section */
.care-philosophy {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2436 100%);
    border-radius: var(--border-radius-lg);
    padding: var(--section-padding);
    margin-top: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.care-philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.philosophy-content {
    text-align: center;
    color: var(--white);
}

.philosophy-content h3 {
    color: var(--gold-light);
    font-size: 2.2rem;
    margin-bottom: var(--space-lg);
}

.philosophy-content > p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--grid-gap-lg);
    margin-top: var(--space-xl);
}

.philosophy-item {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--card-padding);
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid rgba(216, 186, 96, 0.2);
}

.philosophy-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--gold-light);
}

.philosophy-item i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
    transition: var(--transition-normal);
}

.philosophy-item:hover i {
    transform: scale(1.1);
}

.philosophy-item h4 {
    color: var(--gold-light);
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.philosophy-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Choose Golden Point Section */
.why-choose {
    padding: var(--section-padding-large) 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.why-choose-header {
    text-align: center;
    margin-bottom: var(--section-padding);
}

.why-choose-header h2 {
    font-size: 2.8rem;
    color: var(--navy);
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
}

.why-choose-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    border-radius: 2px;
}

.why-choose-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--grid-gap-xl);
    margin-bottom: var(--section-padding);
}

.why-choose-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    border: 1px solid rgba(216, 186, 96, 0.1);
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition-normal);
    transform-origin: left;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--gold-light);
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card.featured {
    background: linear-gradient(135deg, var(--white) 0%, rgba(216, 186, 96, 0.05) 100%);
    border: 2px solid var(--gold-light);
}

.why-choose-card.featured::before {
    height: 6px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: scaleX(0); }
    50% { transform: scaleX(1); }
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    position: relative;
    box-shadow: 0 8px 20px rgba(216, 186, 96, 0.3);
    transition: var(--transition-normal);
}

.why-choose-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(216, 186, 96, 0.4);
}

.why-icon i {
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition-normal);
}

.why-choose-card:hover .why-icon i {
    transform: scale(1.1);
}

.why-choose-card h3 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.why-choose-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.why-features {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
}

.feature-tag {
    background: rgba(216, 186, 96, 0.1);
    color: var(--gold-dark);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--border-radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(216, 186, 96, 0.2);
    transition: var(--transition-normal);
}

.feature-tag:hover {
    background: rgba(216, 186, 96, 0.2);
    transform: translateY(-2px);
}

.featured-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--border-radius-lg);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    box-shadow: 0 4px 12px rgba(216, 186, 96, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.featured-badge i {
    font-size: 0.9rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.why-choose-cta {
    text-align: center;
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--navy) 0%, #1a2436 100%);
    border-radius: var(--border-radius-lg);
    margin-top: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.why-choose-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(216, 186, 96, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose-cta p {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: var(--space-lg);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--element-gap);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-buttons .btn {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(216, 186, 96, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(216, 186, 96, 0.4);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold-light);
}

.cta-buttons .btn-outline:hover {
    background: var(--gold-light);
    color: var(--navy);
    transform: translateY(-3px);
}

.cta-buttons .btn i {
    transition: var(--transition-normal);
}

.cta-buttons .btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .vision-header h2 {
        font-size: 2.2rem;
    }
    
    .vision-header p {
        font-size: 1.1rem;
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
        gap: var(--grid-gap-md);
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: var(--grid-gap-md);
    }
    
    .philosophy-content h3 {
        font-size: 1.8rem;
    }
    
    .philosophy-content > p {
        font-size: 1.1rem;
    }
}

/* About Preview */
.about-preview {
    padding: var(--section-padding) 0;
    background-color: var(--light-bg);
}

.about-content {
    padding-right: 0;
}

.about-image {
    width: 100%;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-preview .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap-lg);
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
    color: var(--navy);
}

.about-content p {
    margin-bottom: var(--space-lg);
    color: var(--text-light);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2436 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.1);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(216, 186, 96, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-normal);
}

.image-placeholder:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.image-placeholder:hover::before {
    opacity: 1;
}

/* Enhanced Services Preview */
.services-preview {
    padding: var(--section-padding) 0;
    background-color: var(--white);
    position: relative;
}

.services-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    opacity: 0.3;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--space-2xl);
    color: var(--navy);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--grid-gap-lg);
    margin-top: var(--space-2xl);
}

.service-card {
    background: var(--white);
    padding: var(--card-padding);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid rgba(216, 186, 96, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
    transition: var(--transition-normal);
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--navy);
    font-weight: 600;
    transition: var(--transition-normal);
}

.service-card:hover h3 {
    color: var(--gold-dark);
}

/* Enhanced Testimonials Preview */
.testimonials-preview {
    padding: var(--section-padding) 0;
    background-color: var(--light-bg);
    text-align: center;
    position: relative;
}

.testimonials-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    opacity: 0.3;
}

.testimonials-preview h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-2xl);
    color: var(--navy);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    padding: 0 var(--space-lg);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 4rem;
    color: var(--gold-light);
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
}

.testimonial::after {
    content: '"';
    position: absolute;
    bottom: -40px;
    right: 0;
    font-size: 4rem;
    color: var(--gold-light);
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
}

.testimonial-author {
    margin-top: var(--space-xl);
    font-weight: 700;
    color: var(--navy);
    font-style: normal;
    position: relative;
    z-index: 1;
}

/* Enhanced CTA Section */
.cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2436 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(216, 186, 96, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta p {
    margin-bottom: var(--space-xl);
    color: rgba(255,255,255,0.9);
}

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

/* Enhanced Footer */
footer {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2436 100%);
    color: var(--white);
    padding: var(--section-padding) 0 var(--space-xl);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--grid-gap-lg);
    margin-bottom: var(--space-2xl);
}

.footer h3, .footer h4 {
    color: var(--gold-light);
    margin-bottom: var(--heading-margin);
    position: relative;
}

.footer h3::after, .footer h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    border-radius: 1px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

.footer-links ul li {
    margin-bottom: var(--space-sm);
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(216, 186, 96, 0.3);
    border-radius: 50%;
    transition: var(--transition-normal);
    background: rgba(255,255,255,0.05);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    border-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.footer-bottom {
    text-align: center;
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}


/* Print Styles for Brochures */
@media print {
    /* Global print styles */
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color: #000;
        background: #fff !important;
        line-height: 1.4;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff !important;
    }

    /* Hide non-printable elements */
    .nav-links,
    .back-to-top,
    .btn,
    .social-links,
    .google-map,
    .contact-form,
    .form-container,
    .map-section,
    footer,
    header {
        display: none !important;
    }

    /* Page layout */
    .container {
        max-width: 100%;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Typography */
    h1, h2, h3, h4, h5, h6 {
        color: #000 !important;
        page-break-after: avoid;
        page-break-inside: avoid;
    }

    h1 {
        font-size: 24pt;
        text-align: center;
        margin-bottom: 20pt;
    }

    h2 {
        font-size: 18pt;
        margin-top: 24pt;
        margin-bottom: 12pt;
        border-bottom: 2pt solid #90691a;
        padding-bottom: 6pt;
    }

    h3 {
        font-size: 16pt;
        margin-top: 20pt;
        margin-bottom: 10pt;
    }

    p {
        margin-bottom: 10pt;
        orphans: 3;
        widows: 3;
    }

    /* Hero section */
    .hero {
        background: none !important;
        padding: 20pt 0 !important;
        text-align: center;
    }

    .hero h1 {
        margin-bottom: 10pt;
    }

    .hero p {
        font-size: 14pt;
        margin-bottom: 15pt;
    }

    /* Sections */
    section {
        page-break-inside: avoid;
        margin-bottom: 30pt;
    }

    .section-header {
        text-align: center;
        margin-bottom: 20pt;
    }

    /* Cards and grids */
    .values-grid,
    .choose-grid {
        display: block !important;
        gap: 0 !important;
    }

    .value-card,
    .choose-item {
        border: 1pt solid #ddd;
        padding: 10pt;
        margin-bottom: 10pt;
        page-break-inside: avoid;
        background: #fff !important;
        box-shadow: none !important;
    }

    /* Images */
    img {
        max-width: 50% !important;
        height: auto !important;
        display: block;
        margin: 10pt auto;
        page-break-inside: avoid;
    }

    .about-img,
    .who-img,
    .accreditation-img,
    .quality-img,
    .contact-img {
        max-width: 40% !important;
    }

    /* About page specific */
    .who-content,
    .accreditation-content,
    .quality-content {
        display: block !important;
        gap: 0 !important;
    }

    .who-left,
    .who-right,
    .accreditation-text,
    .accreditation-image,
    .quality-text,
    .quality-image {
        width: 100% !important;
        padding: 0 !important;
    }

    /* Testimonials */
    .testimonial-card {
        border: 1pt solid #ddd;
        padding: 10pt;
        margin-bottom: 15pt;
        page-break-inside: avoid;
        background: #fff !important;
    }

    .testimonial-text {
        font-style: italic;
        border-left: 3pt solid #90691a;
        padding-left: 10pt;
        margin-bottom: 10pt;
    }

    /* Contact information */
    .contact-info {
        border: 1pt solid #ddd;
        padding: 10pt;
        margin: 20pt 0;
    }

    .info-item {
        margin-bottom: 8pt;
    }

    /* Badges and highlights */
    .badge,
    .accreditation-badges {
        border: 1pt solid #90691a;
        background: #f9f9f9 !important;
        color: #000 !important;
        padding: 5pt;
        margin: 5pt 0;
    }

    /* Print-specific utility classes */
    .print-break-before {
        page-break-before: always;
    }

    .print-break-after {
        page-break-after: always;
    }

    .print-break-inside-avoid {
        page-break-inside: avoid;
    }

    /* Watermark */
    body::after {
        content: "Golden Point Aged Care - Confidential";
        position: fixed;
        bottom: 10pt;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 8pt;
        color: #ccc;
        transform: rotate(-90deg);
        transform-origin: center;
    }

    /* Links */
    a {
        color: #000 !important;
        text-decoration: none !important;
    }

    a::after {
        content: " (" attr(href) ")";
        font-size: 9pt;
        color: #666;
    }

    a[href^="#"]::after {
        content: "";
    }
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .nav-links ul {
        gap: var(--space-md);
    }
    
    .nav-links a {
        font-size: 0.95rem;
    }
    
    .btn-book {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--navy) 0%, #1a2436 100%);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        display: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        z-index: 1000;
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 0;
    }

    .nav-links li {
        margin: 0;
        padding: 0;
    }

    .nav-links a {
        display: block;
        padding: 18px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        border-radius: 0;
        transition: all 0.3s ease;
    }

    .nav-links a:hover, .nav-links a.active {
        background-color: rgba(216, 186, 96, 0.15);
        border-bottom-color: var(--gold-light);
    }

    .nav-links a::after {
        display: none;
    }

    .btn-book {
        margin-top: 20px;
        width: 100%;
        padding: 16px;
        font-size: 1rem;
        text-align: center;
    }
}

/* Small Mobile Responsiveness */
@media (max-width: 480px) {
    .nav-links {
        padding: 30px 15px;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 15px 0;
    }

    .btn-book {
        margin-top: 15px;
        padding: 14px;
        font-size: 0.95rem;
    }

    .hero {
        min-height: calc(100vh - var(--header-height));
        padding-top: calc(var(--header-height) + 30px + env(safe-area-inset-top));
        padding-bottom: var(--space-xl);
        padding-left: var(--container-gap);
        padding-right: var(--container-gap);
    }
    
    .hero-content {
        padding-top: 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--space-md);
    }
}

/* Image Responsiveness */
img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
}

/* Enhanced Image Classes */
.about-img,
.who-img,
.accreditation-img,
.quality-img,
.contact-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-img:hover,
.who-img:hover,
.accreditation-img:hover,
.quality-img:hover,
.contact-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .about-img,
    .who-img,
    .accreditation-img,
    .quality-img,
    .contact-img {
        height: 350px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-img,
    .who-img,
    .accreditation-img,
    .quality-img,
    .contact-img {
        height: 300px;
        border-radius: var(--border-radius-md);
    }
}

/* Typography Responsiveness */
@media (max-width: 1024px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.8rem; }
    h4 { font-size: 1.5rem; }
    h5 { font-size: 1.3rem; }
    h6 { font-size: 1.1rem; }
    
    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.4rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.6rem; }
    h4 { font-size: 1.4rem; }
    h5 { font-size: 1.2rem; }
    h6 { font-size: 1rem; }
    
    body { font-size: 16px; }
    p { font-size: 1rem; }
    
    .hero {
        min-height: calc(100vh - var(--header-height));
        padding-top: calc(var(--header-height) + 30px + env(safe-area-inset-top));
        padding-bottom: var(--space-xl);
    }
    
    .hero-content {
        padding-top: 20px;
    }
    
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1rem; }
    
    .section-header h2 { font-size: 2rem; }
    .section-header p { font-size: 1rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.3rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }
    
    body { font-size: 15px; }
    p { font-size: 0.95rem; }
    
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 0.95rem; }
    
    .section-header h2 { font-size: 1.8rem; }
    .section-header p { font-size: 0.95rem; }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 16px 28px;
        font-size: 1rem;
    }
}

/* Grid and Card Responsiveness */
@media (max-width: 1024px) {
    .about-preview .container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }
    
    .about-content {
        padding-right: 0;
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--grid-gap-md);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--grid-gap-sm);
    }
    
    .container {
        padding: 0 var(--container-gap);
    }
}

@media (max-width: 480px) {
    .features-grid {
        gap: var(--space-md);
    }
}

/* Tablet-Specific Improvements */
@media (min-width: 769px) and (max-width: 1024px) {
    .header-container {
        padding: 0 var(--container-gap);
    }
    
    .hero {
        min-height: 80vh;
        padding-top: calc(var(--header-height) + 40px + env(safe-area-inset-top));
    }
    
    .hero-content {
        padding-top: 20px;
    }
    
    .section-padding {
        padding: var(--space-2xl) 0;
    }
    
    .btn {
        min-height: 44px; /* Touch-friendly size */
    }
    
}

/* Touch Interactions for Mobile */
@media (max-width: 768px) {
    /* Larger touch targets */
    .btn {
        min-height: 48px;
        padding: 14px 24px;
        font-size: 1rem;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }
    
    /* Enhanced touch-friendly navigation */
    .nav-links {
        padding: 20px;
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-links a {
        padding: 20px 16px;
        font-size: 1.1rem;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        min-height: 44px;
        display: flex;
        align-items: center;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    
    .nav-links a:active {
        background-color: rgba(216, 186, 96, 0.2);
        transform: scale(0.98);
    }
    
    /* Touch-friendly spacing */
    .service-card,
    .testimonial-card {
        margin-bottom: var(--space-lg);
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Enhanced smooth scrolling */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-padding-top: var(--header-height);
    }
    
    body {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        overscroll-behavior: none;
        -webkit-overscroll-behavior: none;
    }
    
    /* Remove hover effects on touch devices */
    @media (hover: none) and (pointer: coarse) {
        .service-card:hover,
        .testimonial-card:hover,
        .about-img:hover,
        .who-img:hover,
        .accreditation-img:hover,
        .quality-img:hover,
        .contact-img:hover {
            transform: none;
        }
        
        .btn:hover {
            transform: none;
            box-shadow: var(--shadow-md);
        }
        
        .nav-links a:hover {
            background-color: transparent;
        }
    
    /* Ensure no horizontal scrolling */
    body {
        overflow-x: hidden;
    }
    
    /* Better touch feedback */
    .btn:active {
        transform: scale(0.96);
        transition: transform 0.1s ease;
    }
    
    .nav-links a:active {
        transform: scale(0.96);
        transition: transform 0.1s ease;
    }
}

/* Small Mobile Touch Optimizations */
@media (max-width: 480px) {
    .btn {
        min-height: 44px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Ensure no horizontal scrolling */
    body {
        overflow-x: hidden;
    }
    
    /* Better touch feedback */
    .btn:active {
        transform: scale(0.98);
    }
}

/* Small Mobile Responsiveness */
@media (max-width: 480px) {
    .about-img,
    .who-img,
    .accreditation-img,
    .quality-img,
    .contact-img {
        height: 250px;
        border-radius: var(--border-radius-sm);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(216, 186, 96, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(216, 186, 96, 0.4);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
}

.back-to-top i {
    transition: transform 0.3s ease;
}

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

/* Enhanced Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2436 50%, var(--navy) 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-loader::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(216, 186, 96, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.loader-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(216, 186, 96, 0.3);
}

.loader-logo::before {
    content: 'GP';
    font-family: 'Lora', serif;
    font-weight: 700;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.loader-text {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: shimmer 3s ease-in-out infinite;
}

.loader-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.loader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.loader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(216, 186, 96, 0.5);
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden .loader-progress-bar {
    width: 100%;
}
