/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #061a40;
    --white: #ffffff;
    --gray-100: #eef8ff;
    --gray-200: #cfeefe;
    --gray-300: #9edcf8;
    --gray-600: #49657d;
    --gray-800: #102a43;
    --gold: #38bdf8;
    --gold-light: #dff6ff;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow: 0 20px 60px rgba(6, 26, 64, 0.08);
    --shadow-hover: 0 30px 80px rgba(6, 26, 64, 0.14);
    --radius: 16px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: #fbfdff;
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    background: var(--black);
    color: var(--white);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(6, 26, 64, 0.18);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: #7dd3fc;
    color: var(--black);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

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

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(56, 189, 248, 0.18);
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(6, 26, 64, 0.10);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--gold);
}

.logo.logo-with-image {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo.logo-with-image img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: contain;
    background: var(--white);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.8vw, 28px);
    list-style: none;
}

.nav-desktop a {
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
    position: relative;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--black);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-cta {
    margin-left: 2px;
}

.nav-cta .btn {
    padding: 9px 18px;
    font-size: 0.82rem;
}

.profile-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    font-size: 1.55rem;
    color: var(--gray-600);
    transition: var(--transition);
    padding: 4px;
}

.profile-icon-link:hover {
    color: var(--black);
    background: var(--gold-light);
    transform: translateY(-1px);
}

.profile-icon-link .profile-icon {
    font-size: 1.55rem;
}

.profile-icon-link .profile-icon.active-user {
    color: var(--black);
}

body.is-logged-in .nav-desktop {
    gap: clamp(12px, 1.45vw, 22px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--black);
    border-radius: 4px;
    transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

.nav-mobile {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: var(--white);
    padding: 32px 24px;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid var(--gray-200);
    overflow-y: auto;
    z-index: 999;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    font-size: 1.2rem;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}

.nav-mobile a.active {
    color: var(--gold);
}

/* ============================================================
   PAGE SECTIONS
   ============================================================ */
.page-section {
    display: none;
    padding-top: 88px;
    min-height: 100vh;
    animation: fadeUp 0.5s ease;
}

.page-section.active {
    display: block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: 60px 0 80px;
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 90vh;
}

.hero-content {
    flex: 1;
}

.hero-content .badge {
    display: inline-block;
    background: var(--gray-100);
    padding: 6px 18px;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: var(--gray-600);
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--gold);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image .placeholder-img {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--gray-300);
    position: relative;
    overflow: hidden;
}

.hero-image .placeholder-img::after {
    content: '👟';
    font-size: 8rem;
    opacity: 0.3;
}

.hero-image .placeholder-img.has-hero-image {
    background: var(--white);
    box-shadow: var(--shadow);
}

.hero-image .placeholder-img.has-hero-image::after {
    content: none;
}

.hero-image .placeholder-img.has-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.section-title p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.section-title .subtitle-gold {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.why-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(56, 189, 248, 0.16);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.why-card .icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
    color: var(--gold);
}

.why-card h4 {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.why-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
    padding: 80px 0;
}

.how-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    position: relative;
}

.step .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.step h4 {
    font-weight: 600;
    font-size: 1.05rem;
}

.step p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.step-arrow {
    font-size: 1.8rem;
    color: var(--gray-300);
    align-self: center;
    margin-top: 20px;
}

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.services-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(56, 189, 248, 0.16);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.service-card .img-placeholder {
    height: 180px;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.6rem;
    color: var(--gray-600);
}

.service-card .body {
    padding: 24px;
}

.service-card .body h4 {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.service-card .body p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

/* ============================================================
   BEFORE & AFTER
   ============================================================ */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-100);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: var(--gray-300);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

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

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

.gallery-item .label {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(6, 26, 64, 0.78);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 500;
}

.gallery-item .gallery-caption {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 52px;
    color: var(--white);
    font-size: 0.82rem;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(6, 26, 64, 0.55);
}

.gallery-empty {
    grid-column: 1 / -1;
    padding: 40px 20px;
    text-align: center;
    color: var(--gray-600);
    border: 1px dashed var(--gray-300);
    border-radius: var(--radius);
}

/* ============================================================
   SUBSCRIPTION PREVIEW
   ============================================================ */
.sub-preview-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.sub-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 16px;
}

.sub-preview-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(56, 189, 248, 0.16);
    transition: var(--transition);
}

.sub-preview-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.sub-preview-card .price {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 8px 0 4px;
}

.sub-preview-card .price small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-600);
}

.sub-preview-card ul {
    list-style: none;
    margin: 16px 0 24px;
    text-align: left;
}

.sub-preview-card ul li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sub-preview-card ul li i {
    color: var(--gold);
    width: 18px;
}

.sub-preview-card.featured {
    border: 2px solid var(--gold);
    position: relative;
}

.sub-preview-card.featured .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    padding: 4px 20px;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--gray-100);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.testimonial-card .stars {
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.testimonial-card .author {
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-card .author span {
    font-weight: 400;
    color: var(--gray-600);
    font-size: 0.85rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--black);
    color: var(--gray-300);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 12px;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-col h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 12px;
}

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

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

.footer-col ul li a {
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px 0;
}

.about-grid .img-placeholder {
    background: var(--gray-100);
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--gray-300);
    overflow: hidden;
}

.about-grid .img-placeholder.has-about-image {
    background: var(--white);
    box-shadow: var(--shadow);
}

.about-grid .img-placeholder.has-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-grid h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-grid p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.about-grid .values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.about-grid .values .val {
    background: var(--gray-100);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    padding: 20px 0;
}

.pricing-card {
    background: var(--gray-100);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.pricing-card h4 {
    font-weight: 600;
    font-size: 1.2rem;
}

.pricing-card .price {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 8px 0 16px;
}

.pricing-card .price small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-600);
}

/* ============================================================
   BOOKING FORM
   ============================================================ */
.booking-form {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 0;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-family: var(--font);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.16);
}

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

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 28px;
    padding: 32px 0 60px;
}
.contact-redesign {
    align-items: stretch;
}
.contact-info,
.contact-panel {
    min-width: 0;
}
.contact-info {
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 100%;
    box-shadow: var(--shadow);
}
.contact-copy .mini-label,
.contact-form-header .mini-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 8px;
}
.contact-copy h3 {
    font-size: 1.45rem;
    line-height: 1.3;
    margin-bottom: 10px;
}
.contact-copy p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    max-width: 520px;
}
.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
}

.contact-info .info-item i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.16);
    color: var(--gold);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
}

.contact-info .info-item .text {
    font-weight: 500;
    overflow-wrap: anywhere;
}

.contact-info .info-item .text small {
    display: block;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.85rem;
}

.contact-location {
    margin-top: auto;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: var(--radius);
    padding: 18px;
}
.contact-location i {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--black);
    border-radius: var(--radius-sm);
}
.contact-location strong,
.contact-location span,
.contact-location small {
    display: block;
}
.contact-location strong {
    color: var(--white);
    margin-bottom: 2px;
}
.contact-location span {
    color: rgba(255, 255, 255, 0.78);
    overflow-wrap: anywhere;
}
.contact-location small {
    color: rgba(255, 255, 255, 0.56);
    margin-top: 4px;
}
.contact-panel {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    min-height: 100%;
}
.contact-form {
    width: 100%;
    padding: 34px;
}
.contact-form-header {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--gray-200);
}
.contact-form-header h3 {
    font-size: 1.5rem;
    line-height: 1.25;
    color: var(--black);
}
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-form .form-group {
    margin-bottom: 18px;
}
.contact-form label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--gray-100);
    color: var(--black);
    font-family: var(--font);
    font-size: 0.95rem;
    padding: 14px 15px;
    transition: var(--transition);
}
.contact-form textarea {
    resize: vertical;
    min-height: 170px;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
}
.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    margin-top: 4px;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    padding: 20px 0;
}

.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.blog-card .img {
    height: 200px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: var(--gray-300);
}

.blog-card .body {
    padding: 20px;
}

.blog-card .body .meta {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.blog-card .body h4 {
    font-weight: 600;
    margin-bottom: 6px;
}

.blog-card .body p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--black);
    color: var(--white);
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 500;
    box-shadow: 0 12px 40px rgba(6, 26, 64, 0.24);
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center {
    text-align: center;
}

.mt-16 {
    margin-top: 16px;
}

.mt-32 {
    margin-top: 32px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-32 {
    margin-bottom: 32px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 0 60px;
        min-height: auto;
    }
    .hero-content p {
        max-width: 100%;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image .placeholder-img {
        max-width: 400px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 24px 0 48px;
    }
    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .nav-desktop {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .step-arrow {
        display: none;
    }
    .how-steps {
        flex-direction: column;
        align-items: center;
    }
    .step {
        max-width: 300px;
    }
    .booking-form .form-row {
        grid-template-columns: 1fr;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .hero-content h1 {
        font-size: 2.6rem;
    }
}

@media (max-width: 640px) {
    .contact-info,
    .contact-form {
        padding: 24px;
    }
    .contact-copy h3,
    .contact-form-header h3 {
        font-size: 1.25rem;
    }
    .contact-info .info-item,
    .contact-location {
        padding: 14px;
    }
    .contact-methods {
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .about-grid .values {
        grid-template-columns: 1fr;
    }
    .sub-preview-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .container {
        padding: 0 16px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}
