/* =========================================================
   RADHA PHOTO STUDIO
   MAIN WEBSITE STYLESHEET
   Theme:
   Midnight Black #0A0A0A
   Deep Charcoal #1C1C1C
   Rose Gold #C79992
   Soft Rose #E6B8B2
========================================================= */


/* =========================================================
   01. ROOT VARIABLES
========================================================= */

:root {

    --black: #0A0A0A;
    --charcoal: #1C1C1C;
    --charcoal-light: #242424;
    --charcoal-soft: #292929;

    --rose: #C79992;
    --rose-light: #E6B8B2;
    --rose-dark: #9F7771;

    --white: #FFFFFF;
    --text: #F5F5F5;
    --text-soft: #B8B8B8;
    --text-muted: #858585;

    --border: #303030;
    --border-light: #3B3B3B;

    --success: #7FD1A3;

    --container: 1240px;

    --radius-small: 10px;
    --radius-medium: 18px;
    --radius-large: 28px;
    --radius-pill: 999px;

    --shadow-small:
        0 8px 25px rgba(0, 0, 0, 0.25);

    --shadow-medium:
        0 20px 60px rgba(0, 0, 0, 0.35);

    --shadow-rose:
        0 15px 50px rgba(199, 153, 146, 0.14);

    --transition-fast:
        0.2s ease;

    --transition:
        0.35s cubic-bezier(0.22, 1, 0.36, 1);

    --transition-slow:
        0.7s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   02. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family:
        Inter,
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    background: var(--black);
    color: var(--text);

    line-height: 1.6;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
}

::selection {
    background: var(--rose);
    color: var(--black);
}


/* =========================================================
   03. CUSTOM SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--charcoal-soft);
    border-radius: 20px;
    border: 2px solid var(--black);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--rose-dark);
}

/* =========================================================
   05. COMMON CONTAINER
========================================================= */

.section-container,
.header-container,
.footer-container {

    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   06. HEADER
========================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background:
        linear-gradient(
            180deg,
            rgba(10, 10, 10, 0.96),
            rgba(10, 10, 10, 0.78)
        );

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.05);

    transition:
        background var(--transition),
        box-shadow var(--transition);
}

.site-header.scrolled {

    background:
        rgba(10, 10, 10, 0.94);

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.35);
}

.header-container {

    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   07. BRAND
========================================================= */

.brand {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}

.brand-mark {

    width: 44px;
    height: 44px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    background:
        linear-gradient(
            135deg,
            rgba(199, 153, 146, 0.25),
            rgba(199, 153, 146, 0.04)
        );

    border:
        1px solid rgba(199, 153, 146, 0.5);

    box-shadow:
        0 0 25px rgba(199, 153, 146, 0.08);

    overflow: hidden;
}

.brand-mark::before {

    content: "";

    position: absolute;

    inset: 4px;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}

.brand-mark span {

    color: var(--rose-light);

    font-family: Georgia, serif;

    font-size: 21px;

    position: relative;

    z-index: 2;
}

.brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1;
}

.brand-text strong {

    font-size: 15px;

    letter-spacing: 2.5px;

    color: var(--white);

    font-weight: 800;
}

.brand-text span {

    margin-top: 6px;

    font-size: 8px;

    letter-spacing: 3px;

    color: var(--rose-light);

    font-weight: 600;
}


/* =========================================================
   08. DESKTOP NAVIGATION
========================================================= */

.desktop-nav {

    display: flex;

    align-items: center;

    gap: 5px;
}

.nav-link {

    position: relative;

    padding:
        10px 13px;

    color: var(--text-muted);

    font-size: 13px;

    font-weight: 500;

    transition:
        color var(--transition-fast);
}

.nav-link::after {

    content: "";

    position: absolute;

    left: 50%;
    bottom: 2px;

    width: 0;
    height: 2px;

    transform: translateX(-50%);

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--rose),
            var(--rose-light)
        );

    transition:
        width var(--transition);
}

.nav-link:hover,
.nav-link.active {

    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {

    width: 20px;
}


/* =========================================================
   09. HEADER ACTIONS
========================================================= */

.header-actions {

    display: flex;

    align-items: center;

    gap: 12px;
}

.header-whatsapp {

    padding:
        10px 18px;

    border-radius:
        var(--radius-pill);

    border:
        1px solid rgba(199, 153, 146, 0.4);

    color: var(--rose-light);

    font-size: 12px;

    font-weight: 700;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.header-whatsapp:hover {

    background: var(--rose);

    color: var(--black);

    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(199, 153, 146, 0.2);
}


/* =========================================================
   10. MENU BUTTON
========================================================= */

.menu-toggle {

    display: none;

    width: 44px;
    height: 44px;

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.05);

    border:
        1px solid var(--border);

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;
}

.menu-toggle span {

    display: block;

    width: 19px;
    height: 2px;

    background: var(--white);

    border-radius: 5px;

    transition:
        transform var(--transition),
        opacity var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   11. MOBILE NAVIGATION
========================================================= */

.mobile-nav {

    display: none;

    padding:
        15px 24px 25px;

    background:
        rgba(10, 10, 10, 0.98);

    border-top:
        1px solid rgba(255, 255, 255, 0.04);
}

.mobile-nav-link {

    display: block;

    padding:
        13px 5px;

    color: var(--text-soft);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.05);

    font-size: 14px;

    transition:
        color var(--transition-fast),
        padding-left var(--transition);
}

.mobile-nav-link:hover {

    color: var(--rose-light);

    padding-left: 10px;
}

.mobile-whatsapp {

    display: block;

    margin-top: 18px;

    padding: 13px;

    text-align: center;

    border-radius: 12px;

    background: var(--rose);

    color: var(--black);

    font-size: 13px;

    font-weight: 800;
}

.mobile-nav.open {
    display: block;
}


/* =========================================================
   12. HERO
========================================================= */

.hero-section {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding:
        140px 0 90px;
}

.hero-background {

    position: absolute;

    inset: 0;

    pointer-events: none;

    overflow: hidden;
}

.hero-glow {

    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.14;
}

.hero-glow-one {

    top: -250px;
    right: -160px;

    background: var(--rose);
}

.hero-glow-two {

    bottom: -350px;
    left: -250px;

    background: var(--rose-dark);
}

.hero-grid {

    position: absolute;

    inset: 0;

    opacity: 0.2;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size:
        60px 60px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 80%
        );
}

.hero-container {

    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(400px, 0.98fr);

    align-items: center;

    gap: 80px;

    position: relative;

    z-index: 2;
}


/* =========================================================
   13. HERO CONTENT
========================================================= */

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        8px 13px;

    border-radius:
        var(--radius-pill);

    background:
        rgba(199, 153, 146, 0.07);

    border:
        1px solid rgba(199, 153, 146, 0.2);

    color: var(--rose-light);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    margin-bottom: 28px;
}

.badge-dot {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--rose-light);

    box-shadow:
        0 0 12px var(--rose);
}

.hero-content h1 {

    max-width: 750px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(50px, 6vw, 82px);

    line-height: 0.98;

    letter-spacing: -3px;

    color: var(--white);

    font-weight: 500;
}

.hero-content h1 span {

    display: inline-block;

    color: var(--rose-light);

    font-style: italic;

    background:
        linear-gradient(
            100deg,
            var(--rose),
            var(--rose-light),
            var(--rose)
        );

    background-size: 200% auto;

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    animation:
        roseText 5s linear infinite;
}

@keyframes roseText {

    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero-description {

    max-width: 590px;

    margin-top: 28px;

    color: var(--text-soft);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   14. BUTTONS
========================================================= */

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;
}

.btn {

    min-height: 50px;

    padding:
        0 22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    border-radius:
        var(--radius-pill);

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.btn span {

    font-size: 18px;

    line-height: 1;

    transition:
        transform var(--transition);
}

.btn:hover {

    transform: translateY(-3px);
}

.btn:hover span {

    transform: translateX(4px);
}

.btn-primary {

    background:
        linear-gradient(
            135deg,
            var(--rose),
            var(--rose-light)
        );

    color: var(--black);

    box-shadow:
        0 10px 30px rgba(199, 153, 146, 0.15);
}

.btn-primary:hover {

    box-shadow:
        0 15px 40px rgba(199, 153, 146, 0.25);
}

.btn-secondary {

    border:
        1px solid var(--border-light);

    background:
        rgba(255, 255, 255, 0.025);

    color: var(--white);
}

.btn-secondary:hover {

    border-color:
        rgba(199, 153, 146, 0.5);

    background:
        rgba(199, 153, 146, 0.08);
}

.btn-light {

    background: var(--white);

    color: var(--black);
}

.btn-light:hover {

    background: var(--rose-light);

    box-shadow:
        0 15px 40px rgba(255, 255, 255, 0.12);
}


/* =========================================================
   15. HERO STATS
========================================================= */

.hero-stats {

    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 50px;
}

.hero-stat {

    display: flex;

    flex-direction: column;
}

.hero-stat strong {

    color: var(--white);

    font-size: 21px;

    font-weight: 800;
}

.hero-stat span {

    color: var(--text-muted);

    font-size: 10px;

    margin-top: 3px;

    letter-spacing: 0.5px;
}

.hero-stat-divider {

    width: 1px;
    height: 35px;

    background: var(--border);
}


/* =========================================================
   16. HERO VISUAL
========================================================= */

.hero-visual {

    position: relative;

    display: flex;

    justify-content: center;
}

.hero-image-wrapper {

    width: min(
        100%,
        520px
    );

    position: relative;

    padding: 15px;
}

.hero-image-wrapper::before {

    content: "";

    position: absolute;

    inset: 0;

    border:
        1px solid rgba(199, 153, 146, 0.25);

    border-radius:
        32px;

    transform:
        rotate(4deg);

    transition:
        transform var(--transition-slow);
}

.hero-image-wrapper:hover::before {

    transform:
        rotate(1deg);
}

.hero-image-placeholder {

    min-height: 580px;

    border-radius:
        28px;

    background:
        linear-gradient(
            145deg,
            #242424,
            #111111
        );

    border:
        1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        var(--shadow-medium);

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    position: relative;

    overflow: hidden;
}

.hero-image-placeholder::before {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(199, 153, 146, 0.18),
            transparent 65%
        );
}

.camera-icon {

    width: 82px;
    height: 60px;

    border:
        2px solid rgba(199, 153, 146, 0.7);

    border-radius: 14px;

    position: relative;

    margin-bottom: 22px;
}

.camera-icon::before {

    content: "";

    position: absolute;

    width: 25px;
    height: 25px;

    border:
        2px solid var(--rose);

    border-radius: 50%;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);
}

.camera-icon::after {

    content: "";

    position: absolute;

    width: 22px;
    height: 8px;

    background:
        rgba(199, 153, 146, 0.6);

    border-radius:
        5px 5px 0 0;

    top: -9px;
    left: 15px;
}

.hero-image-placeholder p {

    color: var(--white);

    font-size: 15px;

    font-weight: 700;

    position: relative;
}

.hero-image-placeholder small {

    color: var(--text-muted);

    font-size: 10px;

    margin-top: 5px;

    position: relative;
}


/* =========================================================
   17. FLOATING CARDS
========================================================= */

.floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 15px;

    background:
        rgba(28, 28, 28, 0.88);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius:
        14px;

    backdrop-filter:
        blur(15px);

    box-shadow:
        var(--shadow-medium);

    animation:
        floatingCard 4s ease-in-out infinite;
}

.floating-card-top {

    top: 70px;
    right: -25px;
}

.floating-card-bottom {

    bottom: 60px;
    left: -35px;

    animation-delay:
        -2s;
}

.floating-icon {

    width: 34px;
    height: 34px;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(199, 153, 146, 0.12);

    color: var(--rose-light);

    font-size: 16px;
}

.floating-card strong {

    display: block;

    color: var(--white);

    font-size: 11px;
}

.floating-card small {

    display: block;

    color: var(--text-muted);

    font-size: 9px;

    margin-top: 2px;
}

.mini-avatar {

    width: 34px;
    height: 34px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--rose),
            var(--rose-dark)
        );

    color: var(--black);

    font-family: Georgia, serif;

    font-weight: 800;
}

@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.scroll-indicator {

    position: absolute;

    left: 50%;
    bottom: 25px;

    transform:
        translateX(-50%);

    color: var(--text-muted);

    font-size: 9px;

    letter-spacing: 2px;

    text-transform: uppercase;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 7px;
}

.scroll-indicator span {

    width: 1px;
    height: 28px;

    background:
        linear-gradient(
            var(--rose),
            transparent
        );
}


/* =========================================================
   18. SECTIONS
========================================================= */

.section {

    padding:
        125px 0;
}

.about-section,
.gallery-section,
.why-section {

    background:
        var(--black);
}

.services-section,
.packages-section,
.location-section,
.contact-section {

    background:
        var(--charcoal);
}


/* =========================================================
   19. SECTION HEADINGS
========================================================= */

.section-heading {

    max-width: 720px;

    margin-bottom: 65px;
}

.section-heading.centered {

    margin-inline: auto;

    text-align: center;
}

.section-label {

    display: inline-block;

    color: var(--rose-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 17px;
}

.section-heading h2,
.why-content h2 {

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(38px, 5vw, 62px);

    line-height: 1.05;

    font-weight: 500;

    letter-spacing: -1.5px;

    color: var(--white);
}

.section-heading h2 span,
.why-content h2 span {

    color: var(--rose-light);

    font-style: italic;
}

.section-heading p {

    color: var(--text-soft);

    max-width: 620px;

    margin-top: 20px;

    font-size: 15px;
}

.section-heading.centered p {

    margin-inline: auto;
}


/* =========================================================
   20. ABOUT
========================================================= */

.about-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 90px;

    align-items: center;
}

.about-visual {

    position: relative;

    padding: 15px;
}

.about-image-placeholder {

    min-height: 560px;

    border-radius:
        var(--radius-large);

    background:
        linear-gradient(
            145deg,
            #252525,
            #111111
        );

    border:
        1px solid var(--border);

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    position: relative;

    overflow: hidden;
}

.about-image-placeholder::before {

    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(199, 153, 146, 0.13),
            transparent 65%
        );
}

.placeholder-camera {

    width: 85px;
    height: 85px;

    border-radius: 50%;

    border:
        1px solid rgba(199, 153, 146, 0.5);

    color: var(--rose-light);

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: Georgia, serif;

    font-size: 32px;

    margin-bottom: 20px;

    position: relative;
}

.about-image-placeholder span {

    color: var(--text-soft);

    font-size: 13px;

    position: relative;
}

.about-image-placeholder small {

    color: var(--text-muted);

    font-size: 10px;

    margin-top: 5px;

    position: relative;
}

.experience-badge {

    position: absolute;

    right: -15px;
    bottom: 45px;

    width: 125px;
    height: 125px;

    border-radius: 50%;

    background:
        var(--rose);

    color: var(--black);

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35);
}

.experience-badge strong {

    font-family: Georgia, serif;

    font-size: 29px;

    line-height: 1;
}

.experience-badge span {

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.8px;

    margin-top: 6px;
}

.about-small-title {

    color: var(--rose-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;
}

.about-content h3 {

    margin-top: 15px;

    color: var(--white);

    font-family: Georgia, serif;

    font-size:
        clamp(28px, 3vw, 40px);

    font-weight: 500;

    line-height: 1.15;
}

.about-content > p {

    color: var(--text-soft);

    font-size: 14px;

    margin-top: 18px;

    max-width: 620px;
}

.about-points {

    margin-top: 35px;

    display: flex;

    flex-direction: column;

    gap: 20px;
}

.about-point {

    display: grid;

    grid-template-columns: 38px 1fr;

    gap: 14px;
}

.about-point > span {

    color: var(--rose-light);

    font-size: 11px;

    font-weight: 800;

    padding-top: 2px;
}

.about-point strong {

    display: block;

    color: var(--white);

    font-size: 13px;
}

.about-point p {

    color: var(--text-muted);

    font-size: 12px;

    margin-top: 3px;
}


/* =========================================================
   21. SERVICES
========================================================= */

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;
}

.service-card {

    position: relative;

    min-height: 330px;

    padding: 32px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-medium);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.035),
            rgba(255,255,255,0.012)
        );

    overflow: hidden;

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.service-card::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    bottom: -90px;

    border-radius: 50%;

    background:
        rgba(199, 153, 146, 0.06);

    transition:
        transform var(--transition);
}

.service-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(199, 153, 146, 0.35);

    background:
        linear-gradient(
            145deg,
            rgba(199,153,146,0.08),
            rgba(255,255,255,0.02)
        );

    box-shadow:
        var(--shadow-rose);
}

.service-card:hover::before {

    transform: scale(1.6);
}

.service-number {

    position: absolute;

    top: 25px;
    right: 27px;

    color:
        rgba(255,255,255,0.08);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}

.service-icon {

    width: 54px;
    height: 54px;

    border-radius: 15px;

    background:
        rgba(199, 153, 146, 0.08);

    border:
        1px solid rgba(199, 153, 146, 0.2);

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--rose-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 28px;
}

.service-card h3 {

    color: var(--white);

    font-family: Georgia, serif;

    font-size: 23px;

    font-weight: 500;
}

.service-card p {

    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.8;

    margin-top: 12px;

    max-width: 290px;
}

.service-card a {

    position: absolute;

    bottom: 28px;
    left: 32px;

    color: var(--rose-light);

    font-size: 11px;

    font-weight: 800;

    transition:
        transform var(--transition);
}

.service-card a:hover {

    transform:
        translateX(5px);
}

.featured-service {

    border-color:
        rgba(199, 153, 146, 0.28);

    background:
        linear-gradient(
            145deg,
            rgba(199,153,146,0.10),
            rgba(255,255,255,0.015)
        );
}


/* =========================================================
   22. FEATURE BANNER
========================================================= */

.feature-banner {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #171414,
            #0A0A0A 60%
        );

    border-top:
        1px solid rgba(199,153,146,0.12);

    border-bottom:
        1px solid rgba(199,153,146,0.12);

    padding:
        100px 0;
}

.feature-banner::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    top: -300px;
    left: -180px;

    background:
        radial-gradient(
            circle,
            rgba(199,153,146,0.16),
            transparent 65%
        );

    pointer-events: none;
}

.feature-banner-container {

    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        1fr 0.8fr;

    align-items: center;

    gap: 60px;

    position: relative;
}

.feature-banner-content > span {

    color: var(--rose-light);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 3px;
}

.feature-banner-content h2 {

    color: var(--white);

    font-family: Georgia, serif;

    font-weight: 500;

    font-size:
        clamp(42px, 5vw, 67px);

    line-height: 1.02;

    margin-top: 15px;
}

.feature-banner-content p {

    color: var(--text-soft);

    font-size: 14px;

    max-width: 520px;

    margin-top: 20px;
}

.feature-banner-content .btn {

    margin-top: 30px;
}

.feature-banner-visual {

    min-height: 360px;

    display: flex;

    align-items: center;
    justify-content: center;

    position: relative;
}

.lens-ring {

    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(199,153,146,0.16);

    animation:
        lensRotate 18s linear infinite;
}

.ring-one {

    width: 310px;
    height: 310px;
}

.ring-two {

    width: 235px;
    height: 235px;

    border-style: dashed;

    animation-duration: 12s;

    animation-direction: reverse;
}

.ring-three {

    width: 155px;
    height: 155px;

    border-color:
        rgba(199,153,146,0.35);

    animation-duration: 8s;
}

.lens-center {

    width: 90px;
    height: 90px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-family: Georgia, serif;

    font-size: 32px;

    color: var(--black);

    background:
        linear-gradient(
            135deg,
            var(--rose),
            var(--rose-light)
        );

    box-shadow:
        0 0 60px rgba(199,153,146,0.18);

    z-index: 2;
}

@keyframes lensRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   23. GALLERY
========================================================= */

.gallery-grid {

    display: grid;

    grid-template-columns:
        1.1fr 0.9fr 0.9fr;

    grid-auto-rows:
        250px;

    gap: 14px;
}

.gallery-item {

    min-width: 0;

    border-radius:
        var(--radius-medium);

    overflow: hidden;

    border:
        1px solid var(--border);

    position: relative;
}

.gallery-large {

    grid-row:
        span 2;
}

.gallery-wide {

    grid-column:
        span 2;
}

.gallery-placeholder {

    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #252525,
            #111111
        );

    transition:
        transform var(--transition),
        background var(--transition);
}

.gallery-placeholder::before {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(199,153,146,0.12),
            transparent 65%
        );
}

.gallery-item:hover
.gallery-placeholder {

    transform: scale(1.04);

    background:
        linear-gradient(
            145deg,
            #302927,
            #111111
        );
}

.gallery-placeholder span {

    position: relative;

    color: var(--rose-light);

    font-size: 10px;

    letter-spacing: 3px;

    font-weight: 800;
}

.gallery-placeholder small {

    position: relative;

    color: var(--text-muted);

    font-size: 9px;

    margin-top: 5px;
}


/* =========================================================
   24. PACKAGES
========================================================= */

.packages-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.package-card {

    position: relative;

    padding: 35px 30px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-medium);

    background:
        rgba(255,255,255,0.018);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.package-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(199,153,146,0.28);

    box-shadow:
        var(--shadow-rose);
}

.package-featured {

    background:
        linear-gradient(
            150deg,
            rgba(199,153,146,0.10),
            rgba(255,255,255,0.015)
        );

    border-color:
        rgba(199,153,146,0.3);
}

.popular-tag {

    position: absolute;

    top: 20px;
    right: 20px;

    padding:
        5px 9px;

    border-radius:
        var(--radius-pill);

    background:
        var(--rose);

    color:
        var(--black);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;
}

.package-top {

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.package-top span {

    color: var(--rose-light);

    font-size: 11px;

    font-weight: 800;
}

.package-top small {

    color: var(--text-muted);

    font-size: 8px;

    letter-spacing: 1.5px;
}

.package-card h3 {

    color: var(--white);

    font-family: Georgia, serif;

    font-size: 34px;

    font-weight: 500;

    margin-top: 30px;
}

.package-description {

    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.7;

    margin-top: 8px;

    min-height: 42px;
}

.package-line {

    width: 100%;
    height: 1px;

    background:
        var(--border);

    margin:
        25px 0;
}

.package-card ul {

    display: flex;

    flex-direction: column;

    gap: 13px;
}

.package-card li {

    color: var(--text-soft);

    font-size: 12px;

    display: flex;

    align-items: center;

    gap: 9px;
}

.package-card li span {

    color: var(--rose-light);

    font-size: 12px;
}

.package-button {

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 46px;

    margin-top: 28px;

    border-radius: 12px;

    border:
        1px solid var(--border);

    color: var(--white);

    font-size: 11px;

    font-weight: 800;

    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition);
}

.package-button:hover {

    background:
        var(--rose);

    border-color:
        var(--rose);

    color:
        var(--black);
}


/* =========================================================
   25. WHY SECTION
========================================================= */

.why-grid {

    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 100px;

    align-items: center;
}

.why-content h2 {

    margin-top: 10px;
}

.why-content > p {

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.8;

    max-width: 500px;

    margin-top: 25px;
}

.why-features {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}

.why-feature {

    padding: 24px;

    border:
        1px solid var(--border);

    border-radius:
        16px;

    background:
        rgba(255,255,255,0.015);

    display: flex;

    gap: 16px;

    transition:
        transform var(--transition),
        border-color var(--transition);
}

.why-feature:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(199,153,146,0.28);
}

.why-icon {

    width: 40px;
    height: 40px;

    flex-shrink: 0;

    border-radius: 11px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(199,153,146,0.08);

    color:
        var(--rose-light);

    font-size: 9px;

    font-weight: 800;
}

.why-feature h3 {

    color: var(--white);

    font-size: 13px;
}

.why-feature p {

    color: var(--text-muted);

    font-size: 10px;

    line-height: 1.7;

    margin-top: 5px;
}


/* =========================================================
   26. LOCATION
========================================================= */

.location-card {

    display: grid;

    grid-template-columns:
        1fr 0.85fr;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-large);

    overflow: hidden;

    background:
        rgba(0,0,0,0.18);
}

.location-content {

    padding: 55px;
}

.location-content h2 {

    font-family: Georgia, serif;

    font-size:
        clamp(36px, 4vw, 53px);

    line-height: 1.05;

    font-weight: 500;

    margin-top: 5px;
}

.location-content h2 span {

    color: var(--rose-light);

    font-style: italic;
}

.location-content > p {

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.8;

    max-width: 500px;

    margin-top: 18px;
}

.location-details {

    margin-top: 30px;

    display: flex;

    flex-direction: column;

    gap: 18px;
}

.location-detail {

    display: flex;

    gap: 13px;

    align-items: flex-start;
}

.detail-icon {

    width: 38px;
    height: 38px;

    flex-shrink: 0;

    border-radius: 10px;

    background:
        rgba(199,153,146,0.08);

    border:
        1px solid rgba(199,153,146,0.18);

    color: var(--rose-light);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 0.5px;
}

.location-detail strong {

    color: var(--white);

    font-size: 11px;
}

.location-detail p {

    color: var(--text-muted);

    font-size: 11px;

    line-height: 1.6;

    margin-top: 2px;
}

.location-buttons {

    display: flex;

    gap: 10px;

    flex-wrap: wrap;

    margin-top: 30px;
}

.location-buttons .btn {

    min-height: 45px;

    font-size: 10px;
}

.location-map {

    min-height: 540px;

    position: relative;

    background:
        linear-gradient(
            145deg,
            #242424,
            #111111
        );

    border-left:
        1px solid var(--border);
}

.location-map::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: 0.25;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.04) 1px,
            transparent 1px
        );

    background-size:
        50px 50px;
}

.map-placeholder {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;
}

.map-pin {

    width: 65px;
    height: 65px;

    border-radius: 50%;

    background:
        rgba(199,153,146,0.12);

    border:
        1px solid rgba(199,153,146,0.3);

    color:
        var(--rose-light);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 25px;

    margin-bottom: 20px;

    box-shadow:
        0 0 0 12px rgba(199,153,146,0.03),
        0 0 0 25px rgba(199,153,146,0.015);
}

.map-placeholder strong {

    color: var(--white);

    font-family: Georgia, serif;

    font-size: 21px;
}

.map-placeholder > span {

    color: var(--text-muted);

    font-size: 11px;

    margin-top: 5px;
}

.map-placeholder a {

    color: var(--rose-light);

    font-size: 10px;

    font-weight: 800;

    margin-top: 20px;
}


/* =========================================================
   27. CONTACT
========================================================= */

.contact-section {

    background:
        var(--black);
}

.contact-grid {

    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 90px;

    align-items: start;
}

.contact-info h2 {

    font-family: Georgia, serif;

    font-size:
        clamp(38px, 4.5vw, 58px);

    line-height: 1.05;

    font-weight: 500;

    margin-top: 5px;
}

.contact-info h2 span {

    color: var(--rose-light);

    font-style: italic;
}

.contact-info > p {

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.8;

    margin-top: 20px;

    max-width: 460px;
}

.contact-methods {

    margin-top: 35px;

    display: flex;

    flex-direction: column;

    gap: 12px;
}

.contact-method {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 14px;

    border:
        1px solid var(--border);

    border-radius: 13px;

    background:
        rgba(255,255,255,0.015);

    transition:
        transform var(--transition),
        border-color var(--transition);
}

.contact-method:hover {

    transform:
        translateX(5px);

    border-color:
        rgba(199,153,146,0.3);
}

.contact-method-icon {

    width: 40px;
    height: 40px;

    border-radius: 11px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(199,153,146,0.08);

    color: var(--rose-light);

    font-size: 8px;

    font-weight: 900;
}

.contact-method small {

    display: block;

    color: var(--text-muted);

    font-size: 8px;

    letter-spacing: 1.5px;

    font-weight: 800;
}

.contact-method strong {

    display: block;

    color: var(--white);

    font-size: 12px;

    margin-top: 3px;
}


/* =========================================================
   28. CONTACT FORM
========================================================= */

.contact-form-wrapper {

    padding: 35px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-large);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.035),
            rgba(255,255,255,0.012)
        );

    box-shadow:
        var(--shadow-medium);
}

.form-header span {

    color: var(--rose-light);

    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 800;
}

.form-header h3 {

    color: var(--white);

    font-family: Georgia, serif;

    font-size: 28px;

    font-weight: 500;

    margin-top: 8px;
}

.form-row {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;
}

.form-row:first-of-type {

    margin-top: 28px;
}

.form-group {

    margin-top: 17px;
}

.form-row .form-group {

    margin-top: 0;
}

.form-group label {

    display: block;

    color: var(--text-soft);

    font-size: 10px;

    font-weight: 700;

    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border:
        1px solid var(--border);

    background:
        rgba(0,0,0,0.22);

    color: var(--white);

    border-radius: 11px;

    outline: none;

    transition:
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.form-group input,
.form-group select {

    height: 47px;

    padding:
        0 14px;

    font-size: 12px;
}

.form-group textarea {

    padding:
        13px 14px;

    font-size: 12px;

    resize: vertical;

    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {

    color:
        #626262;
}

.form-group select {

    appearance: none;

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            var(--rose-light) 50%
        ),
        linear-gradient(
            135deg,
            var(--rose-light) 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 17px) 20px,
        calc(100% - 12px) 20px;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat:
        no-repeat;
}

.form-group select option {

    background:
        var(--charcoal);

    color:
        var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color:
        rgba(199,153,146,0.6);

    background:
        rgba(199,153,146,0.035);

    box-shadow:
        0 0 0 3px rgba(199,153,146,0.06);
}

.form-submit {

    width: 100%;

    min-height: 50px;

    margin-top: 22px;

    border-radius: 12px;

    cursor: pointer;

    background:
        linear-gradient(
            135deg,
            var(--rose),
            var(--rose-light)
        );

    color:
        var(--black);

    font-size: 11px;

    font-weight: 900;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.form-submit:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 35px rgba(199,153,146,0.2);
}

.form-submit span {

    font-size: 17px;
}

.form-note {

    text-align: center;

    color: var(--text-muted);

    font-size: 9px;

    margin-top: 11px;
}


/* =========================================================
   29. FINAL CTA
========================================================= */

.final-cta {

    position: relative;

    overflow: hidden;

    padding:
        125px 24px;

    background:
        #111010;

    border-top:
        1px solid rgba(199,153,146,0.12);
}

.final-cta-background {

    position: absolute;

    inset: 0;

    overflow: hidden;

    pointer-events: none;
}

.cta-orb {

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    filter: blur(90px);

    opacity: 0.12;
}

.orb-one {

    top: -300px;
    left: -120px;

    background: var(--rose);
}

.orb-two {

    bottom: -300px;
    right: -120px;

    background: var(--rose-dark);
}

.final-cta-content {

    position: relative;

    z-index: 2;

    text-align: center;

    max-width: 850px;

    margin-inline: auto;
}

.final-cta-content > span {

    color: var(--rose-light);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 3px;
}

.final-cta-content h2 {

    color: var(--white);

    font-family: Georgia, serif;

    font-size:
        clamp(42px, 6vw, 70px);

    line-height: 1;

    font-weight: 500;

    margin-top: 18px;
}

.final-cta-content h2 strong {

    color: var(--rose-light);

    font-style: italic;

    font-weight: 500;
}

.final-cta-content p {

    color: var(--text-soft);

    font-size: 14px;

    margin-top: 20px;
}

.final-cta-content .btn {

    margin-top: 30px;
}


/* =========================================================
   30. FOOTER
========================================================= */

.site-footer {

    background:
        #070707;

    border-top:
        1px solid rgba(255,255,255,0.05);

    padding-top: 70px;

    padding-bottom: 25px;
}

.footer-main {

    display: grid;

    grid-template-columns:
        1.3fr 0.7fr 0.9fr 1fr;

    gap: 50px;

    padding-bottom: 55px;
}

.footer-logo {

    margin-bottom: 18px;
}

.footer-brand > p {

    color: var(--text-muted);

    font-size: 11px;

    max-width: 250px;
}

.footer-whatsapp {

    display: inline-block;

    margin-top: 18px;

    color: var(--rose-light);

    font-size: 11px;

    font-weight: 700;
}

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
}

.footer-column h4 {

    color: var(--white);

    font-size: 11px;

    letter-spacing: 1px;

    margin-bottom: 7px;
}

.footer-column a {

    color: var(--text-muted);

    font-size: 10px;

    transition:
        color var(--transition-fast),
        transform var(--transition-fast);
}

.footer-column a:hover {

    color: var(--rose-light);

    transform:
        translateX(3px);
}

.footer-column p {

    color: var(--text-muted);

    font-size: 10px;

    line-height: 1.8;

    max-width: 230px;
}

.footer-bottom {

    border-top:
        1px solid rgba(255,255,255,0.06);

    padding-top: 22px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}

.footer-bottom p {

    color: #626262;

    font-size: 9px;
}

.footer-bottom-links a {

    color: var(--text-muted);

    font-size: 9px;

    transition:
        color var(--transition-fast);
}

.footer-bottom-links a:hover {

    color: var(--rose-light);
}


/* =========================================================
   31. MOBILE BOTTOM BAR
========================================================= */

.mobile-bottom-bar {

    display: none;

    position: fixed;

    z-index: 999;

    left: 10px;
    right: 10px;
    bottom: 10px;

    min-height: 65px;

    border-radius: 18px;

    background:
        rgba(28, 28, 28, 0.94);

    border:
        1px solid rgba(255,255,255,0.08);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);

    box-shadow:
        0 15px 50px rgba(0,0,0,0.45);

    padding:
        7px;
}

.mobile-bottom-bar a {

    flex: 1;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 2px;

    color: var(--text-muted);

    border-radius: 12px;

    transition:
        background var(--transition-fast),
        color var(--transition-fast);
}

.mobile-bottom-bar a:hover {

    color: var(--rose-light);

    background:
        rgba(199,153,146,0.06);
}

.mobile-bottom-bar span {

    font-size: 13px;

    font-weight: 800;
}

.mobile-bottom-bar small {

    font-size: 8px;

    font-weight: 600;
}


/* =========================================================
   32. FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {

    position: fixed;

    right: 24px;
    bottom: 25px;

    width: 56px;
    height: 56px;

    border-radius: 50%;

    z-index: 900;

    background:
        linear-gradient(
            135deg,
            var(--rose),
            var(--rose-light)
        );

    color: var(--black);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 10px;

    font-weight: 900;

    box-shadow:
        0 12px 35px rgba(0,0,0,0.35);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.floating-whatsapp::before {

    content: "";

    position: absolute;

    inset: -5px;

    border:
        1px solid rgba(199,153,146,0.3);

    border-radius: 50%;

    animation:
        whatsappPulse 2.2s infinite;
}

.floating-whatsapp:hover {

    transform:
        translateY(-5px) scale(1.05);

    box-shadow:
        0 18px 45px rgba(199,153,146,0.2);
}

@keyframes whatsappPulse {

    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.25);
        opacity: 0;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}


/* =========================================================
   33. TOAST
========================================================= */

.toast {

    position: fixed;

    left: 50%;
    bottom: 30px;

    transform:
        translate(-50%, 30px);

    min-width: 210px;

    padding:
        12px 16px;

    border-radius: 12px;

    background:
        rgba(28,28,28,0.96);

    border:
        1px solid rgba(199,153,146,0.25);

    box-shadow:
        var(--shadow-medium);

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--white);

    font-size: 11px;

    opacity: 0;

    visibility: hidden;

    z-index: 9999;

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.toast.show {

    opacity: 1;

    visibility: visible;

    transform:
        translate(-50%, 0);
}

.toast-icon {

    width: 23px;
    height: 23px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(127,209,163,0.12);

    color:
        var(--success);

    font-size: 11px;

    font-weight: 900;
}


/* =========================================================
   34. REVEAL ANIMATION
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22,1,0.36,1);
}

.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   35. RESPONSIVE — 1200px
========================================================= */

@media (max-width: 1200px) {

    .hero-container {
        gap: 50px;
    }

    .hero-content h1 {
        font-size: 68px;
    }

    .about-grid {
        gap: 60px;
    }

    .why-grid {
        gap: 60px;
    }

    .contact-grid {
        gap: 55px;
    }

}


/* =========================================================
   36. RESPONSIVE — 1000px
========================================================= */

@media (max-width: 1000px) {

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-container {

        grid-template-columns:
            1fr;

        text-align: center;
    }

    .hero-content {

        display: flex;

        flex-direction: column;

        align-items: center;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-visual {
        margin-top: 20px;
    }

    .hero-image-wrapper {
        max-width: 470px;
    }

    .hero-image-placeholder {
        min-height: 500px;
    }

    .about-grid {

        grid-template-columns:
            1fr;

        gap: 55px;
    }

    .about-visual {
        max-width: 550px;
        width: 100%;
        margin-inline: auto;
    }

    .about-content {
        max-width: 700px;
        margin-inline: auto;
    }

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .feature-banner-container {

        grid-template-columns:
            1fr;

        text-align: center;
    }

    .feature-banner-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gallery-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .gallery-large {
        grid-row: span 1;
    }

    .gallery-wide {
        grid-column: span 2;
    }

    .packages-grid {
        grid-template-columns:
            1fr;
        max-width: 650px;
        margin-inline: auto;
    }

    .why-grid {

        grid-template-columns:
            1fr;

        gap: 50px;
    }

    .why-content {
        max-width: 700px;
    }

    .location-card {

        grid-template-columns:
            1fr;
    }

    .location-map {
        min-height: 420px;
        border-left: 0;
        border-top: 1px solid var(--border);
    }

    .contact-grid {

        grid-template-columns:
            1fr;

        gap: 50px;
    }

    .contact-info {
        max-width: 700px;
    }

    .footer-main {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   37. RESPONSIVE — 700px
========================================================= */

@media (max-width: 700px) {

    .section-container,
    .header-container,
    .footer-container,
    .hero-container,
    .feature-banner-container {

        width:
            min(
                calc(100% - 30px),
                var(--container)
            );
    }

    .header-container {
        min-height: 72px;
    }

    .header-whatsapp {
        display: none;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .brand-text strong {
        font-size: 13px;
    }

    .brand-text span {
        font-size: 7px;
        letter-spacing: 2.3px;
    }

    .hero-section {
        padding:
            120px 0 85px;
    }

    .hero-content h1 {

        font-size:
            clamp(45px, 14vw, 65px);

        letter-spacing:
            -2px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-buttons {
        width: 100%;
        justify-content: center;
    }

    .hero-buttons .btn {
        flex: 1;
        min-width: 145px;
    }

    .hero-stats {

        gap: 14px;

        justify-content: center;

        width: 100%;
    }

    .hero-stat strong {
        font-size: 17px;
    }

    .hero-stat span {
        font-size: 8px;
    }

    .hero-stat-divider {
        height: 30px;
    }

    .hero-image-placeholder {
        min-height: 430px;
    }

    .floating-card-top {
        right: -5px;
        top: 45px;
    }

    .floating-card-bottom {
        left: -5px;
        bottom: 40px;
    }

    .floating-card {
        padding: 10px 11px;
    }

    .floating-card strong {
        font-size: 9px;
    }

    .floating-card small {
        font-size: 7px;
    }

    .section {
        padding:
            85px 0;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .section-heading h2,
    .why-content h2 {
        font-size:
            clamp(34px, 10vw, 48px);
    }

    .section-heading p {
        font-size: 12px;
    }

    .about-image-placeholder {
        min-height: 420px;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        right: -5px;
        bottom: 25px;
    }

    .experience-badge strong {
        font-size: 23px;
    }

    .experience-badge span {
        font-size: 7px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 300px;
    }

    .feature-banner {
        padding:
            80px 0;
    }

    .feature-banner-content h2 {
        font-size:
            clamp(40px, 12vw, 58px);
    }

    .feature-banner-visual {
        min-height: 290px;
    }

    .ring-one {
        width: 260px;
        height: 260px;
    }

    .ring-two {
        width: 195px;
        height: 195px;
    }

    .ring-three {
        width: 130px;
        height: 130px;
    }

    .gallery-grid {

        grid-template-columns:
            1fr;

        grid-auto-rows:
            260px;
    }

    .gallery-wide {
        grid-column: span 1;
    }

    .gallery-large {
        grid-row: span 1;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

    .location-content {
        padding: 35px 25px;
    }

    .location-map {
        min-height: 330px;
    }

    .contact-form-wrapper {
        padding: 24px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-row .form-group {
        margin-top: 17px;
    }

    .form-row:first-of-type {
        margin-top: 20px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .floating-whatsapp {
        display: none;
    }

    .mobile-bottom-bar {
        display: flex;
    }

    .site-footer {
        padding-bottom: 100px;
    }

    .toast {
        bottom: 90px;
    }

}


/* =========================================================
   38. RESPONSIVE — 450px
========================================================= */

@media (max-width: 450px) {

    .hero-content h1 {
        font-size: 43px;
    }

    .hero-badge {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 10px;
    }

    .hero-stat strong {
        font-size: 15px;
    }

    .hero-stat span {
        font-size: 7px;
    }

    .floating-card-top {
        right: -8px;
    }

    .floating-card-bottom {
        left: -8px;
    }

    .service-card {
        padding: 27px;
    }

    .package-card {
        padding: 28px 22px;
    }

    .location-buttons {
        flex-direction: column;
    }

    .location-buttons .btn {
        width: 100%;
    }

    .final-cta {
        padding:
            90px 18px;
    }

    .final-cta-content h2 {
        font-size: 41px;
    }

    .mobile-bottom-bar {
        left: 6px;
        right: 6px;
        bottom: 6px;
    }

}


/* =========================================================
   39. ACCESSIBILITY
========================================================= */

:focus-visible {

    outline:
        2px solid var(--rose-light);

    outline-offset:
        3px;
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }
}


/* =========================================================
   40. END
========================================================= */