
/* Reset and Base Styles */
:root {
    --gold: #D4AF37;
    --gold-light: rgba(212, 175, 55, 0.1);
    --gold-hover: #B8960A;
    --black: #1A1A1A;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --red: #B91C1C;
    --red-light: rgba(185, 28, 28, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

input, textarea, button {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utility Classes */
.text-black {
    color: var(--black);
}

.text-white {
    color: var(--white);
}

.text-gold {
    color: var(--gold);
}

.gold-text {
    color: var(--gold);
    font-weight: 700;
}

.full-width {
    width: 100%;
}

.divider {
    height: 0.25rem;
    width: 5rem;
    background: var(--gold);
    margin: 1rem auto 1.5rem;
}

.badge {
    display: inline-block;
    background-color: var(--gold-light);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}

.delay-500 {
    animation-delay: 500ms;
}

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

@keyframes numberChange {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    25% {
        transform: translateY(-20px);
        opacity: 0;
    }
    50% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animation for number changing */
.animating {
    animation: numberChange 0.5s ease-in-out;
}

/* Buttons */
.premium-button {
    display: inline-block;
    background: linear-gradient(to right, var(--gold), var(--gold-hover));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.premium-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.outline-button {
    display: inline-block;
    background: transparent;
    color: var(--gray-800);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid var(--gold);
    cursor: pointer;
    text-align: center;
}

.outline-button:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
}

.outline-button-light {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid var(--gold);
    cursor: pointer;
    text-align: center;
}

.outline-button-light:hover {
    background-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

/* Cards */
.premium-card {
    background-color: var(--white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    height: 100%;
    max-width: calc(100vw - 2em);
}

/* Header / Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    transition: all 0.3s;
    padding: 1.25rem 0;
    max-width: 100vw;
}

header.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.desktop-nav {
    display: none;
}

.nav-link {
    margin-left: 2rem;
    color: var(--gray-800);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--gold);
}

.mobile-menu-button {
    display: block;
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--gray-800);
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    z-index: 100;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav-link {
    margin: 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
}

.mobile-nav-link:hover {
    color: var(--gold);
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    
    .mobile-menu-button {
        display: none;
    }
}

/* Section Common Styles */
.section-header {
    max-width: 48rem;
    margin: 0 auto 3rem;
    text-align: center;
}

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

.section-header p {
    color: var(--gray-600);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 5rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.05), transparent);
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    order: 2;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-title span {
    display: block;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 32rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.hero-card {
    order: 1;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    position: relative;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    opacity: 0.2;
    border-radius: 50%;
    filter: blur(40px);
    transform: scale(0.75);
    z-index: -1;
}

.focus-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transform: rotate(3deg);
    transition: transform 0.5s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.focus-card:hover {
    transform: rotate(0);
}

.focus-card-header {
    text-align: center;
    margin-bottom: 1rem;
}

.focus-card-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.focus-card-header p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.focus-data {
    background-color: var(--black);
    color: var(--white);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

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

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

.focus-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.25rem;
}

.focus-number {
    font-size: 1.25rem;
    font-weight: 700;
}

.separator {
    margin: 0 0.25rem;
}

.focus-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        flex-direction: row;
        align-items: center;
    }
    
    .hero-text {
        order: 1;
        flex: 1;
    }
    
    .hero-card {
        order: 2;
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

/* Results Section */
.results-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--white), var(--gray-50));
}

.results-container {
    max-width: 32rem;
    margin: 0 auto;
}

.results-card {
    background-color: var(--white);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    text-align: center;
    border: 1px solid var(--gray-200);
}

.results-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.result-date {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.result-numbers {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 1rem 0;
}

.result-number-container {
    text-align: center;
}

.result-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.result-display {
    background-color: var(--gold-light);
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    min-width: 4rem;
}

.result-number {
    font-size: 1.875rem;
    font-weight: 700;
}

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

.results-info p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.loading-shimmer {
    height: 2.25rem;
    width: 3rem;
    margin: 0 auto;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.06) 0%,
        rgba(0, 0, 0, 0.12) 50%,
        rgba(0, 0, 0, 0.06) 100%
    );
    background-size: 400% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 0.25rem;
}

@keyframes shimmer {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

/* Previous Results Section */
.previous-results-section {
    padding: 5rem 0;
    background-color: var(--black);
    color: var(--white);
}

.previous-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.previous-result-card {
    background-color: var(--gray-900);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid var(--gray-800);
    height: 100%;
}

.view-more-container {
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--gray-50), var(--white));
}

.testimonials-slider-container {
    position: relative;
    max-width: 72rem;
    margin: 0 auto;
    padding: 1rem;
}

.testimonials-slider {
    overflow: hidden;
    padding: 1rem 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 0 0.75rem;
}

.testimonial-content {
    background-color: var(--white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-author h4 {
    font-weight: 600;
    font-size: 1.125rem;
}

.testimonial-author p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.testimonial-stars {
    display: flex;
}

.star {
    color: var(--gold);
    width: 1.25rem;
    height: 1.25rem;
}

.star-empty {
    color: var(--gray-300);
}

.testimonial-text {
    flex-grow: 1;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.testimonial-footer {
    text-align: right;
}

.testimonial-divider {
    height: 1px;
    width: 33%;
    margin-left: auto;
    background-color: rgba(212, 175, 55, 0.3);
    margin-bottom: 0.5rem;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.1);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    color: var(--gold);
    z-index: 10;
    transition: all 0.3s;
}

.slider-control:hover {
    background-color: var(--gold);
    color: var(--white);
}

.slider-control svg {
    width: 1.25rem;
    height: 1.25rem;
}

.slider-control.prev {
    left: -1rem;
}

.slider-control.next {
    right: -1rem;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.indicator {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: var(--gray-300);
    transition: all 0.3s;
    cursor: pointer;
}

.indicator.active {
    background-color: var(--gold);
    width: 1.5rem;
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 33.333%;
    }
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.contact-info-list {
    margin-bottom: 2rem;
}

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

.contact-icon {
    background-color: var(--gold-light);
    border-radius: 9999px;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--gold);
}

.contact-details h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--gray-600);
}

.operating-hours h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.hours-container {
    background-color: var(--gold-light);
    padding: 1rem;
    border-radius: 0.5rem;
}

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

.hours-day {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.hours-time {
    font-weight: 500;
}

.full-width {
    grid-column: span 2;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--gray-400);
    margin-top: 0.5rem;
}

.footer-heading {
    font-size: 0.875rem;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: var(--gray-400);
    transition: color 0.3s;
}

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

.footer-contact-info li {
    display: flex;
    align-items: start;
    margin-bottom: 0.5rem;
    color: var(--gray-400);
}

.footer-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold);
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.contact-form-container { max-width: calc(100vw - 2em); }

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
