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

html {
    scroll-behavior: smooth;
}

/* NAVBAR COLORS */
:root {
    --main: #821545;
    --dark: #5a0d2f;
    --light: #fff4f8;
    --text: #1a1a1a;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
}

body.popup-open {
    overflow: hidden;
}

h1,
h2,
h3,
.nav-links a {
    font-family: 'Playfair Display', serif;
}

/* NAVBAR BASE */
.navbar {
    width: 100%;
    background: var(--white);
    border-bottom: 2px solid rgba(130, 21, 69, 0.15);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.nav-logo {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 4px;
}

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

/* NAV LINKS */
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    transition: 0.3s ease;
    position: relative;
}

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

.nav-links a.active {
    color: var(--main);
}

/* ACTIVE UNDERLINE EFFECT */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 2px;
    width: 0%;
    background: var(--main);
    transition: 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 5px;
}

.arrow {
    font-size: 12px;
}

/* DROPDOWN CONTENT */
.dropdown-content {
    position: absolute;
    top: 25px;
    left: 0;
    background: var(--white);
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: none;
    flex-direction: column;
    border: 1px solid rgba(130, 21, 69, 0.2);
}

.dropdown-content a {
    padding: 12px 15px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    transition: 0.3s ease;
}

.dropdown-content a:hover {
    background: var(--light);
    color: var(--main);
}

/* SHOW DROPDOWN ON HOVER */
.dropdown:hover .dropdown-content {
    display: flex;
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--main);
    border-radius: 5px;
    transition: 0.3s ease;
}

/* HAMBURGER TO CROSS ANIMATION */
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

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

/* RESPONSIVE */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 85px;
        right: 0;
        background: var(--white);
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 15px;
        display: none;
        border-top: 2px solid rgba(130, 21, 69, 0.15);
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        width: 100%;
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: flex;
    }


}

.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    overflow: hidden;
}

/* SLIDER */
.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease-in-out, transform 2s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
    transform: scale(1);
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: #8215441d;
    z-index: 1;
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    color: white;
    padding: 20px;
    animation: fadeUp 1.2s ease;
}

.hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-content p {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 40px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

/* PRIMARY BUTTON */
.primary-btn {
    background: #5a0d2f;
    color: white;
    border: 2px solid #821545;
    box-shadow: 0px 8px 25px rgba(130, 21, 69, 0.35);
}

.primary-btn:hover {
    background: #821545;
    border-color: #821545;
    transform: translateY(-3px);
}

/* SECONDARY BUTTON */
.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: white;
    transform: translateY(-3px);
}

/* ARROW ANIMATION */
.secondary-btn .arrow {
    transition: 0.3s ease;
    font-size: 16px;
}

.secondary-btn:hover .arrow {
    transform: translateX(5px);
}

/* HERO ANIMATION */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(35px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 52px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 44px;
    }
}

.services-section {
    padding: 80px 20px;
    background: #fff4f8;
}

.services-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADING */
.services-heading {
    text-align: center;
    margin-bottom: 50px;
}

.services-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    color: #821545;
    margin-bottom: 10px;
}

.services-heading p {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: #444;
    max-width: 600px;
    margin: auto;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* CARD BASE */
.service-card {
    height: 280px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-decoration: none;
    transition: 0.35s ease;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
}

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

/* BACKGROUND IMAGES */


/* OVERLAY */
.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15));
    transition: 0.35s ease;
}

/* TEXT */
.service-card h3 {
    position: absolute;
    z-index: 2;
    font-family: "Poppins", serif;
    font-size: 16px;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    transition: 0.35s ease;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 40px rgba(130, 21, 69, 0.25);
}

.service-card:hover .service-overlay {
    background: linear-gradient(to top, rgba(130, 21, 69, 0.75), rgba(0, 0, 0, 0.2));
}

.service-card:hover h3 {
    transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-heading h2 {
        font-size: 34px;
    }

    .service-card {
        height: 240px;
    }
}

.home-service-section {
    padding: 80px 20px;
    background: var(--dark);
}

.home-service-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    /* content wider, video smaller */
    gap: 50px;
    align-items: center;
}

/* LEFT CONTENT */
.home-service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-service-content h2 {
    font-size: 42px;
    font-family: "Playfair Display", serif;
    color: var(--light);
    margin-bottom: 12px;
}

.home-service-content p {
    font-size: 15px;
    color: #d1d1d1;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 520px;
}

.home-service-points {
    padding-left: 18px;
    margin-bottom: 25px;
}

.home-service-points li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #bdbdbd;
}

.home-service-container #openHomeServicePopup {
    width: 50%;
}

/* RIGHT VIDEO BOX */
.home-service-image {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.25);
    aspect-ratio: 9 / 16;
    background: black;
}

/* VIDEO */
.home-service-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.popup-box textarea {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(130, 21, 69, 0.25);
    font-size: 14px;
    outline: none;
    resize: none;
    height: 90px;
    font-family: "Poppins", sans-serif;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .home-service-container {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .home-service-content p {
        margin: auto;
    }

    .home-service-points {
        max-width: 450px;
        margin: 0 auto 25px auto;
        text-align: left;
    }

    .home-service-container #openHomeServicePopup {
        width: 100%;
    }

    .home-service-image {
        margin: auto;
        max-width: 320px;
    }
}

@media (max-width: 500px) {
    .home-service-content h2 {
        font-size: 30px;
    }

    .home-service-content p {
        font-size: 14px;
    }

    .home-service-image {
        max-width: 280px;
    }
}

.min-alert {
    background: rgba(130, 21, 69, 0.08);
    border: 1px solid rgba(130, 21, 69, 0.25);
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 13px;
    margin-bottom: 15px;
    color: #222;
}

.add-service-btn {
    width: 100%;
    padding: 10px;
    background: var(--light);
    border: 1px solid rgba(130, 21, 69, 0.3);
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    margin-bottom: 15px;
}

.add-service-btn:hover {
    background: rgba(130, 21, 69, 0.15);
    transform: scale(1.02);
}

.selected-services {
    margin-bottom: 15px;
}

.selected-services h4 {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--main);
}

.selected-items {
    max-height: 180px;
    /* fixed list height */
    overflow-y: auto;
    /* scroll list */
    padding-right: 5px;
}

.selected-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(130, 21, 69, 0.15);
    padding: 10px 12px;
    border-radius: 12px;
}

.selected-item span {
    font-size: 13px;
    font-weight: 500;
}

.remove-btn {
    background: crimson;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
}

/* ================= GALLERY SECTION ================= */
.gallery-section {
    padding: 80px 20px;
    background: var(--light);
}

.gallery-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.gallery-container h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    color: var(--main);
    margin-bottom: 10px;
}

.gallery-subtitle {
    font-size: 15px;
    color: #666;
    max-width: 700px;
    margin: auto;
    margin-bottom: 45px;
    line-height: 1.6;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(130, 21, 69, 0.15);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    position: relative;
    cursor: pointer;
}

/* Images */
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: 0.4s ease;
}

/* Videos */
.gallery-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.video-item {
    grid-column: span 2;
    /* PC me 2 columns cover kare */
}

.video-item video {
    height: 520px;
    /* vertical phone feel */
    object-fit: cover;
    border-radius: 18px;
}

.video-item video {
    object-position: center;
}

/* Overlay icon */
.video-overlay {
    font-size: 70px;
}

/* Play icon overlay */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 55px;
    color: white;
    font-weight: bold;
    opacity: 1;
    transition: 0.3s ease;
}

.video-item.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

/* Hover Effect */
.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0px 15px 30px rgba(130, 21, 69, 0.2);
}

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

/* RESPONSIVE */
@media (max-width: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item img,
    .gallery-item video {
        height: 230px;
    }

    .video-item {
        grid-column: span 3;
        /* 3 column layout me full width */
    }

    .video-item video {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .gallery-container h2 {
        font-size: 34px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item img,
    .gallery-item video {
        height: 210px;
    }

    .video-item {
        grid-column: span 2;
        /* 2 column layout me full width */
    }

    .video-item video {
        height: 480px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img,
    .gallery-item video {
        height: 240px;
    }

    .video-item {
        grid-column: span 1;
        /* single column me full */
    }

    .video-item video {
        height: 520px;
        /* mobile me full phone look */
    }
}

.reviews-section {
    padding: 80px 20px;
    background: var(--white);
}

.reviews-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.reviews-heading h2 {
    font-size: 42px;
    font-family: "Playfair Display", serif;
    color: var(--main);
    margin-bottom: 10px;
}

.reviews-heading p {
    font-size: 15px;
    color: #666;
    max-width: 700px;
    margin: auto;
    margin-bottom: 45px;
    line-height: 1.6;
}

/* Carousel */
.review-carousel {
    position: relative;
    background: var(--light);
    height: 200px;
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid rgba(130, 21, 69, 0.15);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* Slides */
.review-slide {
    display: none;
    animation: fadeSlide 0.5s ease;
    text-align: left;
}

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

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Review Top */
.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.review-top h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #111;
}

.review-top span {
    font-size: 14px;
    color: #f7b500;
}

.review-slide p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #444;
}

/* Dots */
.review-dots {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-left: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(130, 21, 69, 0.3);
    cursor: pointer;
    transition: 0.3s ease;
}

.dot.active {
    background: var(--main);
    transform: scale(1.2);
}

.review-buttons {
    margin-top: 0px;
    display: flex;
    justify-content: flex-end;
    padding-left: 10px;
}

.review-btn {
    text-decoration: none;
    background: var(--light);
    color: var(--dark);
    padding: 12px 22px;
    border-radius: 30px;
    border: 1px solid var(--dark);
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
    display: inline-block;
}

.review-btn:hover {
    background: var(--dark);
    color: var(--light);
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .reviews-heading h2 {
        font-size: 34px;
    }

    .review-carousel {
        padding: 25px 18px;
        height: 300px;
    }

    .review-slide p {
        font-size: 13px;
    }

    .review-buttons {
        margin-top: 25px;
        justify-content: center;
    }
}

/* ===== PACKAGE MARQUEE ===== */
.package-marquee {
    width: 100%;
    overflow: hidden;
    background: rgba(130, 21, 69, 0.12);
    border: 1px solid rgba(130, 21, 69, 0.25);
    padding: 12px 0;
    border-radius: 14px;
    margin-bottom: 25px;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    width: max-content;
    animation: marqueeMove 18s linear infinite;
}

.marquee-track span {
    font-size: 14px;
    font-weight: 600;
    color: #821545;
    font-family: "Poppins", sans-serif;
}

.package-marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* Smooth infinite movement */
@keyframes marqueeMove {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .marquee-track span {
        font-size: 13px;
    }
}


.packages-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #fff4f8, #ffffff);
}

.packages-container {
    max-width: 1200px;
    margin: auto;
}

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

.packages-heading h2 {
    font-size: 42px;
    font-family: "Playfair Display", serif;
    color: var(--main);
    margin-bottom: 12px;
}

.packages-heading p {
    max-width: 720px;
    margin: auto;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

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

.package-card {
    background: white;
    border-radius: 20px;
    padding: 28px 22px;
    border: 1px solid rgba(130, 21, 69, 0.15);
    box-shadow: 0px 10px 28px rgba(0, 0, 0, 0.08);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: rgba(130, 21, 69, 0.4);
    box-shadow: 0px 15px 40px rgba(130, 21, 69, 0.18);
}

.package-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.package-top h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.tag {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(130, 21, 69, 0.12);
    color: var(--main);
}

.tag.best {
    background: var(--main);
    color: white;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 22px;
}

.package-card ul li {
    font-size: 14px;
    color: #444;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.package-card ul li:last-child {
    border-bottom: none;
}

.package-price {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 18px;
}

.package-price span {
    font-size: 22px;
    font-weight: 800;
    color: var(--main);
    margin-left: 6px;
}

.package-btn {
    width: 100%;
    padding: 12px 18px;
    border-radius: 35px;
    border: none;
    background: var(--main);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.package-btn:hover {
    background: var(--dark);
    transform: scale(1.03);
}

/* Highlight package card */
.package-card.highlight {
    border: 2px solid rgba(130, 21, 69, 0.55);
    background: linear-gradient(to bottom, #fff4f8, white);
    transform: scale(1.03);
}

.package-card.highlight:hover {
    transform: scale(1.06) translateY(-6px);
}

/* Responsive */
@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-heading h2 {
        font-size: 36px;
    }
}

@media (max-width: 650px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .packages-heading h2 {
        font-size: 32px;
    }

    .package-card.highlight {
        transform: scale(1);
    }
}

.about-section {
    padding: 80px 20px;
    background: var(--light);
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 45px;
    align-items: center;
}

.about-content h2 {
    font-size: 40px;
    font-family: "Playfair Display", serif;
    color: var(--main);
    margin-bottom: 14px;
}

.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.about-contact-box {
    background: white;
    padding: 22px 20px;
    border-radius: 18px;
    border: 1px solid rgba(130, 21, 69, 0.12);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
}

.about-contact-box h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--main);
}

.about-contact-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 10px;
}

.about-contact-box a {
    color: var(--main);
    font-weight: 600;
    text-decoration: none;
}

.about-btns {
    margin-top: 15px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-btns .btn:nth-child(1) {
    color: var(--light);
}

.about-btns .btn:nth-child(2) {
    border: 1px solid var(--dark);
}

.map-btn {
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--dark);
}

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

.about-image {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: opacity 0.8s ease-in-out;
    opacity: 1;
}

.about-image img.fade-out {
    opacity: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 320px;
    }

    .about-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 500px) {
    .about-content h2 {
        font-size: 28px;
    }

    .about-image img {
        height: 260px;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.25);
    transition: 0.3s ease;
}

.whatsapp-float img {
    width: 34px;
    height: 34px;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.footer {
    background: var(--dark);
    padding: 70px 20px 20px;
    color: #ddd;
    font-family: "Poppins", sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    font-size: 17px;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
}

.footer-col h3::after {
    content: "";
    width: 50px;
    height: 3px;
    background: var(--light);
    display: block;
    margin-top: 6px;
    border-radius: 20px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 12px;
    font-family: "Playfair Display", serif;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #bdbdbd;
    max-width: 320px;
}

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

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

.footer-col ul li a {
    text-decoration: none;
    color: #bdbdbd;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--main);
    padding-left: 5px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdbdbd;
    margin-bottom: 12px;
}

.footer-col a {
    color: #d9d9d9;
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--main);
}

/* SOCIAL LINKS */
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.footer-social a {
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    font-size: 13px;
    transition: 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

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

/* BOTTOM BAR */
.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-desc {
        margin: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col h3::after {
        margin: 6px auto 0;
    }
}