.pollachi-wedding-hero {
    position: relative;
    overflow: hidden;
    background: #fdfcf8;
}

.pollachi-wedding-wrap {
    min-height: 650px;
    display: flex;
    align-items: center;
}

.pollachi-wedding-content {
    position: relative;
    z-index: 2;
    width: 50%;
    padding: 70px 30px 70px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pollachi-wedding-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.pollachi-btn {
    min-height: 50px;
    padding: 0 24px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    transition: all 0.3s ease;
}

.pollachi-btn-primary {
    color: #fff;
    background: #fb8e2d;
    border: 1px solid #fb8e2d;
}

.pollachi-btn-primary span {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.pollachi-btn-primary:hover {
    color: #fff;
    background: #fb8e2d;
    border-color: #fb8e2d;
}

.pollachi-btn-primary:hover span {
    transform: translateX(4px);
}

.pollachi-btn-secondary {
    color: #253333;
    background: transparent;
    border: 1px solid #fb8e2d;
}

.pollachi-btn-secondary:hover {
    color: #fb8e2d;
    background: transparent;
    border-color: #fb8e2d;
}

/* Full-size right-side image */
.pollachi-wedding-image {
    position: absolute;
    top: 0;
    right: calc((100% - 100vw) / 2);
    width: 58%;
    height: 100%;
    overflow: hidden;
}

.pollachi-wedding-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Left-side image fade */
.pollachi-wedding-image::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(
        to right,
        #fdfcf8 0%,
        rgba(253, 252, 248, 0.95) 40%,
        rgba(253, 252, 248, 0.65) 60%,
        rgba(253, 252, 248, 0) 100%
    );
}

.about-sec {
    margin: 5rem  0 0;
}

.tradition-planning-section {
    background: #ffffff;
    margin: 5rem 0 0;
    position: relative;
}

.tradition-planning-header {
    text-align: center;
    margin-bottom: 48px;
}

.tradition-planning-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.tradition-planning-card {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.tradition-planning-wide {
    grid-column: span 2;
}

.tradition-planning-big-wide {
    grid-column: span 3;    
}

.tradition-planning-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tradition-planning-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 32px;
    background: rgba(0, 0, 0, 0.35);
    transition: background 0.4s ease;
}

.tradition-planning-content {
    width: 100%;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.tradition-planning-content h3 {
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
}

.tradition-planning-content p {
    max-height: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.65;
    transition:
        max-height 0.45s ease,
        margin 0.35s ease,
        opacity 0.35s ease;
}

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

.tradition-planning-card:hover .tradition-planning-overlay {
    background: rgba(0, 0, 0, 0.68);
}

.tradition-planning-card:hover .tradition-planning-content {
    transform: translateY(0);
}

.tradition-planning-card:hover .tradition-planning-content p {
    max-height: 180px;
    margin-top: 14px;
    opacity: 1;
}

.wedding-process-section {
    padding: 5rem 0;
    background: #fff;
    overflow: hidden;
}

.wedding-process-heading {
    text-align: center;
    margin-bottom: 45px;
}

.wedding-process-heading .main-headingg {
    margin: 0;
}

.wedding-process-slider {
    width: 100%;
    overflow: hidden;
}

.wedding-process-slider .swiper-wrapper {
    align-items: stretch;
}

.wedding-process-slider .swiper-slide {
    height: auto;
}

.wedding-process-card {
    position: relative;
    min-height: 320px;
    height: 100%;
    padding: 50px 38px 38px;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, #f9f4ef 0%, #fff 55%, #fdfcf8 100%);
    border: 1px solid rgba(57, 139, 76, 0.08);
}

.wedding-process-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    border-radius: 50%;
    color: #fb8e2d;
    background: linear-gradient(135deg, #e7f3e9 0%, #f9eee8 100%);
    border: 1px solid rgba(57, 139, 76, 0.12);
}

.wedding-process-icon svg {
    width: 50px;
    height: 50px;
}

.wedding-process-number {
    position: absolute;
    top: 48px;
    right: 28px;
    color: rgba(57, 139, 76, 0.08);
    font-size: 110px;
    font-weight: 700;
    line-height: .8;
    pointer-events: none;
}

.wedding-process-content {
    position: relative;
    z-index: 2;
}

.wedding-process-content h3 {
    margin: 0 0 18px;
    color: #253333;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.35;
}

.wedding-process-content p {
    margin: 0;
    color: #89919d;
    font-size: 16px;
    line-height: 1.8;
}

.wedding-process-controls {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 45px;
}

.wedding-process-progress {
    position: relative;
    flex: 1;
    height: 6px;
    overflow: hidden;
    border-radius: 10px;
    background: #edf1e9;
}

.wedding-process-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    border-radius: 10px;
    background: #fb8e2d;
    transition: width .5s ease;
}

/*.wedding-process-count {*/
/*    min-width: 52px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    gap: 4px;*/
/*    color: #89919d;*/
/*    font-size: 17px;*/
/*    white-space: nowrap;*/
/*}*/

.wedding-process-current {
    color: #398b4c;
}

.wedding-process-arrows {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wedding-process-arrows button {
    width: 50px;
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e9ed;
    border-radius: 50%;
    background: #fff;
    color: #fb8e2d;
    cursor: pointer;
    transition: all .3s ease;
}

.wedding-process-arrows button span {
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
}

.wedding-process-arrows button:hover {
    color: #fff;
    background: #fb8e2d;
    border-color: #fb8e2d;
}

.wedding-process-arrows button.swiper-button-disabled {
    opacity: .45;
    cursor: default;
}

.wedding-process-arrows button.swiper-button-disabled:hover {
    color: #398b4c;
    background: #fff;
    border-color: #e5e9ed;
}

.areas-we-sec {
    padding: 5rem 0;
    position: relative;
    background: #f8f7f3;
}

.areas-we-sec .section-title {
    max-width: 900px;
    margin: 0 auto 40px;
}

.areas-menu-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 40px;
    padding: 4px;
    border: 1px solid rgba(57, 139, 76, 0.15);
    border-radius: 10px;
    background: #fff;
}

.areas-menu-box .nav-item {
    margin: 0;
}

.areas-menu-box.nav-pills .nav-link {
    padding: 13px 24px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: #253333;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
    transition: all .3s ease;
}

.areas-menu-box.nav-pills .nav-link:hover {
    color: #fb8e2d;
    background: #f1f7f2;
}

.areas-menu-box.nav-pills .nav-link.active {
    color: #fff;
    background: #fb8e2d;
    box-shadow: 0 4px 12px rgba(57, 139, 76, .15);
}

.areas-location-point {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 35px;
    border: 1px solid rgba(57, 139, 76, .12);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(37, 51, 51, .04);
}

.areas-location-point p {
    margin: 0 0 18px;
    color: #89919d;
    font-size: 16px;
    line-height: 1.8;
}

.areas-location-point .area-list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 14px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.areas-location-point .area-list li {
    width: 33.333%;
    padding: 0 20px 0 30px;
    color: #253333;
    font-size: 16px;
    line-height: 1.6;
}

.areas-location-point .area-list li i{
    color: #fb8e2d;
    margin-right: 10px;
}

.areas-location-point .area-list li a {
    color: #253333;
    text-decoration: none;
    transition: color .3s ease;
}

.areas-location-point .area-list li a:hover {
    color: #398b4c;
}

.why-planner {
    padding: 5rem 0;
}

.why-planner-grid {
        grid-template-columns: 1fr;
}

.why-planner-reason {
        grid-template-columns: 1fr 1fr 1fr;
}

.why-planner-intro {
    text-align: center;
}

.venue-styling-section {
    padding: 5rem 0 0;
    background: #f8f7f3;
}

.venue-styling-header {
    text-align: center;
    margin-bottom: 55px;
}

.venue-styling-header p {
    text-align: center !important;
}

.venue-styling-row {
    row-gap: 45px;
}

.venue-styling-row > div {
    display: flex;
}

.venue-styling-card {
    position: relative;
    width: 100%;
    margin-top: 22px;
    padding: 35px 20px 20px;
    border: 1px solid #dfe5df;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 4px 15px rgba(37, 51, 51, 0.03);
}

/* Title overlapping the top border */
.venue-styling-title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: max-content;
    max-width: calc(100% - 30px);
    margin: 0;
    padding: 10px 25px;
    border: 1px solid #dfe5df;
    border-radius: 30px;
    background: #dfe1ff;
    color: #355c55;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

/* Card content */
.venue-styling-content {
    width: 100%;
}


.venue-styling-options {
    padding: 18px 15px;
    border-radius: 8px;
    background: #f0f5f0;
}

.venue-styling-options h4 {
    margin: 0 0 15px;
    color: #333b49;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
}

.venue-styling-options ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.venue-styling-options ul li {
    position: relative;
    margin: 0 0 12px;
    padding-left: 25px;
    color: #61747b;
    font-size: 14px;
    line-height: 1.6;
}

.venue-styling-options ul li:last-child {
    margin-bottom: 0;
}

.venue-styling-options ul li::before {
    content: "✓";
    position: absolute;
    top: 3px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fb8e2d;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
}

.venue-styling-options ul li strong {
    color: #333b49;
    font-weight: 600;
}