/**
 * Wedding Yantra Events - Main Stylesheet
 * Premium wedding and events website
 */

/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4a574;
    --secondary-color: #2c5f5d;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --heading-display-font: "DupincelSmallTest-RegularItalic", "Playfair Display", serif;
}

@font-face {
    font-family: "DupincelSmallTest-RegularItalic";
    src: local("DupincelSmallTest-RegularItalic");
    font-style: italic;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Dupincel";
    src: local("Dupincel"), local("DupincelSmallTest-RegularItalic");
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
}

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

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

ul {
    list-style: none;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section {
    padding: 5rem 0;
}

.section-title {
    font-family: var(--heading-display-font);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* Section heading font override across the website */
.section-title,
.what-we-do-title,
.testimonials-split-title,
.why-choose-title,
.newsletter-title,
.contact-split-title,
.portfolio-heading {
    font-family: var(--heading-display-font) !important;
    font-style: italic !important;
    font-weight: 400 !important;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.section-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: #c49563;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ========================================
   HEADER (two-row)
   ======================================== */

.site-header {
  position: relative;
  z-index: 9999;
  width: 100%;
}

/* ---------- DESKTOP ONLY (>= 992px) ---------- */
@media (min-width: 992px) {
  .site-header .top-bar {
    background: #ffffff;
    border-bottom: 1px solid #eee;
  }

  .site-header .top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    padding: 20px 60px;
    gap: 20px;
    max-width: 100%;
    width: 100%;
  }

  .site-header .top-left {
    flex-shrink: 0;
  }

  .site-header .top-right {
    flex-shrink: 0;
  }

  .site-header .top-left .brand {
    font-family: "Dupincel", "DupincelSmallTest-RegularItalic", "Playfair Display", serif;
    font-style: normal;
    font-weight: 400;
    color: #2c2c2c;
    font-size: 31px;
    letter-spacing: 0.2px;
    line-height: 1;
  }

  .site-header .top-center {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex: 1;
    min-width: 0;
  }

  .site-header .top-center .info-item {
    display: flex;
    align-items: center;
    gap: 9px;
  }

  .site-header .top-center .info-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1.2;
  }

  .site-header .top-center .meta-label {
    font-family: "Poppins", sans-serif;
    font-size: 8.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #aaa;
  }

  .site-header .top-center .meta-value {
    font-family: "DupincelSmallTest-RegularItalic", "Playfair Display", serif;
    font-style: italic;
    font-size: 15px;
    line-height: 1;
    color: #2f2f2f;
    letter-spacing: 0.1px;
  }

  .site-header .top-center .info-location .meta-value {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
  }

  .site-header .top-center .info-phone .meta-value {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0;
    color: #3a3a3a;
  }

  .site-header .icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background-color: #c8935a;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    opacity: 0.9;
  }

  .site-header .icon.location { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z"/></svg>'); }
  .site-header .icon.clock { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M12 1.75A10.25 10.25 0 1 0 22.25 12 10.26 10.26 0 0 0 12 1.75Zm.75 5.5h-1.5v5.06l3.94 2.37.78-1.28-3.22-1.93Z"/></svg>'); }
  .site-header .icon.phone { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M19.95 15.39a1 1 0 0 0-.73-.29l-3.41.07a1 1 0 0 0-.87.57l-.86 1.9a15.46 15.46 0 0 1-7.72-7.72l1.9-.86a1 1 0 0 0 .57-.87l.07-3.41a1 1 0 0 0-.29-.73L6.09 2.55a1 1 0 0 0-1.01-.24 3.85 3.85 0 0 0-2.58 3.66A18 18 0 0 0 20 21.5a3.85 3.85 0 0 0 3.66-2.58 1 1 0 0 0-.24-1.01Z"/></svg>'); }

  .site-header .quote-link {
    font-family: "DupincelSmallTest-RegularItalic", "Playfair Display", "Georgia", serif;
    font-style: italic;
    font-weight: 400;
    color: #2d2d2d;
    text-decoration: none;
    font-size: 22px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    position: relative;
    padding-bottom: 4px;
  }

  .site-header .quote-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1.5px;
    background: #c8935a;
    border-radius: 1px;
  }

  .site-header .quote-link:hover {
    color: #c8935a;
  }

  .site-header .main-nav {
    background: #767b89;
  }

  .site-header .main-nav ul {
    display: flex;
    justify-content: center;
    gap: 46px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 70px;
    align-items: center;
  }

  .site-header .main-nav a {
    display: inline-flex;
    align-items: center;
    height: 70px;
    padding: 25px 0;
    font-family: "Mulish", "Poppins", sans-serif;
    font-style: normal;
    font-weight: 300;
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    opacity: 0.95;
  }

  .site-header .main-nav a:hover {
    color: #e6a36f;
  }

  .site-header .main-nav a.active {
    color: #ffffff;
  }

  .site-header .main-nav a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background-color: #e6a36f;
  }

  .site-header .mobile-menu-toggle {
    display: none;
  }
}

/* ---------- MOBILE ONLY (<= 991px) ---------- */
@media (max-width: 991px) {
  .site-header .top-bar {
    background: #ffffff;
    border-bottom: 1px solid #eee;
  }

  .site-header .top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 20px;
  }

  .site-header .top-left .brand {
    font-weight: 600;
    color: #222;
    font-size: 16px;
  }

  .site-header .top-center {
    display: none;
  }

  .site-header .top-right .quote-link {
    color: #222;
    text-decoration: none;
    font-weight: 500;
  }

  .site-header .main-nav {
    display: none;
  }

  .site-header .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    flex-shrink: 0;
  }

  .site-header .mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #222;
    border-radius: 1px;
  }
}

/* ========================================
   SIDEBAR MENU
   ======================================== */

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--white);
    z-index: 1003;
    transition: transform 0.4s ease;
    transform: translateX(-100%);
    display: flex;
    flex-direction: column;
    box-shadow: 5px 0 25px rgba(0,0,0,0.1);
}

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

.sidebar-header {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1rem;
}

.sidebar-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 5px;
    line-height: 1;
    transition: color 0.3s ease;
}

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

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin: 0;
}

.sidebar-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    background: #f9f9f9;
    color: var(--primary-color);
    padding-left: 2.5rem;
}

.sidebar-link .arrow {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 300;
}

.sidebar-link:hover .arrow {
    color: var(--primary-color);
}

.sidebar-footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.sidebar-footer p {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

/* ---------- MOBILE ONLY (<=768px): Dreama-style header & menu ---------- */
@media (max-width: 768px) {
    .header-mobile {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 64px;
        background: #ffffff;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .header-mobile .top-bar {
        width: 100%;
        height: 64px;
        border-bottom: none;
        background: transparent;
    }

    .header-mobile .top-bar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        height: 64px;
        width: 100%;
    }

    .header-mobile .top-left {
        order: 1;
    }

    .header-mobile .top-left .brand {
        font-weight: 600;
        font-size: 18px;
        color: #222;
    }

    .header-mobile .top-center,
    .header-mobile .top-right {
        display: none;
    }

    .header-mobile .mobile-menu-toggle {
        order: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        width: 24px;
        height: 24px;
        padding: 0;
        border: none;
        background: none;
        cursor: pointer;
    }

    .header-mobile .mobile-menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: #c79b6a;
        border-radius: 1px;
    }

    .header-mobile .main-nav {
        display: none !important;
    }

    .hero,
    .hero-section {
        margin-top: 64px;
    }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1050;
        display: none;
    }

    .mobile-overlay.active {
        display: block;
    }

    .sidebar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #ffffff;
        z-index: 1100;
        transition: right 0.35s ease;
        padding-top: 72px;
        left: auto;
        transform: none;
        max-width: none;
    }

    .sidebar-menu.open {
        right: 0;
    }

    .sidebar-menu .sidebar-header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 18px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        flex-direction: row;
    }

    .sidebar-menu .sidebar-header .sidebar-logo {
        font-size: 18px;
        font-weight: 600;
        color: #c79b6a;
    }

    .sidebar-menu .sidebar-close {
        position: static;
        font-size: 22px;
        color: #777;
        flex-shrink: 0;
    }

    .sidebar-menu .sidebar-nav ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .sidebar-menu .sidebar-nav ul li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        font-size: 16px;
        font-weight: 500;
        color: #222;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .sidebar-menu .sidebar-nav ul li:last-child {
        border-bottom: none;
    }

    .sidebar-menu .sidebar-nav ul li::after {
        content: "›";
        font-size: 20px;
        color: #bbb;
    }

    .sidebar-menu .sidebar-nav ul li:active {
        background: rgba(0, 0, 0, 0.03);
    }

    .sidebar-menu .sidebar-link {
        color: #222;
        padding: 0;
        flex: 1;
        display: flex;
        align-items: center;
        border-bottom: none;
    }

    .sidebar-menu .sidebar-link .arrow {
        display: none;
    }

    body {
        -webkit-font-smoothing: antialiased;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    height: 82vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    background-size: cover;
    background-position: center;
    margin-top: 0;
    overflow: hidden;
}

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

.hero-video {
    object-fit: cover;
    object-position: center;
}

.hero-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 93, 0.7) 0%, rgba(26, 26, 26, 0.5) 100%);
    z-index: 1;
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Hero center content animation */
.animate-hero {
    text-align: center;
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-title,
.hero-subtitle,
.hero-btn {
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 1.2s ease forwards;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.6s;
}

.hero-btn {
    animation-delay: 1s;
}

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

@keyframes heroFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* Hero "Event" word staggered reveal */
.hero-event-word {
    display: inline;
}

.hero-char-e,
.hero-char-vent {
    opacity: 0;
    transform: translateY(-20px);
    animation: heroEventReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    display: inline;
}

.hero-char-vent {
    animation-delay: 0.15s;
}

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

/* Hero Image with Transform Effects */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: matrix3d(1.10977, 5.19e-05, 0, 0, -5.19e-05, 1.10977, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform-origin: center center;
    max-width: none;
    box-sizing: border-box;
    border-style: none;
    user-select: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

/* Fallback for browsers that don't support matrix3d */
@supports not (transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)) {
    .hero-bg-image {
        transform: matrix(1.10977, 5.19e-05, -5.19e-05, 1.10977, 0, 0);
    }
}

/* Responsive adjustments for hero background image */
@media (max-width: 1440px) {
    .hero-bg-image {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .hero-bg-image {
        transform: scale(1.05);
    }
}

/* Hero slider override: reference-like full media carousel */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease;
}

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

.hero-slide .hero-overlay {
    background: rgba(20, 20, 20, 0.45);
}

.hero-slide .hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide.is-image .hero-bg-image {
    transform: scale(1) !important;
}

.hero-slide.is-image.active .hero-bg-image {
    animation: heroKenBurns 14s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.08);
    }
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 52px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.25s ease, transform 0.25s ease;
}

.hero-nav:hover {
    color: #f2f2f2;
    transform: translateY(-50%) scale(1.03);
}

.hero-prev {
    left: 16px;
}

.hero-next {
    right: 16px;
}

.hero .animate-hero {
    animation: none;
}

@media (max-width: 768px) {
    .hero-nav {
        font-size: 38px;
    }
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: auto;
}

/* ========================================
   WHAT WE DO SECTION (NEW DESIGN)
   ======================================== */

.what-we-do-section {
    background: var(--white);
    padding: 5rem 0;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 5rem;
    align-items: center;
}

.what-we-do-intro {
    position: relative;
    max-width: 460px;
}

.what-we-do-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 1.25rem;
    text-align: left;
}

.what-we-do-tagline {
    font-size: 1rem;
    line-height: 1.75;
    color: #5f5f5f;
    margin-bottom: 1.75rem;
}

.what-we-do-emphasis {
    color: #3f3f3f;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #d4a574; /* Match icon color */
    text-underline-offset: 3px;
}

.signature {
    margin-top: 1.5rem;
}

.signature-text {
    font-family: "Brush Script MT", "Segoe Script", "Apple Chancery", cursive;
    font-size: 1.4rem;
    color: #e3b48d;
    letter-spacing: 0.5px;
}

.what-we-do-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4rem;
    row-gap: 3.5rem;
    align-items: start;
    margin-top: 1rem;
}

.service-mini-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    width: 100%;
    max-width: none;
    box-shadow: none;
}

.service-mini-card:hover {
    border-color: transparent;
    transform: none;
    box-shadow: none;
}

.service-mini-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff5ee;
    border-radius: 8px;
    color: #d4a574;
    margin-top: 2px;
}

.service-mini-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.5;
}

.service-mini-content h4 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.service-mini-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #7a7a7a;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
    background: var(--light-color);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-description {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   GALLERY SECTIONS
   ======================================== */

.container-full {
    width: 100%;
    padding: 0;
}

.gallery-delivered {
    background: var(--white);
    padding: 5rem 0;
}

/* Section gallery: 4x2 desktop grid (e.g. How we Delivered) */
.section-gallery-square-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.section-gallery-square-item {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.section-gallery-square-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(199, 155, 106, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

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

.section-gallery-square-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .section-gallery-square-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
}

@media (max-width: 576px) {
    .section-gallery-square-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
}

.gallery-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.gallery-masonry-grid {
    column-count: 4;
    column-gap: 4px;
    width: 100%;
}

.gallery-masonry-item {
    break-inside: avoid;
    margin-bottom: 4px;
    width: 100%;
    /* Remove aspect-ratio to let images fill naturally */
    background: transparent; /* Remove gray background */
}

.gallery-masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    /* Remove object-fit: cover to allow natural height */
}

/* Remove hover effects if requested, or keep subtle */
.gallery-masonry-item:hover img {
    transform: none; /* Remove zoom if "No hover effects" is strict, or keep subtle */
    opacity: 0.9;
}

/* Remove overlay if "No cards" implies clean image only */
.gallery-masonry-overlay {
    display: none; 
}

/* Responsive */
@media (max-width: 968px) {
    .gallery-masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 640px) {
    .gallery-masonry-grid {
        column-count: 1;
    }
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.placeholder-image svg {
    opacity: 0.4;
}

/* Old Gallery Preview Styles */
.gallery-preview {
    background: var(--white);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

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

.gallery-title {
    color: var(--white);
    font-weight: 500;
    font-size: 1.1rem;
}

.gallery-item.placeholder {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    opacity: 0.5;
}

/* Gallery Full Page */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    color: var(--white);
    margin-top: 0;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.gallery-full {
    background: var(--light-color);
    min-height: 60vh;
}

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

/* Portfolio events gallery (wedding_events, no hero) */
.portfolio-intro {
    background: #f6f6f6;
    padding: 6.2rem 0 2rem;
    text-align: center;
}

.portfolio-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #2a2a2a;
    margin: 0 0 0.5rem;
    letter-spacing: 0;
}

.portfolio-subtitle {
    margin: 0;
    min-height: 0.9rem;
}

.portfolio-filters {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin: 0.9rem auto 0;
    padding: 0;
    list-style: none;
}

.portfolio-filters li {
    font-size: 0.56rem;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    color: #8f8f8f;
    background: #efefef;
    border: 1px solid #e9e9e9;
    padding: 0.45rem 0.95rem;
    line-height: 1.1;
}

.portfolio-filters li.active {
    background: #ead5bc;
    color: #5b4a36;
}

.portfolio-gallery .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem 0.75rem;
    max-width: 840px;
    margin: 0 auto;
}

.portfolio-event-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: none;
    cursor: pointer;
}

.portfolio-event-card:hover {
    box-shadow: none;
}

.portfolio-card-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #ececec;
}

.portfolio-card-image-placeholder {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f5f0eb 0%, #e8e0d8 100%);
}

.portfolio-card-image-wrap.image-failed .portfolio-card-image {
    display: none;
}

.portfolio-card-image-wrap.image-failed .portfolio-card-image-placeholder {
    display: flex;
}

.portfolio-placeholder-icon {
    font-size: 3rem;
    color: rgba(180, 150, 120, 0.4);
    font-family: Georgia, serif;
}

.portfolio-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: none;
}

.portfolio-event-card:hover .portfolio-card-image {
    transform: none;
}

.portfolio-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: none;
    pointer-events: none;
}

.portfolio-event-card:hover .portfolio-card-overlay {
    background: transparent;
}

.portfolio-card-body {
    padding: 0.75rem 0 0;
    text-align: center;
}

.portfolio-couple-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-style: italic;
    font-weight: 400;
    color: #2e2e2e;
    margin: 0 0 0.32rem;
}

.portfolio-location {
    font-size: 0.66rem;
    color: #8e8e8e;
    margin: 0 0 0.14rem;
}

.portfolio-event-date {
    font-size: 0.66rem;
    color: #8f8f8f;
    margin: 0;
    opacity: 1;
}

@media (max-width: 992px) {
    .portfolio-filters {
        display: none;
    }
    .portfolio-gallery .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: none;
        gap: 1.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .portfolio-gallery .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .portfolio-heading {
        font-size: 2.2rem;
    }
}

.empty-gallery {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 12px;
}

.empty-gallery h2 {
    font-size: 2rem;
    margin: 1rem 0;
    color: var(--dark-color);
}

.empty-gallery p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-caption {
    text-align: center;
    color: var(--white);
    padding: 1rem;
    font-size: 1.1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    transition: var(--transition);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ========================================
   EVENTS SECTION (WHEN AND WHERE)
   ======================================== */

.when-where-section {
    background: #f6f6f6;
    padding: 5.5rem 0 5rem;
}

.when-where-section .section-title {
    text-transform: none;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 0.35rem;
    line-height: 1.1;
}

.when-where-section .section-subtitle {
    font-size: 0.72rem;
    color: #8f8f8f;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 2.2rem;
    font-weight: 400;
}

.wedding-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 980px;
    margin: 0 auto 2.6rem;
}

.wedding-event-card {
    background: #f6f6f6;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: none;
    padding-bottom: 0;
    cursor: pointer;
}

.wedding-event-card:hover {
    transform: none;
    box-shadow: none;
}

.wedding-event-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #ececec;
    margin-bottom: 1.05rem;
}

.wedding-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.wedding-event-card:hover .wedding-event-image img {
    transform: none;
}

.event-placeholder-image {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0; /* Simple gray box if no image */
}

.wedding-event-info {
    padding: 0.15rem 0.35rem 0;
    text-align: center;
}

.wedding-couple-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.14rem;
    font-weight: 400;
    font-style: italic;
    color: #2b2b2b;
    line-height: 1.25;
    margin-bottom: 0.42rem;
}

.wedding-location {
    font-size: 0.78rem;
    color: #868686;
    margin-bottom: 0.2rem;
    font-weight: 400;
    line-height: 1.35;
}

.wedding-date {
    font-size: 0.76rem;
    color: #8f8f8f;
    font-weight: 400;
    line-height: 1.3;
}

.btn-view-more {
    background-color: #e8d0b3;
    color: #6d5a45;
    border: none;
    font-size: 0.55rem;
    letter-spacing: 2px;
    padding: 0.82rem 2.35rem;
    text-transform: uppercase;
    border-radius: 0;
    font-weight: 500;
    box-shadow: none;
}

.btn-view-more:hover {
    background-color: #dcc09f;
    transform: none;
    box-shadow: none;
}

/* Old Events Section Styles */
.events-section {
    background: var(--secondary-color);
    color: var(--white);
}

.events-section .section-title {
    color: var(--white);
}

.events-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.events-content {
    max-width: 800px;
    margin: 0 auto;
}

.event-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.event-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.event-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.event-features li {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-weight: 500;
}

/* ========================================
   TESTIMONIALS SECTION (NEW SPLIT DESIGN)
   ======================================== */

.testimonials-split {
    padding: 0;
    background: var(--white);
}

.testimonials-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    height: 500px;
}

.testimonials-image-side {
    position: relative;
    background: #0f3f46;
    overflow: hidden;
    height: 100%;
}

.testimonial-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 1;
}

.testimonial-placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f3f46;
}

.testimonial-logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}

.testimonials-content-side {
    background: #0f3f46;
    padding: 3.75rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    position: relative;
}

.testimonials-split-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
}

.testimonial-slider {
    margin-bottom: 2rem;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-quote {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 300;
}

.testimonial-author-info {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.testimonial-event {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.testimonial-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Old Testimonials Styles */
.testimonials {
    background: var(--light-color);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.testimonial-stars {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--dark-color);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========================================
   WHY CHOOSE US SECTION (NEW DESIGN)
   ======================================== */

.why-choose-new {
    background: var(--white);
    padding: 5rem 0;
}

.why-choose-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 0.5rem;
}

.why-choose-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 0.5px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.why-choose-card {
    text-align: left;
}

.why-choose-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.why-choose-card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
}

/* Old Why Choose Styles */
.why-choose {
    background: var(--white);
}

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

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

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   SPLIT SECTION (Full Width Image/Content)
   ======================================== */

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    align-items: stretch;
}

.split-content {
    background: var(--secondary-color);
    color: var(--white);
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content .section-title {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.split-content .section-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.split-content .btn {
    align-self: flex-start;
    margin-top: 1rem;
}

.split-content .btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.split-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.split-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-image-placeholder svg {
    opacity: 0.3;
}

/* ========================================
   NEWSLETTER/CTA SECTION (NEW DESIGN)
   ======================================== */

.newsletter-section {
    padding: 0;
    background: var(--white);
    margin-bottom: 5rem;
}

.newsletter-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.newsletter-left {
    background: #5f6b74;
    background: linear-gradient(135deg, #5f6b74 0%, #4a5660 100%);
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.newsletter-category {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 2rem;
    font-style: italic;
}

.newsletter-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.newsletter-right {
    background: #f4f5f5;
    padding: 5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form-wrapper {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.newsletter-form-title {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

.newsletter-icon {
    margin-bottom: 2rem;
    opacity: 0.6;
}

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

.newsletter-form-group {
    width: 100%;
}

.newsletter-form-group input {
    width: 100%;
    padding: 1rem;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--dark-color);
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.newsletter-form-group input::placeholder {
    color: #999;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.newsletter-form-group input:focus {
    outline: none;
    border-bottom-color: #5f6b74;
}

.newsletter-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: #5f6b74;
    color: var(--white);
    border: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-family: 'Poppins', sans-serif;
}

.newsletter-submit-btn:hover {
    background: #4a5660;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Old CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c49563 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--light-color);
    transform: translateY(-3px);
}

/* ========================================
   CONTACT SECTION (NEW SPLIT DESIGN)
   ======================================== */

.contact-split {
    padding: 0;
    background: var(--white);
}

.contact-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.contact-image-side {
    position: relative;
    overflow: hidden;
    background: #6b7680;
}

.contact-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6b7680 0%, #5a626c 100%);
}

.contact-content-side {
    background: #6b7680;
    background: linear-gradient(135deg, #6b7680 0%, #5f6b74 100%);
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.contact-split-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.contact-split-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.contact-description {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-description p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

/* Old Contact Styles */
.contact {
    background: var(--light-color);
}

/* ========================================
   CONTACT FORM WITH MAP SECTION
   ======================================== */

.contact-map-section {
    padding: 0;
    position: relative;
}

.contact-map-container {
    position: relative;
    height: 600px;
    width: 100%;
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.map-background iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) opacity(0.4);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.contact-form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 2;
    padding: 2rem;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 450px;
    width: 100%;
}

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

.contact-form-phone {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-style: italic;
    word-break: break-all;
}

.contact-form-tagline {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
}

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

.map-form-group {
    width: 100%;
}

.map-form-group input,
.map-form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--dark-color);
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
    resize: vertical;
}

.map-form-group input::placeholder,
.map-form-group textarea::placeholder {
    color: #999;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.map-form-group input:focus,
.map-form-group textarea:focus {
    outline: none;
    border-bottom-color: #5f6b74;
}

.map-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: #5f6b74;
    color: var(--white);
    border: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-family: 'Poppins', sans-serif;
    border-radius: 4px;
}

.map-submit-btn:hover {
    background: #4a5660;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--text-color);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-color);
    line-height: 1.7;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

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

/* ========================================
   FOOTER
   ======================================== */

/* ========================================
   FOOTER (NEW DESIGN)
   ======================================== */

.footer-new {
    background: #1a4548;
    background: linear-gradient(135deg, #1a4548 0%, #163d40 100%);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-weight: 300;
}

.footer-addresses {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

.footer-addresses p {
    font-size: 0.86rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

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

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-post {
    display: flex;
    gap: 1rem;
}

.post-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.post-content h5 {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
}

.post-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 300;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 1);
    padding-left: 5px;
}

.footer-bottom-new {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

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

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

.floating-contact-actions {
    position: fixed;
    inset: auto 0 24px 0;
    z-index: 10000;
    pointer-events: none;
}

.floating-contact-btn {
    position: absolute;
    bottom: 0;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    pointer-events: auto;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

.floating-whatsapp {
    left: 24px;
    background: #25d366;
}

.floating-call {
    right: 24px;
    background: #c8935a;
}

/* Old Footer Styles */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

/* ========================================
   MINIMAL GLOBAL MOTION
   ======================================== */

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
    .hover-lift {
        transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    }

    .hover-lift:hover {
        transform: translateY(-3px);
    }

    .hover-zoom {
        transition: transform 0.35s ease;
    }

    .hover-zoom:hover {
        transform: scale(1.03);
    }
}

@media (hover: none), (pointer: coarse) {
    .service-mini-card:hover,
    .service-card:hover,
    .wedding-event-card:hover,
    .portfolio-event-card:hover,
    .gallery-item:hover,
    .testimonial-card:hover,
    .why-choose-card:hover,
    .btn:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    .wedding-event-card:hover .wedding-event-image img,
    .portfolio-event-card:hover .portfolio-card-image,
    .gallery-item:hover img,
    .section-gallery-square-item:hover img {
        transform: none !important;
    }
}

/* ========================================
   GLOBAL TYPOGRAPHY REFINEMENT
   ======================================== */

body {
    font-size: 15px;
    line-height: 1.7;
}

.section-title {
    font-size: 2.15rem;
    margin-bottom: 0.7rem;
}

.section-subtitle {
    font-size: 0.82rem;
    line-height: 1.55;
    margin-bottom: 2.2rem;
    color: #8b8b8b;
}

.section-text {
    font-size: 0.96rem;
    line-height: 1.75;
    color: #4f4f4f;
}

.what-we-do-title,
.why-choose-title,
.testimonials-split-title,
.newsletter-title,
.contact-split-title,
.portfolio-heading {
    font-size: 2.2rem !important;
    line-height: 1.15 !important;
}

.split-content .section-title {
    font-size: 2.35rem;
}

.split-content .section-text {
    font-size: 0.98rem;
    line-height: 1.75;
}

.service-mini-content h4 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.service-mini-content p {
    font-size: 0.82rem;
    line-height: 1.65;
    -webkit-line-clamp: 2;
}

.why-choose-card-title {
    font-size: 0.98rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.why-choose-card-text {
    font-size: 0.88rem;
    line-height: 1.72;
    color: #6f6f6f;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

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

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .services-grid,
    .gallery-grid,
    .gallery-masonry {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

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

    .split-content {
        padding: 3rem 2rem;
    }

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

    .split-image {
        min-height: 400px;
    }

    /* What We Do Section Responsive */
    .what-we-do-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .what-we-do-intro {
        position: relative;
        top: 0;
    }

    .what-we-do-services {
        grid-template-columns: 1fr;
        justify-items: stretch;
    }

    .service-mini-card {
        max-width: none;
    }

    /* Gallery Masonry Responsive */
    /* Handled by column-count in main CSS */
    
    /* Wedding Events Responsive */
    .wedding-events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Testimonials Split Responsive */
    .testimonials-split-container {
        grid-template-columns: 1fr;
        height: auto;
    }

    .testimonials-image-side {
        min-height: 400px;
        height: 400px;
    }

    .testimonials-content-side {
        padding: 3rem 2rem;
    }

    .testimonials-split-title {
        font-size: 2rem;
    }

    /* Why Choose New Responsive */
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 2rem;
    }

    /* Newsletter Section Responsive */
    .newsletter-container {
        grid-template-columns: 1fr;
    }

    .newsletter-left {
        padding: 3rem 2rem;
        min-height: 300px;
    }

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

    .newsletter-right {
        padding: 3rem 2rem;
    }

    /* Contact Split Responsive */
    .contact-split-container {
        grid-template-columns: 1fr;
    }

    .contact-image-side {
        min-height: 400px;
    }

    .contact-content-side {
        padding: 3rem 2rem;
    }

    .contact-split-title {
        font-size: 2rem;
    }
}

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

    .section {
        padding: 3rem 0;
    }

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

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

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

    .btn {
        padding: 0.875rem 2rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    /* Gallery Masonry Mobile */
    /* Handled by column-count in main CSS */

    /* Wedding Events Mobile */
    .wedding-events-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials Mobile */
    .testimonials-image-side {
        min-height: 300px;
        height: 300px;
    }

    .testimonials-content-side {
        padding: 2rem 1.5rem;
    }

    .testimonials-split-title {
        font-size: 1.75rem;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    /* Why Choose Mobile */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-choose-title {
        font-size: 2rem;
    }

    /* Newsletter Mobile */
    .newsletter-left {
        padding: 2rem 1.5rem;
    }

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

    .newsletter-right {
        padding: 2rem 1.5rem;
    }

    /* Contact Split Mobile */
    .contact-image-side {
        min-height: 300px;
    }

    .contact-content-side {
        padding: 2rem 1.5rem;
    }

    .contact-split-title {
        font-size: 1.75rem;
    }

    .contact-description p {
        font-size: 0.9rem;
    }

    /* Contact Map Mobile */
    .contact-map-container {
        height: 500px;
    }

    .contact-form-card {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .contact-form-phone {
        font-size: 1.5rem;
    }

    /* Footer Responsive */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    /* Footer Mobile */
    @media (max-width: 640px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-bottom-links {
            justify-content: center;
            font-size: 0.7rem;
        }
    }
}

/* ========================================
   ABOUT PAGE
   ======================================== */

/* Breadcrumb */
.ab-breadcrumb {
    background: #fff;
    border-bottom: 1px solid #eeeeee;
    padding: 11px 0;
}
.ab-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    color: #999;
}
.ab-breadcrumb a {
    color: #999;
    text-decoration: none;
}
.ab-breadcrumb a:hover { color: var(--primary-color); }
.ab-breadcrumb-sep { color: #ccc; }

/* ---- Section 1: Who We Are ---- */
.ab-who-section {
    background: #fff;
    padding: 6rem 0;
}
.ab-who-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 90px;
    align-items: center;
}
.ab-who-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ---- Shared placeholder styles ---- */
.ab-img-placeholder {
    background: #f5f0eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #c8a882;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.ab-img-circle {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    flex-shrink: 0;
}
.ab-team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto;
}
.ab-img-placeholder--43 {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 6px;
}
.ab-img-placeholder--169 {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
}
.ab-img-placeholder--34 {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 6px;
}

/* ---- Text helpers ---- */
.ab-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}
.ab-body-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.925rem;
    color: #555;
    line-height: 1.88;
    margin-bottom: 1.2rem;
}
.ab-who-text .section-title {
    margin-bottom: 0.4rem;
}
.ab-feature-text .section-title {
    margin-bottom: 1.4rem;
}

/* ---- Section 2: Stats Counter ---- */
.ab-stats-section {
    position: relative;
    padding: 80px 0;
    background: #18110d;
    overflow: hidden;
}
.ab-stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(180, 130, 80, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(180, 130, 80, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.ab-stats-container { position: relative; z-index: 1; }
.ab-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.ab-stat-item {
    text-align: center;
    padding: 20px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
}
.ab-stat-item:last-child { border-right: none; }
.ab-stat-number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    margin-bottom: 10px;
}
.ab-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 4.2rem;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    letter-spacing: -2px;
}
.ab-stat-suffix {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: #fff;
    line-height: 1;
}
.ab-stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 10px;
}
.ab-stat-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.65;
    max-width: 210px;
    margin: 0 auto;
}

/* ---- Section 3: Team ---- */
.ab-team-section {
    background: #fff;
    padding: 6rem 0;
}
.ab-team-heading {
    margin-bottom: 3rem;
}
.ab-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
    justify-content: center;
    gap: 48px;
}
.ab-team-card {
    text-align: center;
}
.ab-team-name {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #2c2c2c;
    margin-top: 1.3rem;
    margin-bottom: 0.35rem;
}
.ab-team-role {
    font-family: 'Poppins', sans-serif;
    font-size: 11.5px;
    color: #bbb;
    letter-spacing: 0.5px;
}

/* ---- Section 4: Plan And Book ---- */
.ab-plan-section {
    background: #f5ede3;
    padding: 6rem 0;
}

/* ---- Section 5: Attention to Detail ---- */
.ab-detail-section {
    background: #fafafa;
    padding: 6rem 0;
}

/* ---- Section 6: Amazing Value ---- */
.ab-value-section {
    background: #fff;
    padding: 6rem 0;
}

/* ---- Shared feature grid (image + text) ---- */
.ab-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.ab-feature-grid--reverse {
    direction: rtl;
}
.ab-feature-grid--reverse > * {
    direction: ltr;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .ab-who-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .ab-who-image { justify-content: center; }
    .ab-img-circle { width: 260px; height: 260px; }
    .ab-feature-grid,
    .ab-feature-grid--reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }
    .ab-stats-grid {
        grid-template-columns: 1fr;
    }
    .ab-stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.09);
        padding: 32px 24px;
    }
    .ab-stat-item:last-child { border-bottom: none; }
    .ab-stat-number { font-size: 3.2rem; }
    .ab-team-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ============================================================
   WEDDING PHOTO GALLERY MODAL (.wm-*)
   iOS Photos-style fullscreen viewer
   ============================================================ */
.wm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  display: flex;
  flex-direction: column;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.wm-overlay.wm-visible {
  opacity: 1;
}
.wm-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  opacity: 0.8;
  transition: opacity 0.15s;
}
.wm-close:hover { opacity: 1; }
.wm-header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 3.5rem 0.5rem 1.25rem;
  color: #fff;
  gap: 1rem;
}
.wm-title { font-size: 0.9rem; opacity: 0.7; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wm-counter { font-size: 0.85rem; opacity: 0.55; white-space: nowrap; }
.wm-stage {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.wm-main-photo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.18s ease;
  user-select: none;
}
.wm-main-photo.wm-fade { opacity: 0; }
.wm-photo-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 0.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  pointer-events: none;
}
.wm-caption { color: #fff; font-size: 0.85rem; opacity: 0.85; }
.wm-index { color: #fff; font-size: 0.8rem; opacity: 0.5; }
.wm-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 5;
}
.wm-nav:hover { background: rgba(255,255,255,0.25); }
.wm-prev { left: 1rem; }
.wm-next { right: 1rem; }
.wm-thumbs-wrap {
  flex: 0 0 88px;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(0,0,0,0.4);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.wm-thumbs-wrap::-webkit-scrollbar { height: 4px; }
.wm-thumbs-wrap::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }
.wm-thumbs { display: flex; gap: 6px; flex-shrink: 0; }
/* Thumb wrapper (replaces direct .wm-thumb active state) */
.wm-thumb-wrap {
  position: relative;
  width: 66px;
  height: 66px;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: opacity 0.15s, border-color 0.15s;
  overflow: hidden;
}
.wm-thumb-wrap:hover { opacity: 0.8; }
.wm-thumb-wrap.wm-active { opacity: 1; border-color: #fff; }

.wm-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

/* Play badge on video thumbnails */
.wm-thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 1.2rem;
  pointer-events: none;
  border-radius: 2px;
}

/* YouTube iframe container */
.wm-video-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.wm-video-iframe {
  width: 100%;
  height: 100%;
  max-width: 900px;
  max-height: 506px;
  border: none;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .wm-thumbs-wrap { flex: 0 0 70px; }
  .wm-thumb { width: 54px; height: 54px; }
  .wm-nav { width: 36px; height: 36px; font-size: 1.4rem; }
  .wm-prev { left: 0.4rem; }
  .wm-next { right: 0.4rem; }
}
