:root {
    --coral: #FF6F61;
    --coral-dark: #e85a4c;
    --coral-light: #ff8f84;
    --coral-pale: #fff0ee;
    --dark: #1a1a1a;
    --dark2: #2c2c2c;
    --mid: #555;
    --light: #f8f5f4;
    --white: #ffffff;
    --gold: #c9a96e;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

/* ─── NAVBAR ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 74px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 111, 97, 0.12);
    box-shadow: 0 2px 30px rgba(255, 111, 97, 0.08);
}

.nav-left,
.nav-right {
    display: flex;
    gap: 34px;
    align-items: center;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-left a,
.nav-right a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--dark2);
    transition: color 0.3s;
    position: relative;
}

.nav-left a::after,
.nav-right a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width 0.3s;
}

.nav-left a:hover::after,
.nav-right a:hover::after {
    width: 100%;
}

.nav-left a:hover,
.nav-right a:hover {
    color: var(--coral);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0 24px;
}

.nav-logo .logo-image {
    width: 210px;
    max-width: 100%;
    height: auto;
    display: block;
}

/* ─── HERO ─── */
#hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c1a18 60%, #3d1f1a 100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF6F61' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-big-text {
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(120px, 22vw, 280px);
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 111, 97, 0.25);
    letter-spacing: -2px;
    user-select: none;
    text-align: center;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: color 0.3s, -webkit-text-stroke 0.3s;
    pointer-events: none;
}

.hero-big-text.filled {
    color: var(--coral);
    -webkit-text-stroke: 0px transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s, transform 0.8s;
}

.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 111, 97, 0.15);
    border: 1px solid rgba(255, 111, 97, 0.4);
    color: var(--coral-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 40px;
    margin-bottom: 28px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 6vw, 78px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 22px;
}

.hero-title span {
    color: var(--coral);
}

.hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 480px;
    margin: 0 auto 38px;
    line-height: 1.7;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--coral);
    color: white;
    padding: 15px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(255, 111, 97, 0.4);
}

.btn-primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 111, 97, 0.55);
}

.btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 15px 36px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: var(--coral);
    color: var(--coral);
    transform: translateY(-2px);
}

.hero-cards {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 56px;
    opacity: 0;
    transition: opacity 0.8s 0.4s, transform 0.8s 0.4s;
    transform: translateY(30px);
}

.hero-cards.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 111, 97, 0.18);
    border-radius: 14px;
    padding: 18px 26px;
    text-align: center;
    min-width: 130px;
}

.hero-card .num {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--coral);
    line-height: 1;
}

.hero-card .lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero-scroll span {
    width: 1px;
    height: 40px;
    background: rgba(255, 111, 97, 0.4);
}

@keyframes bounce {

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

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* ─── SECTION COMMONS ─── */
section {
    padding: 100px 40px;
}

.section-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4.5vw, 52px);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 18px;
}

.section-title span {
    color: var(--coral);
}

.section-desc {
    font-size: 16px;
    color: var(--mid);
    line-height: 1.8;
    max-width: 560px;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
}

/* ─── SERVICES GRID ─── */
#services {
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    padding-top: 20px;
}

.srv-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 30px;
    width: 100%;
    border: 1.5px solid transparent;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

.srv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--coral);
    border-radius: 4px 0 0 4px;
    transition: width 0.35s;
}

.srv-card:hover {
    border-color: var(--coral);
    box-shadow: 0 12px 50px rgba(255, 111, 97, 0.18);
    transform: translateY(-4px);
}

.srv-card:hover::before {
    width: 6px;
}

.srv-icon {
    width: 52px;
    height: 52px;
    background: var(--coral-pale);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 24px;
    color: var(--coral);
}

.srv-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.srv-card p {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.75;
}

.srv-price {
    display: inline-block;
    margin-top: 14px;
    font-weight: 600;
    font-size: 13px;
    color: var(--coral);
    background: var(--coral-pale);
    padding: 5px 14px;
    border-radius: 30px;
}

.spiral-bottom-img {
    margin-top: 60px;
    border-radius: 24px;
    overflow: hidden;
    height: 340px;
    position: relative;
}

.spiral-bottom-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.spiral-bottom-img .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 36px;
}

.spiral-bottom-img .overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: white;
    font-weight: 700;
}

.spiral-bottom-img .overlay span {
    color: var(--coral);
}

/* ─── WHY CHOOSE US ─── */
#why {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

#why::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FF6F61' fill-opacity='0.03'%3E%3Cpath d='M40 0L80 40 40 80 0 40z'/%3E%3C/g%3E%3C/svg%3E");
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-img-wrap {
    position: relative;
}

.why-img-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.why-img-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--coral);
    color: white;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(255, 111, 97, 0.5);
}

.why-img-badge .big {
    font-family: 'Bebas Neue';
    font-size: 42px;
    line-height: 1;
}

.why-img-badge .sm {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.85;
}

.why-text .section-title {
    color: var(--white);
}

.why-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.85;
    margin-bottom: 38px;
    max-width: 500px;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.feat-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 111, 97, 0.15);
    border-radius: 14px;
    padding: 22px 20px;
    transition: all 0.3s;
}

.feat-box:hover {
    background: rgba(255, 111, 97, 0.08);
    border-color: rgba(255, 111, 97, 0.4);
    transform: translateY(-2px);
}

.feat-box .feat-icon {
    font-size: 22px;
    margin-bottom: 10px;
}

.feat-box h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.feat-box p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

.why-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.why-stat {
    text-align: center;
}

.why-stat .n {
    font-family: 'Bebas Neue';
    font-size: 48px;
    color: var(--coral);
    line-height: 1;
}

.why-stat .l {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 3px;
}

/* ─── SERVICE AREAS ─── */
#areas {
    background: var(--white);
}

.areas-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.areas-intro .section-desc {
    margin: 0 auto;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 12px;
}

.area-pill {
    background: var(--light);
    border: 1.5px solid transparent;
    border-radius: 50px;
    padding: 13px 22px;
    text-align: center;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--dark2);
    transition: all 0.3s;
    cursor: default;
}

.area-pill:hover {
    background: var(--coral);
    color: white;
    border-color: var(--coral);
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(255, 111, 97, 0.3);
}

.area-pill.main {
    background: var(--coral);
    color: white;
    border-color: var(--coral);
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(255, 111, 97, 0.3);
}

/* ─── ABOUT ─── */
#about {
    background: var(--coral-pale);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-text {}

.about-text .section-title {
    color: var(--dark);
}

.about-text p {
    font-size: 15.5px;
    color: var(--mid);
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-vals {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
}

.about-val {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: white;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 2px 16px rgba(255, 111, 97, 0.06);
}

.about-val .dot {
    width: 10px;
    height: 10px;
    background: var(--coral);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.about-val h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}

.about-val p {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.5;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(255, 111, 97, 0.15);
}

.about-img .tag-float {
    position: absolute;
    top: 28px;
    right: -18px;
    background: var(--coral);
    color: white;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 28px rgba(255, 111, 97, 0.45);
}

/* ─── PREMIUM SERVICES ─── */
#premium {
    background: var(--dark2);
}

.premium-title {
    color: var(--white) !important;
}

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

.prem-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 111, 97, 0.12);
    border-radius: 20px;
    padding: 34px 28px;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

.prem-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--coral);
    transform: scaleX(0);
    transition: transform 0.35s;
    transform-origin: left;
}

.prem-card:hover {
    background: rgba(255, 111, 97, 0.07);
    border-color: rgba(255, 111, 97, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(255, 111, 97, 0.15);
}

.prem-card:hover::after {
    transform: scaleX(1);
}

.prem-num {
    font-family: 'Bebas Neue';
    font-size: 58px;
    color: rgba(255, 111, 97, 0.12);
    line-height: 1;
    margin-bottom: 12px;
}

.prem-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.prem-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
}

.prem-card .badge {
    display: inline-block;
    margin-top: 16px;
    background: rgba(255, 111, 97, 0.18);
    color: var(--coral-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 30px;
    text-transform: uppercase;
}

/* ─── FAQ ─── */
#faq {
    background: var(--light);
}

.faq-wrap {
    max-width: 760px;
    margin: 50px auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 111, 97, 0.15);
    margin-bottom: 0;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    cursor: pointer;
    gap: 20px;
}

.faq-q h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    transition: color 0.3s;
}

.faq-item.open .faq-q h4 {
    color: var(--coral);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: var(--coral-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--coral);
    font-size: 20px;
    font-weight: 300;
    transition: all 0.3s;
}

.faq-item.open .faq-toggle {
    background: var(--coral);
    color: white;
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s;
}

.faq-item.open .faq-a {
    max-height: 200px;
}

.faq-a p {
    font-size: 14.5px;
    color: var(--mid);
    line-height: 1.8;
    padding-bottom: 22px;
}

/* ─── DETAIL SERVICES ─── */
#detail {
    background: var(--white);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 50px;
}

.detail-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 280px;
    cursor: pointer;
}

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

.detail-card:hover img {
    transform: scale(1.06);
}

.detail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.88) 0%, rgba(26, 26, 26, 0.3) 60%, transparent 100%);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background 0.4s;
}

.detail-card:hover .detail-overlay {
    background: linear-gradient(to top, rgba(255, 111, 97, 0.85) 0%, rgba(26, 26, 26, 0.6) 100%);
}

.detail-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.detail-overlay p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.detail-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.detail-card:hover .detail-link {
    opacity: 1;
}

/* ─── FEATURED SERVICES ─── */
#featured {
    background: var(--coral-pale);
}

.feat-serv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.fs-card {
    background: white;
    border-radius: 18px;
    padding: 28px 24px;
    border: 1.5px solid transparent;
    transition: all 0.3s;
    text-align: center;
}

.fs-card:hover {
    border-color: var(--coral);
    box-shadow: 0 10px 40px rgba(255, 111, 97, 0.15);
    transform: translateY(-4px);
}

.fs-num {
    font-family: 'Bebas Neue';
    font-size: 52px;
    color: var(--coral);
    line-height: 1;
    margin-bottom: 12px;
}

.fs-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.fs-card p {
    font-size: 13.5px;
    color: var(--mid);
    line-height: 1.7;
}

.fs-price {
    margin-top: 16px;
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--coral);
}

/* ─── CONTACT ─── */
#contact {
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
}

.contact-info h2 span {
    color: var(--coral);
}

.contact-info p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
}

.c-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.c-detail .icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 111, 97, 0.12);
    border: 1px solid rgba(255, 111, 97, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.c-detail .text h4 {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.c-detail .text a,
.c-detail .text span {
    font-size: 15px;
    color: white;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.c-detail .text a:hover {
    color: var(--coral);
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    height: 340px;
    border: 2px solid rgba(255, 111, 97, 0.2);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form {}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 14px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 111, 97, 0.18);
    border-radius: 10px;
    padding: 13px 16px;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--coral);
    background: rgba(255, 111, 97, 0.06);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select option {
    background: var(--dark2);
}

.form-submit {
    background: var(--coral);
    color: white;
    border: none;
    padding: 15px 36px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 8px 30px rgba(255, 111, 97, 0.35);
}

.form-submit:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 111, 97, 0.5);
}

/* ─── FOOTER ─── */
footer {
    background: #111;
    padding: 54px 40px 30px;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: var(--coral);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon i {
    font-size: 24px;
    color: white;
}

.footer-logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--coral);
}

.footer-links span {
    color: rgba(255, 111, 97, 0.3);
    font-size: 12px;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.soc {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.soc:hover {
    background: var(--coral);
    color: white;
    border-color: var(--coral);
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.25);
}

.footer-bottom a {
    color: var(--coral);
    text-decoration: none;
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s, transform 0.7s;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ─── PHONE FLOAT ─── */
.phone-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: var(--coral);
    color: white;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(255, 111, 97, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    animation: float 3s ease-in-out infinite;
}

.phone-float:hover {
    background: var(--coral-dark);
    transform: translateY(-3px) scale(1.03);
}

@keyframes float {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(255, 111, 97, 0.5);
    }

    50% {
        box-shadow: 0 14px 50px rgba(255, 111, 97, 0.7);
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    nav {
        padding: 0 20px;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    section {
        padding: 70px 20px;
    }

    .why-grid,
    .about-grid,
    .contact-grid,
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .prem-grid,
    .feat-serv-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-cards {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {

    .prem-grid,
    .feat-serv-grid {
        grid-template-columns: 1fr;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}