* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-dark: linear-gradient(22deg,rgba(61, 70, 58, 1) 0%,rgba(108, 126, 101, 1) 50%);
    --green-mid: #4e6645;
    --green-light: #6b8a5e;
    --green-bg: #e8ede4;
    --gold: #c8a84b;
    --gold-light: #e2c97e;
    --white: #fff;
    --text-dark: #1e2a1a;
    --text-muted: #5a6b55;
    --radius: 8px;
    --font-inter: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body,
html {
    font-family: var(--font-inter);
    background: var(--green-dark);
    overflow-x: hidden;
}

/* ---- NAV ---- */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    background: #788e7d57;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img{
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.nav-logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--green-dark);
}

.nav-logo span {
    color: var(--white);
    font-size: 1.1rem;
    letter-spacing: .5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    font-size: .93rem;
    letter-spacing: .3px;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-cta {
    background: #83986c;
    color: var(--white);
    border: none;
    padding: 9px 20px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    letter-spacing: .3px;
    transition: background .2s, transform .15s;
}

.nav-cta:hover {
    background:#647354;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--green-dark);
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
    padding: 14px 40px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    transition: background .2s;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, .07);
}

.mobile-menu .mob-cta {
    margin: 12px 40px;
    text-align: center;
    border: none;
    border-bottom: none;
}

/* ---- HERO ---- */
.hero {
    background:transparent;
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 40px;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
    animation: fadeUp .8s ease both;
    display: flex;
   flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-content p {
    color: rgba(255, 255, 255, .8);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.btn-gold {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 11px 28px;
    border-radius: var(--radius);
    font-size: .93rem;
    font-weight: 700;
    letter-spacing: .5px;
    cursor: pointer;
    text-decoration: none;
    transition: all .25s;
}

.btn-gold:hover {
    background:#83986c;
    border-color: #83986c;
}

.hero-image-area {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-img-frame {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.hero-img-frame .hero-img {
    position: absolute;
    top:20%;
    left:15%;
    width: 70%;
    height: 70%;
    object-fit: contain;
    z-index: 1;
}

.hero-img-frame .hero-img2 {
    position: absolute;
    top:0px;
    left: -30px;
    width: 100%;
    height: 120%;
    object-fit: contain;
    animation: fadeUp 1s ease both;
    z-index: 2;
}

.bridals-badge {
    position: absolute;
    top: 45%;
    right: 20%;
    color: var(--white);
    padding: 10px 18px;
    z-index: 2;
}

.bridals-badge p {
    font-size:3rem;
    font-weight: bold;
    color: var(--white);
}

.bridals-badge .small {
    font-size: 1.5rem;
    opacity: .9;
    margin-top: -32px;
}

.sparkle {
    position: absolute;
    color: var(--gold-light);
    font-size: 1.4rem;
    animation: twinkle 2s infinite;
}

.sparkle:nth-child(1) {
    top: 80px;
    left: 420px;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 200px;
    left: 480px;
    animation-delay: .7s;
    font-size: 1rem;
}

.sparkle:nth-child(3) {
    top: 360px;
    left: 440px;
    animation-delay: 1.3s;
    font-size: 1.6rem;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: .3;
        transform: scale(.8)
    }

    50% {
        opacity: 1;
        transform: scale(1.1)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ---- SECTION COMMON ---- */
section {
    padding: 72px 40px;
}


.section-title {
    font-size: clamp(2rem, 3vw, 3.5rem);
    color: #e1ffa6;
    margin-bottom: 30px;
}

.section-title.center {
    text-align: center;
}

.section-label.center {
    text-align: center;
    display: block;
}



/* ---- COLLECTION ---- */
.collection {
    background: transparent;
}

.collection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width:1100px;
    margin: 0 auto;
    align-items: center;
}

.coll-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
    width: 80%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
    cursor: pointer;
}

.coll-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.coll-card:hover img {
    transform: scale(1.05);
}

.coll-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .65) 30%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.coll-card-overlay h3 {
    color: var(--white);
    font-size: 1.2rem;
}

.coll-card-overlay p {
    color:var(--white);
    font-size: .82rem;
}

.coll-text {
    padding: 20px 10px;
}

.coll-text p {
    color: var(--white);
    font-size: .95rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

/* ---- WHY CHOOSE US ---- */
.why{
    position: relative;
    overflow: hidden;
}

.why-inner {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* LEFT BOX */
.why-text-box{
    position: relative;
    background: rgba(255,255,255,0.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
    padding: 20px 40px;
    border-radius: 12px;
    max-width: 58%;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
    z-index: 2;
}

/* CENTER BUBBLE */
.buble{
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.495);
    border-radius: 50%;
    position: absolute;
    background: rgba(255,255,255,.04);
    left:45%;
    top:20px;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

/* RIGHT SIDE */
.why-right{
    width: 35%;
    position: relative;
    z-index: 2;
}

/* STATS */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.stat-box {
    text-align: left;
}

.stat-num {
    font-size: 2.3rem;
    color: #dcefc8;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, .8);
    font-size: .95rem;
    margin-top: 10px;
    line-height: 1.3;
}

/* LOGO BOX */
.brand-seal{
    position: relative;
    display: flex;
    align-items: center;
     justify-content: center;
     gap: 20px;
    padding: 40px 20px;
}

/* RIGHT BIG BUBBLE */
/* .brand-seal::before{
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
} */

/* SMALL BUBBLE */
.brand-seal::after{
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    right: 0;
    top: 20px;
    z-index: -1;
}

/* LOGO IMAGE */
.brand-logo{
    width: 280px;
    max-width: 100%;
    object-fit: contain;
    animation: float 5s ease-in-out infinite;
}

.why h2 {
    color: #dcefc8;
    font-size: clamp(1.5rem, 3vw, 3rem);
    margin-bottom: 10px;
    line-height: 1.15;
}

.why .sub {
    color: #dcefc8;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.why p {
    color: rgba(255, 255, 255, .82);
    line-height: 1.5;
    font-size: 1rem;
}

/* FLOAT ANIMATION */
@keyframes float {
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-15px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* MOBILE */
@media(max-width:991px){

    .why{
        overflow: visible;
    }

    .why-inner{
        flex-direction: column;
    }

    .why-text-box{
        max-width: 100%;
    }

    .why-right{
        width: 100%;
    }

    .stat-num{
        font-size: 2rem;
    }

    .buble{
        left: auto;
        right: -50px;
        top: 0;
    }
}
/* ---- CONTACT ---- */


.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact h2 {
    font-size: 1.8rem;
    color: #dcefc8;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #dcefc8;
    border-radius: var(--radius);
    background: transparent;
    font-size: .95rem;
    color: #dcefc8;
    outline: none;
    transition: border-color .2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green-mid);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #dcefc8;
    opacity: 1;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.btn-submit {
    width: 50%;
    padding: 14px;
    background: #83986c;
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: .5px;
    transition: background .2s, transform .15s;
}



.contact-img-frame {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
}

.contact-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ---- MAP ---- */
.map-section {
    padding: 0;
}

.map-header {
    padding: 32px 40px 16px;
}

.map-header h2 {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #dcefc8;
}

.map-header h2 i {
    color: var(--white);
}

.map-embed {
    width: 100%;
    height: 340px;
    border: none;
    filter: saturate(.85);
}

/* ---- FOOTER ---- */
footer {
    background: var(--green-dark);
    padding: 52px 40px 24px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}

.footer-brand p {
    color: rgba(255, 255, 255, .7);
    font-size: .92rem;
    line-height: 1.75;
    margin-top: 14px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    font-size: .92rem;
    transition: color .2s;
}

.footer-col ul a:hover {
    color: var(--gold-light);
}

.social-row {
    display: flex;
    gap: 14px;
    margin-top: 14px;
}

.social-row a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    text-decoration: none;
    transition: background .2s;
}

.social-row a:hover {
    background: var(--gold);
    color: var(--green-dark);
}

.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, .5);
    font-size: .83rem;
}

/* ---- POPUP MODAL ---- */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
    backdrop-filter: blur(4px);
}

.overlay.show {
    opacity: 1;
    pointer-events: all;
}

.popup {
    background: var(--green-dark);
    border-radius: 18px;
    padding: 40px 36px;
    width: 90%;
    max-width: 460px;
    position: relative;
    transform: translateY(30px) scale(.96);
    transition: transform .35s ease;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .3);
}

.overlay.show .popup {
    transform: translateY(0) scale(1);
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

.popup-header {
    text-align: center;
    margin-bottom: 24px;
}



.popup-header h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin: 6px 0 4px;
}

.popup-header p {
    color: var(--white);
    font-size: .88rem;
}

.popup .form-group input,
.popup .form-group textarea,
.popup .form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #c5d4bf;
    border-radius: var(--radius);
    font-size: .93rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color .2s;
    background: transparent;
}

.popup .form-group input::placeholder,
.popup .form-group textarea::placeholder,
.popup .form-group select::placeholder option {
    color: #dcefc8;
    opacity: 1;
}

.popup .form-group input:focus,
.popup .form-group textarea:focus,
.popup .form-group select:focus {
    border-color: var(--green-mid);
}


/* SELECT TEXT COLOR */
.popup .form-group select {
    color: #dcefc8;
}

/* DROPDOWN OPTIONS COLOR */
.popup .form-group select option {
    color: #000;
}

.date-group{
    position:relative;
}

.date-group input[type="date"]{
    width:100%;
    padding:14px 16px;
    border:1.5px solid #c5d4bf;
    border-radius:12px;
    background:transparent;
    color:#dcefc8;
    position:relative;
    z-index:2;
}

/* HIDE DEFAULT TEXT */
.date-group input[type="date"]:invalid{
    color:transparent;
}

/* CUSTOM PLACEHOLDER */
.date-placeholder{
    position:absolute;
    left:16px;
    top:50%;
    transform:translateY(-50%);
    color:#dcefc8;
    pointer-events:none;
    font-size:1rem;
    z-index:1;
}

/* WHEN DATE SELECTED */
.date-group input[type="date"]:valid + .date-placeholder{
    display:none;
}

/* CALENDAR ICON */
.date-group input[type="date"]::-webkit-calendar-picker-indicator{
    filter:invert(90%);
    cursor:pointer;
}
.btn-wa {
    width: 100%;
    padding: 14px;
    background: #83986c;
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: .4px;
    transition: background .2s, transform .15s;
    margin-top: 6px;
}

.btn-wa:hover {
    background: #dcefc8;
    color: var(--green-light);
    transform: translateY(-1px);
}

.popup-timer {
    text-align: center;
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero{
        flex-direction: column-reverse;
        align-items: center;
      min-height: auto;
      padding: 0px 20px;
    }

    .hero-image-area {
        position: relative;
        width: 100%;
        height: 60vh;
        margin-bottom: 32px;
    }

    .hero-img-frame .hero-img {
        width: 100%;
        height: 73%;
        left: -5%;
        top: 20%;
    }

    .bridals-badge{
         position: absolute;
          top: 42%;
          right: 0%;
    }

    .hero-content p{
       line-height: 1.6;
    font-family: var(--font-inter);
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    margin-bottom: 15px;
    }

    .btn-gold{
        padding: 10px 24px;
        font-size: .9rem;
        margin-bottom: 10px;
    }

      .collection-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* First Image */
  .collection-grid .coll-card:nth-child(1) {
    order: 1;
  }

  /* First Text */
  .collection-grid .coll-text:nth-child(2) {
    order: 2;
  }

  /* Second Image */
  .collection-grid .coll-card:nth-child(4) {
    order: 3;
  }

  /* Second Text */
  .collection-grid .coll-text:nth-child(3) {
    order: 4;
  }

  .coll-text p{
    text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
  }

    .why-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }

    .contact-img-frame {
        height: 400px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    section {
        padding: 52px 24px;
    }

    .coll-card {
    height: 340px;
    width: 100%;
}
}

@media (max-width: 560px) {
    nav {
        padding: 12px 20px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .map-header {
        padding: 24px 20px 12px;
    }

    .popup {
        padding: 30px 22px;
    }
}