/* ===================================
   Global Styles & CSS Variables
   =================================== */

:root {
    /* Luxury Forest Theme Colors */
    --primary-color: #1a4d2e;
    --secondary-color: #2d5f3f;
    --accent-gold: #D4AF37;
    --accent-copper: #B87333;
    --dark-green: #0f2818;
    --deep-black: #0a0f0d;
    --earthy-brown: #4a3728;
    --beige: #f5ebe0;
    --cream: #faf7f2;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1a4d2e 0%, #0f2818 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #B87333 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10, 15, 13, 0.4) 0%, rgba(10, 15, 13, 0.9) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   Reset & Base Styles
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--deep-black);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

/* ===================================
   Loading Screen
   =================================== */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--deep-black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 80px;
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-text {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===================================
   Floating Buttons
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 999;
    transition: all var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 40, 24, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-icon {
    font-size: 36px;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta .btn-call {
    padding: 12px 28px;
    background: var(--gradient-gold);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.nav-cta .btn-call:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* ===================================
   Typography & Utilities
   =================================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-green);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-full {
    width: 100%;
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s ease infinite alternate;
}

@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 15, 13, 0.3) 0%, rgba(10, 15, 13, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: var(--cream);
    letter-spacing: 4px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===================================
   About Section
   =================================== */

.about {
    padding: 120px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(10, 15, 13, 0.8), transparent);
}

.about-content {
    padding: 20px 0;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    font-size: 28px;
    color: var(--accent-gold);
}

.feature-item span {
    font-weight: 600;
    color: var(--dark-green);
}

/* ===================================
   Services Section
   =================================== */
.services .section-title,
.services .section-description{
    color:white;
}

.services .section-tag{
    color:#D4AF37;
}
.services {
    padding: 120px 0;
    background: linear-gradient(to bottom, #071a12, #0f2818);
}
.services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 70px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: #ffffff !important;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid rgba(212,175,55,0.2);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.service-featured {
    border: 2px solid var(--accent-gold);
    background: rgba(255, 255, 255, 0.95);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    box-shadow: var(--shadow-gold);
    transition: transform var(--transition-fast);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: #0f2818;
    margin-bottom: 25px;
}
.service-list {
    text-align: left;
    margin-bottom: 30px;
}
.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 500;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list i {
    color: var(--accent-gold);
    font-size: 14px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-green);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition-fast), gap var(--transition-fast);
}

.service-link:hover {
    color: var(--accent-gold);
    gap: 12px;
}

/* ===================================
   SERVICES DEPLOY FIX
=================================== */

[data-aos]{
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.services,
.services *{
    opacity: 1 !important;
    visibility: visible !important;
}

.services-grid{
    display:grid !important;
}

.service-card{
    display:block !important;
    opacity:1 !important;
    visibility:visible !important;
    min-height:100px;
}

/* ===================================
   Gallery Section
=================================== */

.gallery {
    padding: 120px 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    aspect-ratio: 1 / 1;
    width: 100%;
    transition: 0.5s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: 0.6s ease;
}
.gallery-item.wedding-gallery img{
    object-fit: cover;
    object-position: center;
}
.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover{
    transform: translateY(-10px);
}



.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 15, 13, 0.92),
        rgba(10, 15, 13, 0.2),
        transparent
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    color: var(--white);
    margin-bottom: 10px;
}

.gallery-overlay p {
    color: var(--accent-gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===================================
   Gallery Filter Buttons
=================================== */

.gallery-filters{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    margin-top:40px;
    margin-bottom:50px;
}

.gallery-btn{
    padding:14px 28px;
    border:none;
    border-radius:50px;
    background:white;
    color:#0f2818;
    font-weight:600;
    cursor:pointer;
    transition:0.4s ease;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.gallery-btn:hover{
    background:#D4AF37;
    color:white;
    transform:translateY(-3px);
}

.gallery-btn.active{
    background:linear-gradient(135deg,#D4AF37,#b8860b);
    color:white;
}

.gallery-item.hide{
    display:none;
}

/* ===================================
   Tablet
=================================== */

@media(max-width:992px){

    .gallery-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

/* ===================================
   Mobile
=================================== */

@media(max-width:768px){

    .gallery{
        padding:80px 0;
    }

    .gallery-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .gallery-overlay{
        padding:20px;
    }

    .gallery-overlay h3{
        font-size:22px;
    }

}
/* ===================================
   Why Choose Us Section
   =================================== */

.why-choose {
    padding: 120px 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.why-choose .section-title {
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    transition: all var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.stat-icon {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cream);
}

/* ===================================
   Wedding Section
   =================================== */

.wedding {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.wedding-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.wedding-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wedding-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 15, 13, 0.85) 0%, rgba(26, 77, 46, 0.85) 100%);
    z-index: 2;
}

.wedding-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
    color: var(--white);
}

.wedding-content .section-title {
    color: var(--white);
}

.wedding-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--cream);
}

.wedding-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    text-align: left;
}

.wedding-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.wedding-features i {
    color: var(--accent-gold);
    font-size: 20px;
}

/* ===================================
   Testimonials Section
   =================================== */

.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, #faf7f2 0%, #e8dfd0 100%);
}

.testimonial-slider {
    padding: 40px 0 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    padding: 50px 40px;
    margin: 0 10px;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
    justify-content: center;
}

.testimonial-rating i {
    color: var(--accent-gold);
    font-size: 20px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 35px;
    text-align: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--dark-green);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: #888;
}

.swiper-pagination-bullet {
    background: var(--accent-gold);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* ===================================
   Instagram Section
   =================================== */

.instagram {
    padding: 120px 0;
    background: var(--cream);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    font-size: 48px;
    color: white;
}

.instagram-cta {
    text-align: center;
}

/* ===================================
   Contact Section
   =================================== */

.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #faf7f2 0%, #e8dfd0 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: var(--dark-green);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 20px;
}

.contact-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 5px;
}

.contact-text p,
.contact-text a {
    font-size: 15px;
    color: #666;
}

.contact-text a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--deep-black);
    background: #fafafa;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: white;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    display: block;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--deep-black) 100%);
    color: var(--cream);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent-gold);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-gold);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--accent-gold);
    margin-top: 3px;
}

.footer-contact a:hover {
    color: var(--accent-gold);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    margin-bottom: 30px;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin-bottom: 5px;
}

.footer-bottom i {
    color: var(--accent-gold);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .hero-title {
        font-size: 60px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(15, 40, 24, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 100px 40px;
        gap: 30px;
        transition: right var(--transition-smooth);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 14px 32px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-features,
    .wedding-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .gallery-grid,
    .instagram-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 85px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
.main-logo{
    height:70px;
    width:auto;
    object-fit:contain;
}


.footer-main-logo{
    width:180px;
    height:auto;
    object-fit:contain;
}

.main-logo{
    height:75px;
    width:auto;
    object-fit:contain;
}

.footer-main-logo{
    width:190px;
    height:auto;
    object-fit:contain;
}
/* FIX SERVICES SECTION */

.services *{
    visibility: visible !important;
    opacity: 1 !important;
}

.services{
    position: relative;
    z-index: 1;
}

.service-card h3{
    color:#0f2818 !important;
}

.service-list li{
    color:#222 !important;
}

.service-link{
    color:#D4AF37 !important;
}

.service-icon{
    background:linear-gradient(135deg,#D4AF37,#b8860b);
}

/* ===================================
   Gallery Filter Buttons
=================================== */

.gallery-filters{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    margin-top:40px;
    margin-bottom:50px;
}

.gallery-btn{
    padding:14px 28px;
    border:none;
    border-radius:50px;
    background:white;
    color:#0f2818;
    font-weight:600;
    cursor:pointer;
    transition:0.4s ease;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.gallery-btn:hover{
    background:#D4AF37;
    color:white;
    transform:translateY(-3px);
}

.gallery-btn.active{
    background:linear-gradient(135deg,#D4AF37,#b8860b);
    color:white;
}

/* FILTER ANIMATION */

.gallery-item.hide{
    display:none;
}
