@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
    --charcoal: #1C1C1C;
    --warm-white: #FDFCF9;
    --light-blue: #00c6ff;
    --dark-blue: #0077ff;
    --text-faded: #555550;

    --bg:        #F8F6F2;
    --bg-alt:    #FFFFFF;
    --ink:       #111111;
    --ink-mid:   #555550;
    --ink-faint: #999990;
    --border:    rgba(0,0,0,0.07);
    --accent:    #0077ff;
    --accent-lt: #00c6ff;
}

*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* ------------------------------
   GLOBAL LAYOUT + TYPOGRAPHY
------------------------------ */
html {
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: var(--warm-white) var(--charcoal);
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    line-height: 1.6;
}

.bodySection h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111;
}

.bodySection p {
    color: #555;
}

.section {
    padding: 80px 0px;
}

.section-services {
    padding-bottom: 0px;
}

.service-container {
    width: 100%;
    margin: 0 auto;
    padding: 0px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

.title-padding {
    padding: 0px 10%;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    gap: 40px;
}

.section-subtitle {
    display: flex;
    gap: 1rem;
    align-items: center;

    & p {
        color: var(--dark-blue);
        font-size: clamp(.8rem, 1vw, 1.1rem);
    }

    & span {
        display: block;
        width: clamp(2.4rem, 4.5vw, 3.8rem);
        height: 2px;
        background: var(--dark-blue);
    }
}

.section-title {
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 300;
    line-height: 1.5;
    max-width: 600px;
    font-family: 'Cormorant Garamond', Georgia, serif;

    & span{
        color: var(--dark-blue);
        font-style: italic;
        font-family: 'Cormorant Garamond', Georgia, serif;
    }
}

.section-description {
    grid-column: 2 / 3;
  grid-row: 2 / 3;
  align-self: end;
  font-size: clamp(.8rem,1vw,1rem);
  line-height: 1.9;
  color: var(--text-faded);
  max-width: 400px;
  padding-bottom: 6px;
}



/* ------------------------------
   SERVICES GRID
------------------------------ */

.section-services {
    background: var(--bg);
    overflow: hidden;
}

/* ── Intro header ── */
.services-intro {
    padding: 90px 10% 70px;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    align-items: end;
}

.services-intro-label {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 20px;
}

.services-intro-label span {
    display: block;
    width: clamp(2.4rem, 4.5vw, 3.8rem);
    height: 2px;
    background: var(--accent);
}

.services-intro-label p {
    color: var(--accent);
    font-size: clamp(0.7rem, 1vw, 0.82rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.services-intro-title {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--ink);
    line-height: 1.1;
}

.services-intro-title em {
    font-style: italic;
    color: var(--accent);
}

.services-intro-sub {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    align-self: end;
    font-size: 0.85rem;
    line-height: 1.9;
    color: var(--ink-mid);
    max-width: 400px;
    padding-bottom: 6px;
}

/* ── Panels ── */
.services-panels { display: flex; flex-direction: column; }

.service-panel {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
    
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.service-panel.panel-visible { opacity: 1; transform: translateY(0); }
.service-panel:nth-child(1) { transition-delay: 0s; }
.service-panel:nth-child(2) { transition-delay: 0.1s; }
.service-panel:nth-child(3) { transition-delay: 0.2s; }

.service-panel.panel-flip { grid-template-columns: 45% 55%; }
.service-panel.panel-flip .panel-media { order: 2; }
.service-panel.panel-flip .panel-content { order: 1; }

/* Photo */
.panel-media {
    position: relative;
    overflow: hidden;
    background: #ddd;
}

.panel-media img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transform: scale(1.04);
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-panel:hover .panel-media img { transform: scale(1); }

/* Placeholder for preview */
.panel-ph {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    transform: scale(1.04);
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-panel:hover .panel-ph { transform: scale(1); }
.ph-res    { background: linear-gradient(145deg, #b8c8c2, #8aa8a0); }
.ph-airbnb { background: linear-gradient(145deg, #b8bece, #8a94b0); }
.ph-comm   { background: linear-gradient(145deg, #c8c0b0, #a8988a); }

/* Light-side gradient overlay */
.panel-media-overlay {
    position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(90deg, rgba(248,246,242,0.3) 0%, rgba(248,246,242,0) 50%);
}
.service-panel.panel-flip .panel-media-overlay {
    background: linear-gradient(270deg, rgba(248,246,242,0.3) 0%, rgba(248,246,242,0) 50%);
}

/* Content */
.panel-content {
    display: flex; flex-direction: column; justify-content: center;
    padding: 60px 70px 60px 60px;
    background: var(--bg);
    position: relative; z-index: 1;
}
.service-panel.panel-flip .panel-content { padding: 60px 60px 60px 70px; }

.panel-index {
    font-size: 5rem; font-weight: 300;
    color: rgba(0, 119, 255, 0.08);
    line-height: 1; letter-spacing: -0.02em;
    margin-bottom: 18px;
    transition: color 0.4s ease;
}
.service-panel:hover .panel-index { color: rgba(0, 119, 255, 0.15); }

.panel-tag {
    font-size: 0.62rem; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 20px;
}

.panel-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 300;
    color: var(--ink); line-height: 1.18; 
    margin-bottom: 24px;
}
.panel-title em { 
    font-style: italic; 
    color: var(--accent); 
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.panel-desc {
    font-size: 0.82rem; line-height: 1.95;
    color: var(--ink-mid); margin-bottom: 28px; max-width: 360px;
}

.panel-list { list-style: none; margin-bottom: 40px; }
.panel-list li {
    font-size: 0.75rem; letter-spacing: 0.06em;
    color: var(--ink-mid);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 14px;
    transition: color 0.3s ease;
}
.panel-list li::before {
    content: ''; width: 20px; height: 1px;
    background: var(--accent); flex-shrink: 0; opacity: 0.5;
}
.service-panel:hover .panel-list li { color: var(--ink); }

.panel-link {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ink-faint); text-decoration: none;
    transition: color 0.3s ease, gap 0.3s ease; width: fit-content;
}
.panel-link svg { transition: transform 0.3s ease; flex-shrink: 0; }
.panel-link:hover { color: var(--accent); gap: 18px; }
.panel-link:hover svg { transform: translateX(4px); stroke: var(--accent); }

/* Accent bar */
.panel-accent-bar {
    position: absolute; top: 0; left: 0; height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--blue-dark) 0%, rgba(0,198,255,0.75) 50%, rgba(255,255,255,0) 100%);
    transition: width 0.5s ease; z-index: 10;
}
.service-panel:hover .panel-accent-bar { 
    width: 100%; 
}

/* ------------------------------
   PROCESS (WHAT TO EXPECT)
------------------------------ */

.section-process {
    background: var(--charcoal);
    color: white;
    padding: 80px 0px;
}

.container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0px 10%;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.process-cards-container {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.process-card {
    flex: 1;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 50px 36px 44px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 300px;
    position: relative;
    transition: all .6s ease;
    cursor: default;
}

.process-number {
    font-size: 4.5rem;
    font-weight: 300;
    color: rgba(0, 200, 255, 0.2);
    line-height: 1;
    letter-spacing: -0.02em;
}

.process-label {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: .1em;
}

.process-comment {
    font-size: 0.78rem;
    line-height: 1.9;
    color: var(--text-faded);
    letter-spacing: .1em;
}

.process-card-border {
    width: 0%;
    height: 4px;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, rgb(0, 119, 255) 0%, rgba(0, 198, 255, .75) 40%, rgba(255, 255, 255, 0) 80%);
    transition: width .5s ease;
}

.process-card:hover {
    background: rgba(92, 220, 255, 0.025);
    border: 1px solid rgba(0, 198, 255, .25);
    & .process-card-border {
        width: 100%;
    }
}

/* ------------------------------
   BEFORE & AFTER GALLERY
------------------------------ */

.section-gallery {
    background: #f8f9fb;
}

.gallery-slider {
    display: grid;
    gap: 40px;
}

.gallery-slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* ------------------------------
   WHY CHOOSE US
------------------------------ */

/* ════════════════════════════════════════════════
   WHY CHOOSE — LIGHT
════════════════════════════════════════════════ */
.section-why {
    background: var(--bg-alt);
    padding: 90px 10%;
}

.section-label {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 20px;
}
.section-label span {
    display: block; width: clamp(2.4rem, 4.5vw, 3.8rem); height: 2px; background: var(--accent);
}
.section-label p {
    color: var(--accent); font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 300;
    color: var(--ink); line-height: 1.15; max-width: 600px;
}
.section-title em { font-style: italic; color: var(--accent); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.why-card {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 42px 34px;
    position: relative; overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.07);
    border-color: rgba(0, 119, 255, 0.2);
}

.why-card-num {
    font-size: 3rem; font-weight: 300;
    color: rgba(0,119,255,0.1); line-height: 1; margin-bottom: 20px;
}
.why-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem; font-weight: 400; margin-bottom: 12px; color: var(--ink);
}
.why-card p { font-size: 0.78rem; line-height: 1.8; color: var(--ink-mid); }

.why-card-bar {
    position: absolute; top: 0; left: 0; height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--blue-dark) 0%, rgba(0,198,255,0.6) 60%, transparent 100%);
    transition: width 0.4s ease;
}
.why-card:hover .why-card-bar { width: 100%; }

/* ------------------------------
   TESTIMONIALS
------------------------------ */

.section-testimonials {
    background: #f8f9fb;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    font-style: italic;
}

.testimonial-meta {
    margin-top: 12px;
    font-weight: 600;
    color: #333;
}

/* ------------------------------
   CTA SECTION
------------------------------ */

.section-cta {
    background: var(--ink);
    padding: 90px 10%;
    text-align: center;
    position: relative; 
    overflow: hidden;
}
.section-cta::before {
    content: '';
    position: absolute; 
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(0,119,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.section-cta h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem); 
    font-weight: 300;
    color: var(--warm-white); 
    line-height: 1.2; 
    margin-bottom: 16px;
}
.section-cta h2 em { 
    font-style: italic; 
    color: var(--light-blue); 
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.section-cta p {
    font-size: 0.85rem; 
    line-height: 1.8;
    color: rgba(255,255,255,0.45); 
    margin-bottom: 44px; 
    max-width: 460px; 
    margin-left: auto; 
    margin-right: auto;
}

.btn-primary {
    display: inline-flex; 
    align-items: center; 
    gap: 14px;
    padding: 18px 48px;
    background: var(--dark-blue);
    color: #fff; 
    text-decoration: none;
    font-size: 0.68rem; 
    letter-spacing: 0.25em; 
    text-transform: uppercase;
    transition: background 0.3s ease, gap 0.3s ease;
}
.btn-primary::after { 
    content: '→'; 
    font-size: 1rem; 
}
.btn-primary:hover { 
    background: var(--light-blue); 
    gap: 20px; 
}

/* ════════════════════════════════════════════════
   TESTIMONIALS — LIGHT
════════════════════════════════════════════════ */

.section-testimonials {
    background: var(--bg);
    padding: 90px 10%;
    border-top: 1px solid var(--border);
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.test-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 48px 40px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.test-card:hover {
    border-color: rgba(0, 119, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.test-stars { 
    display: flex; 
    gap: 4px; 
    margin-bottom: 24px; 
}
.test-stars svg { 
    width: 13px; 
    height: 13px; 
    color: var(--accent); 
    fill: var(--accent); 
}

.test-card blockquote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.18rem; 
    font-style: italic; 
    font-weight: 300;
    line-height: 1.7; 
    color: var(--ink); 
    margin-bottom: 28px;
}

.test-reviewer { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}

.test-avatar {
    width: 36px; 
    height: 36px; 
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark-blue), var(--light-blue));
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-family: 'Cormorant Garamond', serif; 
    font-size: 1rem; 
    color: #fff;
}
.test-name { 
    font-size: 0.76rem; 
    font-weight: 500; 
    color: var(--ink); 
}
.test-detail { 
    font-size: 0.65rem; 
    color: var(--ink-faint); 
    margin-top: 2px; 
    letter-spacing: 0.05em; 
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 1000px) {
    .why-grid { grid-template-columns: 1fr 1fr; }
    .test-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .services-intro { grid-template-columns: 1fr; padding: 60px 6% 50px; }
    .services-intro-sub { grid-column: 1 / 2; grid-row: auto; margin-top: 20px; max-width: 100%; }
    .service-panel, .service-panel.panel-flip {
        grid-template-columns: 1fr;
        grid-template-rows: 280px auto;
        min-height: unset;
    }
    .service-panel .panel-media,
    .service-panel.panel-flip .panel-media { order: 0; }
    .service-panel .panel-content,
    .service-panel.panel-flip .panel-content { order: 1; padding: 44px 6%; }
    .process-head { flex-direction: column; align-items: flex-start; }
    .section-why, .section-testimonials, .section-cta { padding-left: 6%; padding-right: 6%; }
}

@media (max-width: 600px) {
    .why-grid { grid-template-columns: 1fr; }
    .section-process { padding: 70px 0; }
    .process-container { padding: 0 6%; }
}