:root {
    --gold: #FFD700;
    --white: #FFFFFF;
    --black: #000000;
    --dark-blue: #1f3245;
    --font-family: 'system-ui', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --radius-md: 16px;
    --radius-lg: 30px;
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.1);
    --transition-smooth: all 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

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

section {
    padding: 100px 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    color: #555;
}

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

/* --- Header --- */
.main-header {
    background-color: var(--gold);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--black);
    text-decoration: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--black);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* --- Hero Section --- */
.hero-section {
    background-color: var(--gold);
    padding-top: 120px;
    padding-bottom: 120px;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 20px 0 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 15px 30px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid var(--black);
    transition: var(--transition-smooth);
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: #333;
    transform: translateY(-3px);
}

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

.btn-secondary:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-image-container {
    flex: 1;
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    animation: float 6s ease-in-out infinite;
}

.budget-preview {
    bottom: -40px;
    left: -60px;
    width: 250px;
}

.budget-preview h4 {
    margin-top: 10px;
    color: var(--black);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* --- Services Section --- */
.services-section {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    text-align: left;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-premium);
}

.service-card-image {
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 20px 25px 10px;
}

.service-card p {
    margin: 0 25px 25px;
    color: #555;
}

/* --- Venues Section --- */
.venues-section {
    background-color: var(--gold);
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    margin-top: 50px;
}

.venue-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.venue-item:hover {
    box-shadow: var(--shadow-premium);
}

.venue-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.venue-item:hover img {
    transform: scale(1.1);
}

.venue-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.venue-item:hover::after {
    opacity: 1;
}

.venue-item:nth-child(1) { grid-column: span 2; }
.venue-item:nth-child(6) { grid-column: span 2; }


/* --- Quote Section --- */
.quote-form-container {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    margin-top: 50px;
}

.quote-form-sidebar {
    background: #f8f8f8;
    padding: 40px;
    width: 350px;
}

.quote-form-sidebar h3 {
    margin-bottom: 20px;
}

.price-preview {
    margin-top: 30px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
}

.price-preview p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.price-preview span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
}

.quote-form {
    padding: 40px;
    flex: 1;
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 2px;
    width: 100%;
    background: #e0e0e0;
    z-index: 1;
}

.progress-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #999;
    z-index: 2;
    transition: var(--transition-smooth);
}

.progress-step.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s;
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

input[type="number"],
input[type="date"],
input[type="text"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-family);
}

.chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    background: #f0f0f0;
    border: 1px solid #ddd;
    transition: var(--transition-smooth);
}

.chip:hover {
    background: #e0e0e0;
}

.chip.selected {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.services-checkboxes label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--black);
}

.form-step .btn {
    margin-right: 10px;
}

#final-quote-result {
    background: #f5f5f5;
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}


/* --- Footer --- */
.main-footer-container {
    background-color: var(--dark-blue);
    color: var(--white);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

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

.btn-cta:hover {
    background: #ffed4a;
    transform: translateY(-3px);
}

.legal-bar {
    border-top: 1px solid #3a4c5d;
    padding: 20px 0;
}

.legal-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #aaa;
}

.legal-bar a {
    color: #aaa;
    margin-left: 15px;
}
.legal-bar a:hover {
    color: var(--white);
}

/* --- Scroll Animations --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* --- Responsive Design --- */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content p { margin: 20px auto 40px; }
    .hero-buttons { justify-content: center; }
    .budget-preview { left: 0; right: 0; margin: auto; }
    
    .services-grid { grid-template-columns: 1fr; }
    .venues-grid { grid-template-columns: repeat(2, 1fr); }
    
    .quote-form-container { flex-direction: column; }
    .quote-form-sidebar { width: 100%; border-bottom: 1px solid #e0e0e0; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .main-nav { display: none; /* Simple mobile hide for now */ }
    .hero-section { padding: 80px 0; }

    .venues-grid { grid-template-columns: 1fr; }
    .venue-item:nth-child(n) { grid-column: auto; } /* Reset grid column span */

    .footer-grid { grid-template-columns: 1fr; }
    .legal-bar .container { flex-direction: column; gap: 10px; }
}
