/* ============================================
   ETERNALLY YOURS - Wedding Planning Website
   Custom Styles & Animations
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
    --color-primary: #8B6F4E;
    --color-primary-light: #B8976A;
    --color-primary-dark: #6B5335;
    --color-accent: #C9A96E;
    --color-accent-light: #E8D5B0;
    --color-rose: #D4A0A0;
    --color-rose-light: #F2E0E0;
    --color-blush: #F7EDE8;
    --color-sage: #A8B5A2;
    --color-sage-light: #D4DDD1;
    --color-ivory: #FFFEF7;
    --color-cream: #F9F5EF;
    --color-charcoal: #2C2C2C;
    --color-dark: #1A1A1A;
    --color-text: #4A4A4A;
    --color-text-light: #7A7A7A;
    --color-white: #FFFFFF;
    --color-success: #6B9E76;
    --color-danger: #C07070;
    --color-warning: #D4A84B;

    --font-script: 'Great Vibes', cursive;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ---- Global Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

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

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

a:hover {
    color: var(--color-primary-dark);
}

/* ---- Preloader ---- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-ivory);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

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

.loader-rings {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.loader-rings .ring {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    animation: loaderSpin 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.loader-rings .ring:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    border-top-color: var(--color-primary);
    animation-delay: -0.45s;
}

.loader-rings .ring:nth-child(2) {
    width: 48px;
    height: 48px;
    top: 16px;
    left: 16px;
    border-right-color: var(--color-accent);
    animation-delay: -0.3s;
}

.loader-rings .ring:nth-child(3) {
    width: 36px;
    height: 36px;
    top: 22px;
    left: 22px;
    border-bottom-color: var(--color-rose);
    animation-delay: -0.15s;
}

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

.loader-text {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--color-primary);
}

/* ---- Section Styles ---- */
.section-padding {
    padding: 100px 0;
}

.section-tag {
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 16px;
    line-height: 1.2;
}

.text-accent {
    color: var(--color-primary);
    font-style: italic;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-light);
    max-width: 560px;
    margin: 0 auto;
}

/* ---- Buttons ---- */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    border: none;
    padding: 12px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::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: left 0.5s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 111, 78, 0.35);
    color: var(--color-white);
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-outline-custom {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 12px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ---- Filter Buttons ---- */
.filter-btn {
    background: transparent;
    border: 2px solid var(--color-accent-light);
    color: var(--color-text);
    padding: 8px 22px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    margin: 4px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* ============================================
   NAVIGATION
   ============================================ */
#mainNav {
    padding: 20px 0;
    transition: var(--transition);
    z-index: 1000;
    background: transparent;
}

#mainNav.scrolled {
    background: rgba(255, 254, 247, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
}

.navbar-brand .brand-script {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--color-white);
    transition: var(--transition);
}

.navbar-brand .brand-serif {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--color-accent-light);
    transition: var(--transition);
}

#mainNav.scrolled .brand-script {
    color: var(--color-primary);
}

#mainNav.scrolled .brand-serif {
    color: var(--color-text-light);
}

.navbar-toggler {
    border: none;
    padding: 4px 0;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler .toggler-bar {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-white);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

#mainNav.scrolled .navbar-toggler .toggler-bar {
    background: var(--color-charcoal);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white) !important;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
}

#mainNav.scrolled .navbar-nav .nav-link {
    color: var(--color-charcoal) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 30px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease, transform 8s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.55) 0%,
        rgba(139, 111, 78, 0.3) 50%,
        rgba(26, 26, 26, 0.5) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-subtitle {
    font-family: var(--font-script);
    font-size: 1.6rem;
    color: var(--color-accent-light);
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 1s ease 0.5s forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 1s ease 0.7s forwards;
    line-height: 1.1;
}

.hero-divider {
    margin-bottom: 20px;
    opacity: 0;
    animation: heroFadeUp 1s ease 0.9s forwards;
}

.divider-ornament {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: var(--color-accent);
    position: relative;
}

.divider-ornament::before {
    content: '\2665';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    color: var(--color-accent);
    background: transparent;
    padding: 0 8px;
}

.hero-description {
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 1s ease 1.1s forwards;
    line-height: 1.8;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 1s ease 1.3s forwards;
}

.hero-buttons .btn {
    padding: 14px 36px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: heroFadeUp 1s ease 1.6s forwards;
}

.hero-scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
    text-decoration: none;
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--color-accent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    animation: scrollLineMove 1.5s ease infinite;
}

@keyframes scrollLineMove {
    0% { top: -100%; }
    100% { top: 100%; }
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--color-cream);
}

.about-images {
    position: relative;
    padding: 30px;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.about-img-main img {
    transition: transform 0.6s ease;
}

.about-images:hover .about-img-main img {
    transform: scale(1.03);
}

.about-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 5px solid var(--color-cream);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.about-experience-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    z-index: 3;
    box-shadow: var(--shadow-md);
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.4;
}

.about-content {
    padding-left: 30px;
}

.about-text {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: var(--color-text-light);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--color-accent-light);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 4px;
}

/* ============================================
   TIMELINE / CHECKLIST SECTION
   ============================================ */
.timeline-section {
    background: var(--color-white);
}

.timeline-wrapper {
    position: relative;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--color-accent-light);
    transform: translateX(-50%);
}

.timeline-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 110, 0.1);
    margin-bottom: 30px;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.timeline-badge {
    display: inline-block;
    background: var(--color-blush);
    color: var(--color-primary);
    padding: 4px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-charcoal);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.checklist-cb {
    accent-color: var(--color-primary);
    width: 16px;
    height: 16px;
    margin-right: 6px;
    cursor: pointer;
}

.check-label {
    font-size: 0.85rem;
    color: var(--color-text-light);
    cursor: pointer;
    user-select: none;
}

.timeline-card.completed {
    opacity: 0.6;
}

.timeline-card.completed .timeline-content h4 {
    text-decoration: line-through;
    color: var(--color-text-light);
}

/* ============================================
   VENDORS SECTION
   ============================================ */
.vendors-section {
    background: var(--color-cream);
}

.vendor-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.vendor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.vendor-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.vendor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vendor-card:hover .vendor-img img {
    transform: scale(1.08);
}

.vendor-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 4px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.vendor-info {
    padding: 24px;
}

.vendor-info h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-charcoal);
    margin-bottom: 6px;
}

.vendor-location {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.vendor-location i {
    color: var(--color-primary);
    margin-right: 4px;
}

.vendor-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.vendor-rating {
    color: var(--color-accent);
    font-size: 0.85rem;
}

.vendor-rating span {
    color: var(--color-text-light);
    margin-left: 6px;
    font-size: 0.8rem;
}

/* ============================================
   BUDGET SECTION
   ============================================ */
.budget-section {
    background: var(--color-white);
}

.budget-overview-card,
.budget-items-card,
.guest-stats-card,
.guest-manager-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(201, 169, 110, 0.1);
    height: 100%;
}

.budget-overview-card h4,
.budget-items-card h4,
.guest-stats-card h4,
.guest-manager-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-charcoal);
    margin-bottom: 20px;
}

.budget-input-wrap {
    display: flex;
    align-items: center;
    background: var(--color-cream);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    border: 2px solid var(--color-accent-light);
    transition: var(--transition);
}

.budget-input-wrap:focus-within {
    border-color: var(--color-primary);
}

.currency-symbol {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-right: 8px;
}

.budget-input {
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-charcoal);
    width: 100%;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-accent-light);
    font-size: 0.95rem;
}

.summary-row:last-child {
    border-bottom: none;
}

.budget-progress-bar {
    text-align: center;
}

.progress-track {
    width: 100%;
    height: 10px;
    background: var(--color-accent-light);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 10px;
    transition: width 0.6s ease;
}

.progress-text {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 6px;
    display: block;
}

.budget-table,
.guest-table {
    width: 100%;
}

.budget-table thead,
.guest-table thead {
    background: var(--color-cream);
}

.budget-table th,
.guest-table th {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-charcoal);
    padding: 12px 16px;
    border: none;
}

.budget-table td,
.guest-table td {
    padding: 12px 16px;
    vertical-align: middle;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--color-accent-light);
}

.budget-table tbody tr:hover,
.guest-table tbody tr:hover {
    background: rgba(201, 169, 110, 0.05);
}

.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.status-pending {
    background: #FFF3CD;
    color: #856404;
}

.status-booked {
    background: #D1ECF1;
    color: #0C5460;
}

.status-paid {
    background: #D4EDDA;
    color: #155724;
}

.status-accepted {
    background: #D4EDDA;
    color: #155724;
}

.status-declined {
    background: #F8D7DA;
    color: #721C24;
}

.budget-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.budget-cat-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-blush);
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
}

.budget-cat-tag .cat-amount {
    font-weight: 400;
    color: var(--color-text-light);
}

/* ============================================
   GUESTS SECTION
   ============================================ */
.guests-section {
    background: var(--color-cream);
}

.guest-stat-circle {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto;
}

.guest-circle-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: var(--color-accent-light);
    stroke-width: 8;
}

.circle-fill {
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 0.8s ease;
}

.circle-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.circle-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    line-height: 1;
}

.circle-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guest-stat-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-accent-light);
    font-size: 0.9rem;
}

.guest-stat-row:last-child {
    border-bottom: none;
}

.guest-stat-row i {
    margin-right: 8px;
    width: 16px;
}

.rsvp-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-xl);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0 15px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

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

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(26, 26, 26, 0.85));
    color: var(--color-white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.gallery-overlay p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 8px;
}

.gallery-lightbox-modal .modal-content {
    background: rgba(0, 0, 0, 0.9);
}

.gallery-lightbox-modal .modal-dialog {
    max-width: 90vw;
}

#lightboxImg {
    max-height: 85vh;
    border-radius: var(--radius-md);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--color-cream);
}

.contact-info {
    padding-right: 40px;
}

.contact-text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1rem;
}

.contact-detail-item h6 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-charcoal);
    margin-bottom: 4px;
}

.contact-detail-item p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    border: 2px solid var(--color-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.contact-form-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-card .form-label {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-charcoal);
    margin-bottom: 6px;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 2px solid var(--color-accent-light);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(139, 111, 78, 0.15);
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 4rem;
    color: var(--color-success);
    margin-bottom: 16px;
    animation: successPop 0.6s ease;
}

.form-success h4 {
    font-family: var(--font-heading);
    color: var(--color-charcoal);
    margin-bottom: 10px;
}

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

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-brand a {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.footer-brand .brand-script {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--color-white);
}

.footer-brand .brand-serif {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--color-accent-light);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 6px;
}

.newsletter-form .input-group {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    padding: 12px 20px;
    font-size: 0.9rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: var(--color-accent);
}

.newsletter-form .btn {
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
    padding: 12px 24px;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: var(--color-accent);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(139, 111, 78, 0.4);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for child elements */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1199px) {
    .section-title {
        font-size: 2.4rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-column: span 1;
        aspect-ratio: 1;
    }
}

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

    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-card {
        margin-left: 60px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-column: span 2;
        aspect-ratio: 2/1;
    }

    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .section-padding {
        padding: 70px 0;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

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

    .about-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-img-accent {
        width: 140px;
        right: -10px;
        bottom: -10px;
    }

    .about-experience-badge {
        padding: 14px;
    }

    .exp-number {
        font-size: 2rem;
    }

    .budget-table td,
    .budget-table th,
    .guest-table td,
    .guest-table th {
        padding: 8px 10px;
        font-size: 0.8rem;
    }

    .contact-form-card {
        padding: 24px;
    }

    .footer-top {
        padding: 50px 0 30px;
    }

    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .hero-buttons .btn + .me-3 {
        margin-right: 0 !important;
    }

    .about-stats {
        flex-direction: column;
        gap: 16px;
    }

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

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* ---- Mobile Navigation ---- */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 254, 247, 0.98);
        backdrop-filter: blur(12px);
        padding: 20px;
        border-radius: var(--radius-md);
        margin-top: 10px;
        box-shadow: var(--shadow-lg);
    }

    #mainNav .navbar-nav .nav-link {
        color: var(--color-charcoal) !important;
        padding: 10px 16px !important;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }
}

/* ---- Print Styles ---- */
@media print {
    .hero-section,
    .back-to-top,
    #mainNav,
    .hero-scroll-indicator {
        display: none;
    }

    .section-padding {
        padding: 20px 0;
    }
}
