:root {
    --gold: #C5A059;
    --gold-dark: #A6803F;
    --emerald: #0A2E24;
    --cream: #F9F6F0;
    --white: #FFFFFF;
    --dark: #1A1A1A;
    --gray: #666666;
    --shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.7;
}

h1, h2, h3, .nav-logo {
    font-family: 'Playfair Display', serif;
}

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

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 30px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.8rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 700;
}

.nav-logo span {
    color: var(--gold);
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--gold);
    padding: 12px 25px;
    border-radius: 50px;
    color: var(--white) !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: 10%;
    padding-right: 25px;
}

.hero-tagline {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title span {
    font-style: italic;
    color: var(--gold);
}

.hero-desc {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 18px 45px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid var(--white);
    color: var(--white);
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

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

/* Section Common */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 120px 0;
    background: var(--cream);
}

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

.benefit-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.section-badge {
    display: inline-block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Services Section Highlighting */
.services-section.highlighted {
    background: linear-gradient(to bottom, var(--white), var(--cream));
    position: relative;
    padding: 140px 0;
}

.services-section.highlighted::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.service-category {
    padding: 50px 40px;
    background: var(--white);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-category:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(197, 160, 89, 0.1);
    border-color: var(--gold);
}

.service-category h3 {
    font-size: 2rem;
    color: var(--emerald);
    margin-bottom: 40px;
    border-bottom: 2px solid var(--cream);
    padding-bottom: 20px;
}

.service-item h4 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-item h4::before {
    content: '◈';
    color: var(--gold);
    font-size: 0.8rem;
}

/* Photography Section */
.photography-section {
    padding: 120px 0;
}

.photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.photo-card {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    height: 500px;
    box-shadow: var(--shadow);
}

.card-img {
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

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

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
}

.card-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

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

.card-info li {
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.card-info li::before {
    content: '✦';
    color: var(--gold);
    margin-right: 10px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.stars {
    color: var(--gold);
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Form Section */
.form-section {
    padding: 120px 0;
    background: var(--emerald);
    color: var(--white);
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.wedding-form {
    background: var(--white);
    padding: 60px;
    border-radius: 30px;
    color: var(--dark);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

input, select, textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus {
    outline: none;
    border-color: var(--gold);
}

.form-sub {
    margin: 40px 0 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-size: 1.2rem;
    color: var(--gold);
}

.service-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.check-box {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.check-box input {
    display: none;
}

.custom-check {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gold);
    border-radius: 6px;
    margin-right: 12px;
    position: relative;
    transition: background 0.3s;
}

.check-box input:checked + .custom-check {
    background: var(--gold);
}

.check-box input:checked + .custom-check::after {
    content: '✓';
    color: var(--white);
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
}

.btn-submit-gold {
    width: 100%;
    background: var(--emerald);
    color: var(--white);
    border: none;
    padding: 22px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 30px;
    transition: background 0.3s;
}

.btn-submit-gold:hover {
    background: #061e18;
}

/* Success Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    max-width: 500px;
}

.success-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.footer {
    padding: 40px 0;
    text-align: center;
    background: var(--dark);
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .hero-content { margin-left: 5%; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
    .nav-links { display: none; }
    .form-grid, .service-selection, .photo-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .wedding-form { padding: 30px; }
    .hero-btns { flex-direction: column; }
    .hero-content { margin-left: 0; text-align: center; padding: 0 20px; }
    .section-header h2 { font-size: 2.2rem; }
}
