/* Roots & Variables */
:root {
    --bg-color: #050505;
    --bg-surface: #0a0a0a;
    --bg-surface-2: #111111;

    --text-primary: #F5F5F0;
    /* Ivory */
    --text-secondary: #aaaaaa;

    --accent-gold: #C5A059;
    /* Champagne Gold base */
    --accent-gold-light: #E5C585;
    --accent-gold-dark: #8E7030;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --container-width: 1200px;

    --transition-slow: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-fast: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

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

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

.overline {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-xs);
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.container-narrow {
    max-width: 800px;
}

.section {
    padding: var(--spacing-xl) 0;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-color);
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--accent-gold-light);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--bg-color);
}

.separator {
    width: 60px;
    height: 1px;
    background-color: var(--accent-gold);
    margin: var(--spacing-md) auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md) 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.9), transparent);
    transition: background var(--transition-fast), padding var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
}

.hero-logo-wrapper {
    width: 240px;
    height: 140px;
    margin: 0 auto var(--spacing-sm);
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.4);
    /* Zooms in to crop edges */
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: var(--spacing-md);
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    opacity: 0.8;
    position: relative;
}

.nav-links a.active,
.nav-links a:not(.btn-nav):hover {
    opacity: 1;
    color: var(--accent-gold);
}

.btn-nav {
    border: 1px solid var(--text-primary);
    padding: 0.5rem 1.5rem;
    transition: var(--transition-fast);
}

.btn-nav:hover {
    background: var(--text-primary);
    color: var(--bg-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 1px;
    background-color: var(--text-primary);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform var(--transition-slow);
}

.mobile-menu-overlay.active {
    transform: translateY(0);
}

/* Page Headers / Hero (New) */
.page-header {
    height: 60vh;
    min-height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    /* Default fallback */
    background-image: url('assets/img/PHOTOS.png');
    padding-top: 140px;
    /* Offset for fixed navbar */
}

.page-header.home-header {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/img/19.jpeg');
    /* parallax effect */
    background-attachment: fixed;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    padding: 0 var(--spacing-sm);
    max-width: 800px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: var(--spacing-md);
    color: var(--accent-gold);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.hero-desc {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    opacity: 0.9;
    font-weight: 300;
}

/* Split Section (Video + Text) */
.split-section {
    display: flex;
    align-items: center;
    min-height: 80vh;
    background: var(--bg-surface);
}

.split-content {
    flex: 1;
    padding: var(--spacing-xl);
}

.split-media {
    flex: 1;
    height: 100%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.split-media video,
.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.about-text-large {
    font-size: 1.1rem;
}

.about-text-large h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.lead-text strong {
    color: var(--accent-gold);
}

.founders-card {
    background: var(--bg-surface-2);
    padding: var(--spacing-lg);
    border-radius: 4px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    transition: all var(--transition-fast);
}

.founders-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.founder-name {
    display: block;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.founder-role {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

/* Services List Grid (About Page) */
.services-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.service-list-item {
    padding: var(--spacing-md);
    background: var(--bg-surface-2);
    border-left: 2px solid var(--accent-gold);
    transition: transform var(--transition-fast);
}

.service-list-item:hover {
    transform: translateX(5px);
}

.service-list-item h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 400;
    font-family: var(--font-heading);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.service-list-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Approach Grid */
/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.approach-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.98));
    border: 1px solid var(--accent-gold);
    border-radius: 4px;
    transition: all var(--transition-fast);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.approach-item:hover {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15), rgba(30, 30, 30, 0.95));
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.1);
}

.approach-img-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    border: 2px solid var(--accent-gold);
    padding: 3px;
    /* Creates spacing between border and image */
    background: transparent;
    transition: all var(--transition-fast);
}

.approach-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(20%);
    /* Slight vintage look */
    transition: all var(--transition-fast);
}

.approach-item:hover .approach-img-wrapper {
    transform: scale(1.05);
    border-color: #fff;
}

.approach-item:hover .approach-img-wrapper img {
    filter: grayscale(0%);
}

.approach-item h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

.approach-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Services Grid & Detailed */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    padding: var(--spacing-lg) var(--spacing-md);
    border: 1px solid rgba(197, 160, 89, 0.2);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    background-color: var(--bg-surface);
    background-size: cover;
    background-position: center;
    text-align: left;
    min-height: 200px;
    border-radius: 8px;
}

.service-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    opacity: 0.85;
}

.service-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(197, 160, 89, 0.15);
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-weight: 600;
}

/* Services Detailed Grid (9 cards) */
.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.service-detail-card {
    padding: var(--spacing-lg);
    min-height: 280px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(197, 160, 89, 0.2);
    transition: all var(--transition-fast);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 8px;
}

.service-detail-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.service-detail-card .service-number {
    font-size: 4rem;
    top: 1rem;
    right: 1.5rem;
}

.service-detail-card h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.service-detail-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.detailed-service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.detailed-service-row.reverse {
    direction: rtl;
}

.detailed-service-row.reverse .service-text {
    direction: ltr;
}

.service-img-wrapper {
    height: 400px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-img-wrapper:hover img {
    transform: scale(1.05);
}

/* Gallery - Masonry / Grid */
.gallery-full-grid {
    columns: 3 300px;
    column-gap: var(--spacing-sm);
}

.gallery-grid-item {
    margin-bottom: var(--spacing-sm);
    break-inside: avoid;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    border-radius: 8px;
}

.gallery-grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(197, 160, 89, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-grid-item:hover::before {
    opacity: 1;
}

.gallery-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-grid-item img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: block;
    position: relative;
    z-index: 0;
}

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

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: hidden;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--text-primary);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--accent-gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-primary);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    transition: all 0.3s ease;
    user-select: none;
    z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--accent-gold);
    background: rgba(197, 160, 89, 0.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-primary);
    font-size: 1rem;
    text-align: center;
    max-width: 80%;
}

/* Contact Page - Split Layout */
.contact-top-section {
    margin-bottom: var(--spacing-xl);
}

.contact-intro {
    margin-bottom: var(--spacing-lg);
}

.contact-intro h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.contact-intro p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.contact-left-side {
    display: flex;
    flex-direction: column;
}

.contact-image-wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 4px;
}

.contact-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-surface-2);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 4px;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.contact-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    background: var(--bg-surface);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-card-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-card-content h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.25rem;
    letter-spacing: 0.1em;
}

.contact-card-content p {
    color: var(--text-primary);
    font-size: 1rem;
}

.contact-right-side {
    position: sticky;
    top: 100px;
}

.contact-form-wrapper {
    background: var(--bg-surface);
    padding: var(--spacing-lg);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 4px;
}

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

/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C5A059' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

.form-group select option {
    background: var(--bg-color);
    color: var(--text-primary);
}

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

/* Video Split Section (Instagram Style) */
.video-split-section {
    display: flex;
    min-height: 90vh;
    background: var(--bg-surface);
}

.video-text-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-xl);
    background: var(--bg-surface);
}

.video-text-side h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.video-text-side p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.video-media-side {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    padding: var(--spacing-md);
}

.instagram-video {
    width: auto;
    height: 85vh;
    max-height: 800px;
    aspect-ratio: 9/16;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Wedding Package Section */
.wedding-package-section {
    display: flex;
    min-height: 80vh;
    background: var(--bg-color);
}

.package-image-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    background: var(--bg-surface);
}

.package-image-side img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.package-content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-xl);
    background: var(--bg-color);
}

.package-content-side h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.package-content-side p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.package-highlights {
    list-style: none;
    margin-top: var(--spacing-md);
}

.package-highlights li {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.package-highlights li::first-letter {
    color: var(--accent-gold);
}

/* Why Choose Us Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.why-list {
    list-style: none;
}

.why-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.why-list li span {
    color: var(--accent-gold);
    margin-right: 1rem;
}

.why-choose-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

/* Gallery Preview */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}


.gallery-preview-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow), filter var(--transition-fast);
    filter: grayscale(20%);
    border-radius: 8px;
}

.gallery-preview-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* Vision & Mission */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.vision-card,
.mission-card {
    padding: var(--spacing-lg);
    background: var(--bg-surface-2);
    border-left: 2px solid var(--accent-gold);
}

.vision-card h3,
.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.vision-card p,
.mission-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Philosophy Quote Enhancement */
.philosophy-quote {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-style: italic;
    line-height: 1.4;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
}

.philosophy-sub {
    font-size: 1.1rem;
    color: var(--accent-gold);
    letter-spacing: 0.1em;
}

/* Footer */
/* Footer */
.footer {
    background-color: #050505;
    /* Deep black for better blending */
    padding: 0rem 0 0rem;
    border-top: 1px solid var(--accent-gold);
    position: relative;
    text-align: center;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: var(--accent-gold);
    box-shadow: 0 0 20px var(--accent-gold);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    width: 180px;
    /* Large and prominent */
    height: auto;
    margin-bottom: 1.5rem;
    mix-blend-mode: screen;
    /* Blends black background seamlessly */
}

.footer-tagline {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin: 1rem 0;
}

.footer-links a {
    color: var(--text-primary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all var(--transition-fast);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

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

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

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact h3 {
    display: none;
    /* Hide header for centered clean look */
}

.footer-contact p {
    margin: 0;
}

.footer-contact a {
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 900px) {
    .split-section {
        flex-direction: column;
    }

    .detailed-service-row,
    .detailed-service-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

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

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

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

    .video-split-section {
        flex-direction: column;
    }

    .video-media-side {
        order: -1;
        min-height: 60vh;
    }

    .instagram-video {
        height: 60vh;
        max-height: 500px;
    }

    .wedding-package-section {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

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

    .gallery-full-grid {
        columns: 2 150px;
    }

    .video-text-side {
        padding: var(--spacing-md);
    }

    .video-text-side h2 {
        font-size: 1.8rem;
    }

    .philosophy-quote {
        font-size: 1.8rem;
    }

    .services-detailed-grid {
        grid-template-columns: 1fr;
    }

    .package-content-side {
        padding: var(--spacing-md);
    }

    .package-content-side h2 {
        font-size: 1.8rem;
    }

    .services-list-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .contact-right-side {
        position: static;
    }

    .contact-image-wrapper {
        height: 300px;
    }
}