/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #f59e0b;
    --secondary-dark: #d97706;
    --accent-color: #10b981;
    --dark-bg: #1f2937;
    --darker-bg: #111827;
    --light-bg: #f9fafb;
    --text-dark: #111827;
    --text-light: #6b7280;
    --text-white: #ffffff;
    --border-color: #e5e7eb;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Responsive Images & Embeds */
img,
video,
iframe,
embed,
object {
    max-width: 100%;
    height: auto;
}

/* Page Load Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: none;
}

.animate-on-scroll.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in {
    animation-name: fadeIn;
}

.fade-in-up {
    animation-name: fadeInUp;
}

.fade-in-down {
    animation-name: fadeInDown;
}

.fade-in-left {
    animation-name: fadeInLeft;
}

.fade-in-right {
    animation-name: fadeInRight;
}

.scale-in {
    animation-name: scaleIn;
}

.slide-in-up {
    animation-name: slideInUp;
}

/* Stagger delays for multiple elements */
.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; }
.stagger-6 { animation-delay: 0.6s; }
.stagger-7 { animation-delay: 0.7s; }
.stagger-8 { animation-delay: 0.8s; }

/* Fast animations for smaller elements */
.animate-fast {
    animation-duration: 0.5s !important;
}

/* Slow animations for hero elements */
.animate-slow {
    animation-duration: 1.2s !important;
}

iframe {
    border: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Prevent horizontal scroll on small screens */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Announcement Banner */
.announcement-banner-link {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    text-decoration: none;
    color: white;
    display: block;
    cursor: pointer;
    animation: slideDown 0.4s ease-out;
    overflow: hidden;
}

.announcement-banner {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 0.75rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.announcement-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.15), 
        transparent
    );
    transition: left 0.6s ease;
}

.announcement-banner-link:hover .announcement-banner {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(2px);
}

.announcement-banner-link:hover .announcement-banner::before {
    left: 100%;
}

.announcement-banner-link:active .announcement-banner {
    transform: translateY(1px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.announcement-banner-link.hidden {
    animation: slideUp 0.3s ease-out forwards;
    pointer-events: none;
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.announcement-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-banner-link:hover .live-indicator {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-banner-link:hover .live-dot {
    animation: pulseFast 1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    background: #dc2626;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
        box-shadow: 0 0 0 4px rgba(239, 68, 68, 0);
    }
}

@keyframes pulseFast {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }
}

.live-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-banner-link:hover .live-text {
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.announcement-message {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-banner-link:hover .announcement-message {
    transform: scale(1.02);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.announcement-message strong {
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-banner-link:hover .announcement-message strong {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.banner-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: absolute;
    right: 1rem;
    backdrop-filter: blur(10px);
}

.banner-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.banner-close:active {
    transform: scale(0.95);
}

/* Adjust header position when banner is visible */
.header {
    background-color: var(--darker-bg);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease;
}

body:has(.announcement-banner-link:not(.hidden)) .header {
    top: 50px;
}

body:has(.announcement-banner-link:not(.hidden)) .hero {
    margin-top: 50px;
}

/* Header & Navigation */

.navbar {
    padding: 1rem 0;
}

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

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

.logo a {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo a:hover {
    transform: translateY(-2px);
}

.logo a:hover .logo-image {
    transform: rotate(-5deg) scale(1.05);
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.logo a:hover h1 {
    color: #fbbf24;
    text-shadow: 2px 2px 8px rgba(251, 191, 36, 0.4);
}

.logo .tagline {
    color: var(--text-white);
    font-size: 0.75rem;
    margin: 0;
    opacity: 0.9;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.logo a:hover .tagline {
    opacity: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), #fbbf24);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: url('images/main_page_background.jpg') center center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 70px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 50 L50 0 L100 50 L50 100 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(37, 99, 235, 0.3) 50%,
        rgba(0, 0, 0, 0.65) 100%
    );
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--text-white);
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(37, 99, 235, 0.4);
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.98;
    text-shadow: 
        1px 1px 3px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(0, 0, 0, 0.5);
    color: #f0f0f0;
}

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

/* Buttons */
.btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f97316, var(--secondary-dark));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

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

.btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-light);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover {
    transform: translateY(-8px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover .step-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step p {
    color: var(--text-light);
}

/* Auctions Section */
.auctions {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
}

.auctions .section-title,
.auctions .section-subtitle {
    color: white;
}

.auction-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Important Info Section */
.important-info {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left 0.6s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.2);
    border-left-width: 6px;
}

.info-card:hover::before {
    left: 100%;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.info-card:hover h3 {
    color: var(--secondary-color);
}

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

.info-card li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-card li:hover {
    padding-left: 0.5rem;
    color: var(--primary-color);
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.info-card a:hover {
    color: var(--secondary-color);
}

/* Policies Section */
.policies {
    padding: 5rem 0;
    background: white;
}

.policy-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: var(--light-bg);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #e5e7eb;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    padding: 1.5rem;
}

.accordion-content p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.accordion-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.accordion-content li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.recaptcha-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

.recaptcha-notice a {
    color: var(--primary-color);
    text-decoration: none;
}

.recaptcha-notice a:hover {
    text-decoration: underline;
}

/* Visit Us Section */
.visit-us-section {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.visit-us-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.visit-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.location-info {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.location-info h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.location-info .address,
.location-info .email-contact,
.location-info .phone-contact {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.location-info .icon {
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.location-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.location-info a:hover {
    color: var(--secondary-color);
}

/* Business Hours */
.business-hours {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
}

.business-hours h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hour-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.hour-item.closed {
    opacity: 0.6;
}

.hour-item .day {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 50px;
}

.hour-item .time {
    color: var(--text-light);
    font-weight: 500;
}

.hour-item.closed .time {
    color: var(--danger);
    font-weight: 600;
}

/* Google Maps */
.contact-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
    align-items: start;
}

.map-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-info-card h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.map-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.quick-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    padding: 1.25rem;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.info-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.info-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.info-item a:hover {
    text-decoration: underline;
}

.map-container-inline {
    background: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 550px;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 550px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--darker-bg);
    color: var(--text-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section a:hover {
    color: var(--secondary-color);
    transform: translateX(4px);
}

.footer-section a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icon {
    color: var(--text-white);
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.social-icon svg {
    width: 28px;
    height: 28px;
}

.social-icon:hover {
    opacity: 0.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.consent-notice {
    font-size: 0.8rem;
    opacity: 0.7;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    /* Announcement Banner Mobile */
    .announcement-banner {
        padding: 0.6rem 0.75rem;
    }

    .announcement-content {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding-right: 2.5rem;
    }

    .live-indicator {
        padding: 0.25rem 0.6rem;
    }

    .live-text {
        font-size: 0.7rem;
    }

    .announcement-message {
        font-size: 0.85rem;
        flex: 1;
        min-width: 100%;
        text-align: center;
    }

    .banner-close {
        width: 26px;
        height: 26px;
        right: 0.5rem;
    }

    body:has(.announcement-banner-link:not(.hidden)) .header {
        top: 65px;
    }

    body:has(.announcement-banner-link:not(.hidden)) .hero {
        margin-top: 65px;
    }

    .nav-menu {
        top: 65px;
    }

    body:has(.announcement-banner-link:not(.hidden)) .nav-menu {
        top: 135px;
    }

    .logo-image {
        height: 40px;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .logo .tagline {
        font-size: 0.65rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--darker-bg);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 1rem;
    }

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

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .steps-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-map-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .map-info-card {
        padding: 1.5rem;
    }

    .map-info-card h3 {
        font-size: 1.5rem;
    }

    .map-container-inline {
        padding: 0;
        min-height: 400px;
    }

    .map-wrapper {
        min-height: 400px;
    }

    .map-wrapper iframe {
        min-height: 400px;
    }

    .countdown-text h2 {
        font-size: 1.75rem;
    }

    .countdown-text p {
        font-size: 1rem;
    }

    .timer-label {
        font-size: 1.125rem;
    }

    .timer-unit {
        min-width: 80px;
        padding: 1rem 1.25rem;
    }

    .timer-value {
        font-size: 2rem;
    }

    .timer-text {
        font-size: 0.75rem;
    }

    .timer-separator {
        font-size: 1.5rem;
        display: none;
    }

    .timer-display {
        gap: 0.5rem;
    }

    .map-wrapper iframe {
        min-height: 350px;
    }

    .map-container-inline {
        min-height: 350px;
    }

    .map-wrapper {
        min-height: 350px;
    }

    .auction-cta {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Countdown Section */
.countdown-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="30" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
}

.countdown-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
}

.countdown-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.countdown-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-timer {
    margin: 2rem 0;
}

.timer-label {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.timer-unit {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    min-width: 120px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.timer-unit:hover {
    transform: translateY(-5px);
}

.timer-value {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.timer-text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.timer-separator {
    font-size: 2.5rem;
    font-weight: 300;
    opacity: 0.7;
}

.countdown-cta {
    margin-top: 2rem;
}

.pulse-btn {
    animation: pulse-shadow 2s ease-in-out infinite;
}

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

@keyframes pulse-shadow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ============================================
   RESPONSIVE DESIGN - TABLET & LARGER PHONES
   ============================================ */

/* Large Tablets (iPad Pro) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

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

    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

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

    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .timer-unit {
        min-width: 100px;
        padding: 1.25rem 1.5rem;
    }

    .timer-value {
        font-size: 2.5rem;
    }
}

/* Standard Tablets (iPad) */
@media (min-width: 769px) and (max-width: 900px) {
    .nav-menu {
        gap: 1.5rem;
        font-size: 0.95rem;
    }

    .logo h1 {
        font-size: 1.6rem;
    }

    .logo .tagline {
        font-size: 0.75rem;
    }

    .btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }
}

/* Small Tablets & Large Phones (Portrait) */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

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

    .steps-grid {
        grid-template-columns: 1fr;
    }

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

    .announcement-message {
        font-size: 0.9rem;
        min-width: auto;
    }

    .timer-display {
        justify-content: space-around;
    }

    .timer-unit {
        min-width: 90px;
        padding: 1rem 1.25rem;
    }

    .timer-value {
        font-size: 2.25rem;
    }

    .btn {
        padding: 0.8rem 1.75rem;
    }

    .feature-card,
    .step-card,
    .info-card {
        padding: 1.75rem;
    }
}

/* Extra Responsive Enhancements for Small Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

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

    .hero-buttons {
        gap: 0.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .logo .tagline {
        font-size: 0.6rem;
    }

    .logo-image {
        height: 35px;
    }

    .feature-card,
    .step-card,
    .info-card {
        padding: 1.5rem;
    }

    .feature-icon,
    .step-number {
        font-size: 2rem;
    }

    .feature-card h3,
    .step-card h3,
    .info-card h3 {
        font-size: 1.25rem;
    }

    .announcement-banner {
        padding: 0.5rem 0.5rem;
    }

    .announcement-message {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .live-indicator {
        padding: 0.2rem 0.5rem;
    }

    .live-text {
        font-size: 0.65rem;
    }

    .live-dot {
        width: 6px;
        height: 6px;
    }

    .banner-close {
        width: 24px;
        height: 24px;
    }

    .countdown-text h2 {
        font-size: 1.5rem;
    }

    .countdown-text p {
        font-size: 0.9rem;
    }

    .timer-unit {
        min-width: 70px;
        padding: 0.75rem 1rem;
    }

    .timer-value {
        font-size: 1.75rem;
    }

    .timer-text {
        font-size: 0.7rem;
    }

    .timer-label {
        font-size: 1rem;
    }

    .map-info-card h3 {
        font-size: 1.25rem;
    }

    .map-info-card p,
    .map-info-card li {
        font-size: 0.9rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.25rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Extra Small Phones (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
    }

    .feature-card,
    .step-card,
    .info-card {
        padding: 1.25rem;
    }

    .timer-unit {
        min-width: 60px;
        padding: 0.6rem 0.75rem;
    }

    .timer-value {
        font-size: 1.5rem;
    }

    .timer-text {
        font-size: 0.65rem;
    }

    .map-wrapper iframe {
        min-height: 300px;
    }

    .map-container-inline {
        min-height: 300px;
    }

    .map-wrapper {
        min-height: 300px;
    }
}

/* Landscape Mode Optimizations */
@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        min-height: 70vh;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }

    .nav-menu {
        padding: 1rem 0;
    }

    .section {
        padding: 3rem 0;
    }

    body:has(.announcement-banner-link:not(.hidden)) .hero {
        margin-top: 50px;
    }
}

/* Print Styles */
@media print {
    .announcement-banner-link,
    .header,
    .hamburger,
    .hero-buttons,
    .footer,
    .btn {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

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