@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --primary: #B89445;
    --primary-hover: #A27D32;
    --primary-light: #D8C08A;
    --bg: #FAF9F4;
    --bg-secondary: #F5F0E5;
    --surface: #FFFFFF;
    --surface-gold: #F3E8CF;
    --text-primary: #2A2118;
    --text-secondary: #6E655A;
    --text-light: #FFFFFF;
    --border: #E4D8BE;
    --border-light: #EEE7D8;
    --shadow-sm: 0 4px 16px rgba(42, 33, 24, 0.08);
    --shadow-md: 0 10px 30px rgba(42, 33, 24, 0.12);
    --shadow-lg: 0 20px 50px rgba(42, 33, 24, 0.16);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 20px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 72px;
    --space-3xl: 96px;
}

/* 1. GLOBAL RESET & BASE STYLES */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 2. HEADER / NAVIGATION */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    transition: height 0.3s ease;
}

.header.scrolled .header-inner {
    height: 64px;
}

.logo {
    height: 92px;
}
.logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

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

.nav-links a.active {
    color: var(--primary);
    font-weight: 500;
}

.nav-cta {
    background-color: var(--primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 14px;
    transition: background-color 0.3s ease !important;
}

.nav-cta:hover {
    background-color: var(--primary-hover);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
}

.hamburger svg {
    width: 28px;
    height: 28px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

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

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

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

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--surface);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 100px 24px 40px;
}

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

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
}

.mobile-nav-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
}

.mobile-nav-close svg {
    width: 28px;
    height: 28px;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-links li a {
    display: block;
    padding: 12px 0;
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-links li a:hover {
    color: var(--primary);
}

.mobile-nav-cta {
    margin-top: 24px;
    text-align: center;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(42, 33, 24, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.mobile-nav .nav-links a {
    font-size: 20px;
    padding: 8px 0;
    display: block;
    width: 100%;
}

/* 3. HERO SECTION */
.hero {
    padding-top: 100px;
    padding-bottom: var(--space-2xl);
}

.hero-container {
    position: relative;
}

.hero-image-wrapper {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    height: 560px;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(42,33,24,0.15), rgba(42,33,24,0.55));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 48px;
    color: white;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.15;
    color: white;
    margin-bottom: 16px;
    font-weight: 600;
}

.hero-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    max-width: 480px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    display: inline-block;
}

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

.btn-secondary {
    background-color: rgba(255,255,255,0.15);
    color: white;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 14px 32px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
    transition: background-color 0.3s ease;
    cursor: pointer;
    text-align: center;
    font-weight: 500;
    font-size: 15px;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.25);
}

/* 4. FLOATING STATS */
.floating-stat {
    position: absolute;
    background-color: var(--surface);
    padding: 14px 20px;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.floating-stat .stat-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
}

.floating-stat .stat-label {
    font-size: 12px;
    color: var(--text-secondary);
}

.floating-stat .stat-icon {
    width: 36px;
    height: 36px;
    background-color: var(--surface-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.floating-stat--left {
    bottom: 24px;
    left: -16px;
}

.floating-stat--right {
    top: 300px;
    right: -16px;
}

.floating-stat--top-right {
    top: -12px;
    right: 40px;
}

/* 5. TRUST STRIP */
.trust-strip {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
}

.trust-strip-inner {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.trust-icon {
    color: var(--primary);
    font-size: 16px;
}

/* 6. CELEBRATE EVERY OCCASION (Categories) */
.section {
    padding: var(--space-3xl) 0;
}

.section--no-pt {
    padding-top: 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    background-color: var(--surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-card-image {
    height: 180px;
    overflow: hidden;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-card-image img {
    transform: scale(1.05);
}

.category-card-body {
    padding: 20px;
}

.category-card-body h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.category-card-body p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* 7. FEATURED EVENT SHOWCASE */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.showcase-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 360px;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.5s ease;
}

.showcase-card:hover img {
    transform: scale(1.05);
}

.showcase-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42,33,24,0.7), transparent);
}

.showcase-card-content {
    position: absolute;
    bottom: 32px;
    left: 32px;
    color: white;
    z-index: 2;
}

.showcase-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 500;
}

.showcase-card-content a {
    color: var(--primary-light);
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.showcase-card-content a:hover {
    color: white;
}

/* 8. SERVICES SECTION */
.services-section {
    background-color: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-item {
    background-color: var(--surface);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background-color: var(--surface-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.service-icon svg, .service-icon i {
    width: 24px;
    height: 24px;
}

.service-item h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.service-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* 9 & 10. MASONRY GALLERIES (Birthday / Wedding) */
.masonry-gallery {
    column-count: 3;
    column-gap: 20px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

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

.masonry-item-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(42,33,24,0);
    transition: background-color 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.masonry-item:hover .masonry-item-overlay {
    background-color: rgba(42,33,24,0.4);
}

.masonry-item-title {
    color: white;
    font-size: 15px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.masonry-item:hover .masonry-item-title {
    opacity: 1;
    transform: translateY(0);
}

/* 11. RECENT CELEBRATIONS (Filterable Gallery) */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background-color: var(--surface);
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.celebrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.celebration-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--surface);
    border: 1px solid var(--border-light);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.celebration-card.hidden {
    opacity: 0;
    transform: scale(0.95);
    position: absolute;
    pointer-events: none;
}

.celebration-card-image {
    height: 240px;
    overflow: hidden;
}

.celebration-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.celebration-card:hover .celebration-card-image img {
    transform: scale(1.05);
}

.celebration-card-body {
    padding: 16px;
}

.celebration-card-body h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.celebration-card-body span {
    font-size: 13px;
    color: var(--text-secondary);
}

/* 12. WHY CHOOSE US */
.why-section {
    background-color: var(--bg-secondary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background-color: var(--surface);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.why-card-icon {
    width: 52px;
    height: 52px;
    background-color: var(--surface-gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
}

.why-card-icon svg, .why-card-icon i {
    width: 28px;
    height: 28px;
}

.why-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.why-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 13. PACKAGES / PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background-color: var(--surface);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border-light);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border-color: var(--primary);
    background-color: var(--surface-gold);
    box-shadow: var(--shadow-sm);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 999px;
}

.pricing-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.pricing-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.pricing-amount span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i, .pricing-features li svg {
    color: var(--primary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.pricing-card .btn-primary {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* 14. TESTIMONIALS */
.testimonials-section {
    background-color: var(--bg);
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 33.333%;
    padding: 0 12px;
    box-sizing: border-box;
}

.testimonial-card-inner {
    background-color: var(--surface);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border-light);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 16px;
    display: flex;
    gap: 4px;
}

.star-filled {
    fill: var(--primary);
    color: var(--primary);
    width: 18px;
    height: 18px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--surface-gold);
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-author-role {
    font-size: 13px;
    color: var(--text-secondary);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    align-items: center;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background-color: var(--surface);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.slider-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0 16px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* 15. CTA SECTION */
.cta-section {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin: 0 auto;
    max-width: 1240px;
}

.cta-container-wrap {
    padding: 0 24px;
    margin-bottom: var(--space-3xl);
}

.cta-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(42,33,24,0.65);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    color: white;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    margin-bottom: 16px;
    font-weight: 500;
}

.cta-content p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 520px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 14px 28px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

/* 16. CONTACT FORM */
.contact-section {
    background-color: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 16px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-item i,
.contact-detail-item svg {
    color: var(--primary);
    width: 22px;
    height: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-detail-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text-primary);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background-color: var(--surface);
    outline: none;
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(184,148,69,0.1);
}

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

.form-group .error-message {
    color: #c0392b;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
    border-color: #c0392b;
}

.form-group.has-error .error-message {
    display: block;
}

.form-submit-btn {
    width: 100%;
    margin-top: 10px;
}

/* 17. WHATSAPP FLOATING BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: white;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background-color: #128C7E;
}

.whatsapp-float i, .whatsapp-float svg {
    width: 20px;
    height: 20px;
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    z-index: 998;
    transition: all 0.3s ease;
    display: none;
}

.back-to-top:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* 18. FOOTER */
.footer {
    background-color: #2A2118;
    color: rgba(255,255,255,0.8);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 22px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 320px;
}

.footer-col h4 {
    color: white;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* 19. SCROLL REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: none;
}

.reveal.revealed {
    opacity: 1;
    transform: none;
}

/* 21. UTILITY CLASSES */
.text-center {
    text-align: center;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* 20. RESPONSIVE BREAKPOINTS */
@media (max-width: 1199px) {
    /* Tablet */
    .categories-grid, .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .masonry-gallery {
        column-count: 2;
    }
    
    .celebrations-grid, .why-grid, .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        min-width: 50%;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    /* Mobile */
    .header-inner {
        height: 64px;
    }
    
    .nav-links, .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero {
        padding-top: 84px;
    }
    
    .hero-content {
        padding: 32px 24px;
        align-items: center;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .floating-stat {
        position: static;
        flex-direction: row;
        margin-top: 16px;
        gap: 12px;
        width: 100%;
        justify-content: center;
    }
    
    .hero-container {
        display: flex;
        flex-direction: column;
    }
    
    .trust-strip-inner {
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 24px;
        justify-content: flex-start;
        padding-bottom: 8px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .trust-strip-inner::-webkit-scrollbar {
        display: none;
    }
    
    .trust-item {
        white-space: nowrap;
    }
    
    .categories-grid, .services-grid, .celebrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-grid, .why-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-card {
        min-height: 280px;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .cta-content {
        padding: var(--space-xl) var(--space-md);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .whatsapp-float a {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    
    .whatsapp-float a span.whatsapp-text {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Small Mobile */
    .categories-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 16px;
        -ms-overflow-style: none;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
    }
    
    .categories-grid::-webkit-scrollbar {
        display: none;
    }
    
    .category-card {
        min-width: 240px;
        scroll-snap-align: start;
    }
    
    .masonry-gallery {
        column-count: 2;
        column-gap: 12px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .celebrations-grid {
        grid-template-columns: 1fr;
    }
}
/* DECORATIONS CAROUSEL */
.carousel-wrap { position: relative; }

.categories-grid.is-carousel {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    gap: 24px;
    padding: 4px 4px 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}
.categories-grid.is-carousel::-webkit-scrollbar { display: none; }
.categories-grid.is-carousel.dragging { cursor: grabbing; }

.categories-grid.is-carousel .category-card {
    flex: 0 0 calc((100% - 72px) / 4);
    scroll-snap-align: start;
}

.carousel-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-primary);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 5;
    box-shadow: var(--shadow-sm);
    transition: all .3s ease;
}
.carousel-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.carousel-prev { left: -20px; }
.carousel-next { right: -20px; }

@media (max-width: 1199px) {
    .categories-grid.is-carousel .category-card { flex: 0 0 calc((100% - 48px) / 3); }
}
@media (max-width: 767px) {
    .categories-grid.is-carousel .category-card { flex: 0 0 calc((100% - 24px) / 2); }
    .carousel-prev { left: 0; }
    .carousel-next { right: 0; }
}
@media (max-width: 480px) {
    .categories-grid.is-carousel .category-card { flex: 0 0 82%; min-width: 0; }
}