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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0a0a0a;
    color: #f8f8f8;
    font-family: 'Work Sans', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Color Variables - Tamashanc inspired */
:root {
    --primary-gold: #c9a961;
    --accent-gold: #d4b875;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --gray-800: #1e1e1e;
    --gray-700: #2a2a2a;
    --gray-600: #404040;
    --gray-400: #a0a0a0;
    --gray-300: #d0d0d0;
    --gray-100: #f5f5f5;
    --white: #f8f8f8;
    --black: #0a0a0a;
    --text-primary: #f8f8f8;
    --text-secondary: #c0c0c0;
    --text-muted: #888888;
}

/* Modern Professional Font System */
:root {
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-accent: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

/* Base body font - clean and readable */
body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

/* Typography */
.section-title {
    font-family: var(--font-display); /* Playfair Display */
    font-size: 3rem;
    font-weight: 500; /* Consistent with other h3 titles */
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-primary);
    letter-spacing: -0.01em; /* Consistent */
    line-height: 1.2; /* Consistent */
}

.section-divider {
    width: 80px;
    height: 3px;
    background-color: var(--primary-gold);
    margin: 0 auto 2rem;
}

.section-description {
    text-align: center;
    color: var(--text-secondary);
    max-width: 48rem;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

.section {
    padding: 5rem 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-800);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
}

.logo-container {
    display: flex;
    justify-content: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--primary-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Home Section */
.home-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    width: 100%;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                linear-gradient(135deg, #c9a961 0%, #1a1a1a 50%, #c9a961 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

/* Hero section - elegant display font (same as "Creating Unforgettable Moments") */
.hero-title {
    font-family: var(--font-display); /* Playfair Display */
    font-size: 4rem;
    font-weight: 500; /* Changed from 600 to match the other style */
    margin-bottom: 1rem;
    color: var(--primary-gold);
    letter-spacing: -0.01em; /* Changed from -0.02em to match */
    line-height: 1.2; /* Changed from 1.1 to match */
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero-cta {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--black);
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: var(--font-accent);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Features Section */
.features-section {
    background-color: var(--gray-800);
    padding: 5rem 0;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    justify-content: center;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-600);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.feature-card h3 {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    letter-spacing: -0.01em;
}

.feature-card p {
    font-family: var(--font-primary);
    color: var(--gray-300);
    font-weight: 400;
    line-height: 1.6;
}

/* Booking Section */
.booking-section {
    padding-top: 8rem;
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--gray-800);
    border-radius: 8px;
    padding: 3rem;
    border: 1px solid var(--gray-700);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary-gold);
    font-family: var(--font-accent);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--gray-700);
    border: 2px solid var(--gray-600);
    border-radius: 4px;
    padding: 0.75rem;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background-color: var(--primary-gold);
    color: var(--black);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Pricing Section */
.pricing-section {
    padding-top: 8rem;
    background-color: var(--gray-800);
}

/* Default pricing grid - for standard layouts */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* 2x2 Pricing Grid - Override for specific 2x2 layout */
.pricing-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    justify-items: stretch;
    align-items: stretch;
}

.pricing-grid-2x2 .pricing-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-grid-2x2 .pricing-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Package Inclusions - Elegant Design */
.package-inclusions-elegant {
    margin: 4rem auto;
    max-width: 900px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.03) 0%, rgba(201, 169, 97, 0.08) 100%);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.package-inclusions-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold), var(--primary-gold));
}

.inclusions-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

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

.inclusion-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.inclusion-item:hover {
    background: rgba(201, 169, 97, 0.1);
    transform: translateX(5px);
}

.inclusion-item i {
    font-size: 1.4rem;
    color: var(--primary-gold);
    width: 30px;
    text-align: center;
}

.inclusion-item span {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Fees Section */
.fees-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.fees-section h4 {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 1.5rem;
}

.fees-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.fee {
    text-align: center;
}

.fee-name {
    display: block;
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.fee-amount {
    display: block;
    font-family: var(--font-accent);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.fee-note {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 0.25rem;
}

.fee-separator {
    color: var(--gray-600);
    font-size: 1.5rem;
}

.pricing-card {
    background-color: var(--gray-700);
    border: 1px solid var(--gray-600);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    border: 2px solid var(--primary-gold);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-gold);
    color: var(--black);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-header {
    background-color: var(--primary-gold);
    color: var(--black);
    text-align: center;
    padding: 2rem;
}

.pricing-header h3 {
    font-family: var(--font-display); /* Changed from font-accent to font-display */
    font-size: 1.5rem;
    font-weight: 500; /* Changed from 700 to 500 to match */
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em; /* Changed from 0.02em to match */
}

.pricing-header p {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

.pricing-body {
    padding: 2rem;
    text-align: center;
}

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

.price {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.period {
    color: var(--gray-400);
    font-size: 1rem;
    margin-left: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    font-family: var(--font-primary);
    font-weight: 400;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-300);
}

.pricing-features i {
    color: var(--primary-gold);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.pricing-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--white);
    padding: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-btn:hover {
    background-color: var(--primary-gold);
    color: var(--black);
}

.popular .pricing-btn {
    background-color: var(--primary-gold);
    color: var(--black);
}

.popular .pricing-btn:hover {
    background-color: #b8941f;
}

/* Additional Fees Section */
.additional-fees {
    margin-top: 3rem;
    padding: 2.5rem;
    background-color: rgba(201, 169, 97, 0.05);
    border: 2px solid var(--primary-gold);
    border-radius: 12px;
}

.additional-fees h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

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

.fee-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--gray-700);
    border-radius: 8px;
    border: 1px solid var(--gray-600);
}

.fee-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fee-icon i {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.fee-details {
    flex: 1;
}

.fee-details h4 {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.fee-amount {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.25rem;
}

.fee-description {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.4;
}

.addons-section {
    background-color: var(--gray-700);
    border: 1px solid var(--gray-600);
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.addons-card {
    background: var(--gray-700);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.addons-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
}

.addons-header {
    text-align: center;
    margin-bottom: 2rem;
}

.addons-header h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    font-weight: 600;
}

.addons-header p {
    font-size: 1.1rem;
    color: white;
    font-family: var(--font-primary);
}

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

.addon-item {
    display: flex;
    align-items: center;
    background: var(--gray-700);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.addon-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #d4af37;
}

.addon-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.addon-icon i {
    font-size: 1.5rem;
    color: white;
}

.addon-details {
    flex: 1;
}

.addon-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    font-family: var(--font-accent);
}

.addon-details p {
    font-size: 0.95rem;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-family: var(--font-primary);
}

.addon-price {
    font-weight: 700;
    color: #d4af37;
    font-size: 1.1rem;
    font-family: var(--font-accent);
}

.custom-pricing {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
}

.custom-pricing p {
    color: var(--gray-300);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.custom-pricing-btn {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--black);
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: var(--font-accent);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-gold);
    letter-spacing: 0.5px;
}

.custom-pricing-btn:hover {
    background-color: transparent;
    color: var(--primary-gold);
}

/* About Section */
.about-section {
    padding-top: 8rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

/* About with image styles */
.about-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* About section h3 titles - keep the same style since you like it */
.about-text h3,
.about-features h3 {
    font-family: var(--font-display); /* Playfair Display */
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.about-text p {
    font-family: var(--font-primary);
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--gray-800);
    border-radius: 8px;
    border: 1px solid var(--gray-700);
}

.stat-number {
    display: block;
    font-family: var(--font-accent);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.stat-label {
    font-family: var(--font-primary);
    color: var(--gray-300);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: var(--gray-800);
    border-radius: 8px;
    border: 1px solid var(--gray-700);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-family: var(--font-accent);
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-item p {
    font-family: var(--font-primary);
    color: var(--gray-300);
    font-weight: 400;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding-top: 8rem;
    background-color: var(--gray-800);
}

.admin-panel {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.logout-btn,
.create-album-btn {
    background-color: var(--gray-700);
    color: var(--white);
    border: 1px solid var(--gray-600);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-btn:hover,
.create-album-btn:hover {
    background-color: var(--gray-600);
}

.gallery-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.album-filter {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: transparent;
    color: var(--gray-300);
    border: 2px solid var(--gray-600);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

.admin-login-btn {
    background-color: var(--primary-gold);
    color: var(--black);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.admin-login-btn:hover {
    background-color: #b8941f;
}

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

.album-card {
    background-color: var(--gray-700);
    border: 1px solid var(--gray-600);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.album-card:hover {
    transform: translateY(-5px);
}

.album-preview {
    width: 100%;
    height: 250px;
    background-color: var(--gray-600);
    position: relative;
    overflow: hidden;
}

.album-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--gray-400);
    font-size: 1rem;
}

.album-info {
    padding: 1.5rem;
}

.album-title {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.album-description {
    font-family: var(--font-primary);
    color: var(--gray-300);
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.album-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 400;
}

.album-count {
    color: var(--gray-400);
}

.album-view-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
}

.album-view-link:hover {
    text-decoration: underline;
}

.album-images-view {
    margin-top: 2rem;
}

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

.back-btn {
    background-color: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-btn:hover {
    background-color: var(--primary-gold);
    color: var(--black);
}

.album-admin-controls {
    display: flex;
    gap: 1rem;
}

.upload-btn {
    background-color: var(--primary-gold);
    color: var(--black);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.upload-btn:hover {
    background-color: #b8941f;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-image {
    background-color: var(--gray-700);
    border: 1px solid var(--gray-600);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: translateY(-5px);
}

.gallery-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.image-info {
    padding: 1rem;
}

.image-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.image-description {
    color: var(--gray-300);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* FAQs Section */
.faqs-section {
    padding-top: 8rem;
    background-color: var(--dark-bg);
}

.faqs-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background-color: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    background-color: var(--gray-800);
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
    user-select: none;
}

.faq-question:hover {
    background-color: var(--gray-700);
}

.faq-question h3 {
    font-family: var(--font-accent);
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 2rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.faq-question i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-question {
    background-color: var(--gray-700);
    border-bottom: 1px solid var(--gray-600);
}

.faq-item.active .faq-question h3 {
    color: var(--primary-gold);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--gray-700);
}

.faq-answer p {
    font-family: var(--font-primary);
    padding: 0 2rem 2rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Active state with gold accent */
.faq-item.active {
    border-left: 4px solid var(--primary-gold);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.2);
}

/* Footer */
.footer {
    background-color: var(--gray-700);
    border-top: 1px solid var(--gray-600);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

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

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-accent);
    color: var(--primary-gold);
}

.footer-section p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    color: var(--gray-300);
    font-weight: 400;
}

.footer-section i {
    width: 16px;
    color: var(--primary-gold);
}

/* Footer Slogan Styling */
.footer-slogan {
    text-align: center;
    padding: 1rem 0;
}

.footer-slogan h3 {
    font-family: var(--font-display); /* Playfair Display */
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary-gold);
    margin: 0;
    letter-spacing: 0.02em;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(201, 169, 97, 0.3);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-links a i {
    color: var(--black) !important;
    font-size: 18px;
}

.social-links a:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.social-links a:hover i {
    color: var(--black) !important;
}

.footer-bottom {
    border-top: 1px solid var(--gray-600);
    padding-top: 20px;
    text-align: center;
    color: var(--gray-400);
}

.footer-bottom p {
    font-family: var(--font-primary);
    color: var(--gray-400);
    font-size: 0.9rem;
    font-weight: 400;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    background-color: var(--gray-600);
    border: 1px solid var(--gray-500);
    border-radius: 4px;
    padding: 0.5rem;
    color: var(--white);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.newsletter-form button {
    background-color: var(--primary-gold);
    color: var(--black);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-accent);
    font-weight: 600;
    transition: background-color 0.3s ease;
    letter-spacing: 0.5px;
}

.newsletter-form button:hover {
    background-color: #b8941f;
}

/* Phone Call Widget Styles */
#phone-call-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

/* Floating Phone Button */
.phone-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
    position: relative;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.phone-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.6);
    text-decoration: none;
}

.phone-button i {
    font-size: 24px;
    color: white;
}

.phone-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.phone-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #333;
}

.phone-button:hover .phone-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 123, 255, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
    }
}

/* Hover effects for accessibility */
.phone-button:focus {
    outline: 3px solid rgba(0, 123, 255, 0.5);
    outline-offset: 2px;
}

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

.modal-content {
    background-color: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 8px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-content h3 {
    font-family: 'Roboto Slab', serif;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--gray-400);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--white);
}

.modal form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal input,
.modal textarea {
    background-color: var(--gray-700);
    border: 1px solid var(--gray-600);
    border-radius: 4px;
    padding: 0.75rem;
    color: var(--white);
    font-size: 1rem;
}

.modal input:focus,
.modal textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.modal button {
    background-color: var(--primary-gold);
    color: var(--black);
    border: none;
    padding: 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.modal button:hover {
    background-color: #b8941f;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
    }

    .logo {
        height: 50px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid var(--gray-700);
        width: 100%;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    /* 2x2 grid becomes single column on mobile */
    .pricing-grid-2x2 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        max-width: 100%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
        min-height: 300px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-list {
        gap: 1rem;
    }

    .gallery-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .album-filter {
        justify-content: center;
    }

    .album-header {
        flex-direction: column;
        align-items: stretch;
    }

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

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

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

    .newsletter-form {
        flex-direction: column;
    }
    
    .fees-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .fee-item {
        padding: 1rem;
    }
    
    .additional-fees {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    .addons-card {
        padding: 1.5rem;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .addon-item {
        padding: 1rem;
    }
    
    .addon-icon {
        width: 50px;
        height: 50px;
    }
    
    .addon-icon i {
        font-size: 1.2rem;
    }
    
    .addons-header h3 {
        font-size: 1.6rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .faq-question i {
        font-size: 1.1rem;
    }

    .package-inclusions-elegant {
        padding: 2rem 1.5rem;
        margin: 3rem auto;
    }
    
    .inclusions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .fees-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .fee-separator {
        display: none;
    }
    
    .fee-amount {
        font-size: 1.5rem;
    }

    /* Phone widget mobile styles */
    .phone-tooltip {
        display: none;
    }
    
    .phone-button {
        width: 55px;
        height: 55px;
    }
    
    .phone-button i {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .booking-form-container {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

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

    .feature-card {
        padding: 1.5rem;
    }

    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

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

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

.bg-gold {
    background-color: var(--primary-gold);
}

.border-gold {
    border-color: var(--primary-gold);
}