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

:root {
    --wedding-color: #0c2a42;
}

.wedding-about-section {
    padding: 120px 4%;
    background: #ffffff;
    width: 100%;
    overflow-x: hidden;
}

.wa-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* =========================
   LEFT CONTENT
========================= */

.wa-content {
    flex: 1;
}

.wa-title {
    font-size: 38px;
    color: var(--wedding-color);
    margin-bottom: 20px;
}

.wa-divider {
    width: 60px;
    height: 3px;
    background: var(--wedding-color);
    margin-bottom: 30px;
}

.wa-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.wa-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 28px;
    border: 2px solid var(--wedding-color);
    color: var(--wedding-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s ease;
}

.wa-btn:hover {
    background: var(--wedding-color);
    color: #fff;
}

/* =========================
   RIGHT IMAGES
========================= */

.wa-images {
    flex: 1;
    position: relative;
    height: 450px;
}

.wa-img {
    position: absolute;
    width: 260px;
    height: 330px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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


/* First Image */

.wa-img-1 {
    top: 0;
    left: 40px;
    animation: floatUpDown 4s ease-in-out infinite;
}

/* Second Image */

.wa-img-2 {
    bottom: 0;
    right: 40px;
    animation: floatUpDown2 5s ease-in-out infinite;
}

/* =========================
   FLOATING ANIMATION
========================= */

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

@keyframes floatUpDown2 {
    0% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
    100% { transform: translateY(0px); }
}

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

@media (max-width: 992px) {

    .wa-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .wa-images {
        margin-top: 60px;
        height: 400px;
    }

    .wa-img {
        position: relative;
        margin: 0 auto 20px;
    }

    .wa-img-1,
    .wa-img-2 {
        animation: none;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }

    .wa-divider {
        margin: 20px auto;
    }
    
    .wedding-about-section {
        padding: 80px 3%;
    }
}

@media (max-width: 768px) {
    .wedding-about-section {
        padding: 60px 3%;
    }
    
    .wa-wrapper {
        gap: 40px;
        padding: 0 3%;
    }
    
    .wa-title {
        font-size: 28px;
    }
    
    .wa-images {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .wedding-about-section {
        padding: 40px 3%;
    }
    
    .wa-title {
        font-size: 20px;
    }
    
    .wa-content p {
        font-size: 14px;
    }
    
    .wa-images {
        height: 250px;
    }
}


/* ========================================
   WEDDING FEATURE SECTION
======================================== */

:root {
    --wedding-color: #0c2a42;
}

.wedding-feature-section {
    padding: 120px 4%;
    background: #F5F9FF;
    width: 100%;
    overflow-x: hidden;
}

/* ========================================
   SECTION HEADER
======================================== */

.process-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 34px;
    font-weight: 600;
    color: var(--wedding-color);
    margin-bottom: 15px;
}

.divider-cyan {
    width: 70px;
    height: 3px;
    background: var(--wedding-color);
    margin: 0 auto;
}

/* ========================================
   3 SERVICES PER ROW (SAME DESIGN)
======================================== */

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

/* Each Service Block */

.wf-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ========================================
   IMAGE AREA
======================================== */

.wf-image-area {
    position: relative;
    width: 160px;
    height: 200px;
    flex-shrink: 0;
}

.wf-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #e6e6e6;
    border: 8px solid #fff;
    transition: 0.5s ease;
}

.frame-back {
    transform: rotate(-5deg);
    top: -8px;
    left: -8px;
}

.frame-middle {
    transform: rotate(3deg);
    top: 6px;
    left: 6px;
}

.wf-main-image {
    position: relative;
    width: 100%;
    height: 100%;
    border: 8px solid #fff;
    overflow: hidden;
}

.wf-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.wf-image-area:hover img {
    transform: scale(1.05);
}

/* ========================================
   CONTENT
======================================== */

.wf-heading {
    font-size: 18px;
    color: var(--wedding-color);
    margin-bottom: 10px;
}

.wf-divider {
    width: 40px;
    height: 2px;
    background: var(--wedding-color);
    margin-bottom: 15px;
}

.wf-content p {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.wf-btn {
    padding: 6px 16px;
    border: 2px solid var(--wedding-color);
    color: var(--wedding-color);
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: 600;
    font-size: 13px;
}

.wf-btn:hover {
    background: var(--wedding-color);
    color: #fff;
}

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

@media (max-width: 1200px) {
    .wf-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wf-grid-3 {
        grid-template-columns: 1fr;
    }

    .wf-row {
        flex-direction: column;
        text-align: center;
    }

    .wf-divider {
        margin: 10px auto;
    }
}





/* UNIQUE SERVICE SECTION */
.wedding-services-section {
    padding: 100px 0;
    background-color: #0a2540 !important;
}

.ws-header {
    text-align: center;
    margin-bottom: 60px;
}

.ws-title {
    font-size: 40px;
    font-weight: 600;
    color: #2d2d2d;
}

.ws-title span {
    background: linear-gradient(45deg, #d4af37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ws-subtitle {
    margin-top: 15px;
    font-size: 17px;
    color: #666;
}

/* GRID */
.ws-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cards in desktop */
    gap: 30px;
}

.ws-grid1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 4 cards in desktop */
    gap: 30px;
}

/* CARD */
.ws-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
}

.ws-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* IMAGE */
.ws-img {
    overflow: hidden;
    height: 260px;
}

.ws-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ws-card:hover .ws-img img {
    transform: scale(1.1);
}

/* CONTENT */
.ws-content {
    padding: 30px;
}

.ws-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d2d2d;
}

.ws-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ws-btn {
    text-decoration: none;
    font-weight: 500;
    color: #0a2540;
    transition: 0.3s;
}

.ws-btn:hover {
    letter-spacing: 1px;
    color: #7a1f3d;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .wf-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .ws-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wedding-feature-section {
        padding: 80px 4%;
    }
}

@media (max-width: 992px) {
    .wf-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .wedding-feature-section {
        padding: 60px 4%;
    }
}

@media (max-width: 768px) {
    .wf-grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ws-grid {
        grid-template-columns: 1fr;
    }
    
    .wf-image-area {
        width: 120px;
        height: 160px;
    }
    
    .wedding-feature-section {
        padding: 50px 3%;
    }
    
    .process-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .ws-content {
        padding: 20px;
    }
    
    .ws-img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .wf-grid-3 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .wf-image-area {
        width: 100px;
        height: 140px;
    }
    
    .wedding-feature-section {
        padding: 30px 3%;
    }
    
    .section-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .divider-cyan {
        width: 50px;
        margin-bottom: 15px;
    }
    
    .ws-card {
        margin-bottom: 20px;
    }
    
    .ws-img {
        height: 180px;
    }
    
    .ws-content {
        padding: 15px;
    }
    
    .ws-content h3 {
        font-size: 18px;
    }
    
    .ws-content p {
        font-size: 13px;
    }
}