/*
Theme Name: Reeljoy.io
Theme URI: https://reeljoy.io
Author: Manoj Thilakshana
Author URI: https://reeljoy.io
Description: A professional WordPress theme for digital marketing and SEO services.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: reeljoy
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,300;0,400;0,500;1,400&family=Inter:wght@400;500;600;700;800&display=swap');

/* --- Design System --- */
:root {
    /* Colors */
    --primary: #ffd000;
    --dark: #010101;
    --light: #f8fafc;
    --text-main: #2d2d2d;
    --text-muted: #666666;
    --white: #ffffff;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Styles --- */
html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 18px;
    /* Desktop P */
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--light);
    margin: 0;
    overflow-x: hidden;
}

h1,
h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;

}

h1 {
    font-size: 72px;
}

h2 {
    font-size: 48px;
}

h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h3 {
    font-size: 32px;
    font-weight: 700;
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

h5 {
    font-size: 18px;
    font-weight: 600;
}

h6 {
    font-size: 16px;
    font-weight: 600;
}

p {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Components --- */
.btn {
    display: inline-flex;
    align-items: center;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}


/* --- Layout --- */
/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

/* Scrolled state — solid white pill */
.site-header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
}

.nav-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.nav-logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #111;
    text-decoration: none;
    line-height: 1;
    flex-shrink: 0;
}

.nav-logo span {
    color: #ffd000;
}

.nav-logo-img {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
    border-radius: 6px;
}

/* Non-home dark header: logo has white bg so show it as a clean white badge */
body:not(.home) .site-header:not(.scrolled) .nav-logo {
    background: #fff;
    border-radius: 8px;
    padding: 4px 10px;
}

/* Center links */
.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd000;
    transition: width 0.25s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: #111;
}

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

/* Right side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* CTA button */
.nav-cta {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0b0b0b;
    background: #ffd000;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 8px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #d4af00;
    transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #111;
    border-radius: 2px;
    transition: all 0.25s ease;
}

/* ── Non-home pages: white header text ─────────────────────── */
/* WordPress adds class="home" to <body> only on the front page  */
body:not(.home) .site-header:not(.scrolled) .nav-logo {
    color: #fff;
}

body:not(.home) .site-header:not(.scrolled) .nav-logo span {
    color: #ffd000;
}

body:not(.home) .site-header:not(.scrolled) .nav-links a {
    color: rgba(255, 255, 255, 0.85);
}

body:not(.home) .site-header:not(.scrolled) .nav-links a:hover {
    color: #fff;
}

body:not(.home) .site-header:not(.scrolled) .nav-hamburger span {
    background: #fff;
}

/* Once scrolled — revert to dark text (white bg) */
body:not(.home) .site-header.scrolled .nav-logo { color: #111; }
body:not(.home) .site-header.scrolled .nav-links a { color: #333; }
body:not(.home) .site-header.scrolled .nav-links a:hover { color: #111; }
body:not(.home) .site-header.scrolled .nav-hamburger span { background: #111; }

/* Mobile drawer */
.nav-drawer {
    display: none;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    padding: 1.5rem 2rem 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

.nav-drawer-links {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-drawer-links li a {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s;
}

.nav-drawer-links li a:hover {
    color: #111;
}

.nav-cta-mobile {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    padding: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-center {
        display: none;
    }

    .nav-cta:not(.nav-cta-mobile) {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }
}

/* Push page content below fixed header */
.hero-new {
    padding-top: 100px;
}

/* Hero Section New */
.hero-new {
    position: relative;
    padding: 120px 0 100px;
    background-color: var(--white);
    background-image: url('assets/images/corporate-video-production.jpg');
    background-size: 100%;
    background-position: right center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    min-height: 90vh;
    overflow: visible;
    object-fit: cover;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Gradient: white on left, transparent on right */
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 0.85) 55%, rgba(255, 255, 255, 0) 80%);
    z-index: 1;
}

@media (max-width: 992px) {
    .hero-new {
        background-position: center right;
        background-size: cover;
    }

    .hero-new::before {
        background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-content {
    max-width: 750px;
}


/* --- Responsive --- */
@media (max-width: 768px) {

    body,
    p {
        font-size: 16px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 18px;
    }
}

.hero-new .hero-title {
    font-family: 'Inter', sans-serif;
    color: #0b0b0b;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: none;
    letter-spacing: -0.02em;
}

.hero-new .hero-title .bold-text {
    font-weight: 500;
}

.hero-new .hero-title .elegant-text {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 4.8rem;
    display: inline-block;
    color: #0b0b0b;
    letter-spacing: -0.03em;
}

.hero-new .hero-description {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #3f3f3f;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.btn-yellow {
    background-color: #ffd000;
    color: #0b0b0b;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    display: inline-flex;
    text-decoration: none;
    border: none;
    cursor: pointer;
    padding: 12px 40px 12px 40px;
}

.btn-yellow:hover {
    background-color: #e6bb00;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 208, 0, 0.4);
    color: #0b0b0b;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #0b0b0b;
    text-decoration: none;
    padding: 10px 0;
    margin-top: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #0b0b0b;
    transition: width 0.3s ease;
}

.btn-secondary:hover::after {
    width: calc(100% - 24px);
}

.hero-btns {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.btn-secondary:hover {
    color: #0b0b0b;
}

.btn-secondary svg {
    transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
    transform: translateX(4px);
}

/* Bottom Tags */
.hero-tags-wrapper {
    position: absolute;
    bottom: -32px;
    left: 0;
    width: 100%;
    z-index: 10;
    overflow: hidden;
    padding: 10px 0;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.hero-tags-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-tags 40s linear infinite;
    width: max-content;
}

@keyframes scroll-tags {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.hero-tag-card {
    background: #ffffff;
    border-radius: 0.8rem;
    padding: 0.4rem 1.2rem 0.4rem 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.tag-img-wrapper {
    width: 60px;
    height: 44px;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tag-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    color: #4a4a4a;
    white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-new .hero-title {
        font-size: 2.8rem;
    }

    .hero-new .hero-title .elegant-text {
        font-size: 3.2rem;
    }

    .hero-new {
        padding: 140px 0 80px;
    }

    .hero-new .hero-description {
        font-size: 1rem;
    }
}

/* =========================================================================
   NEW HOMEPAGE SECTIONS CSS
   ========================================================================= */

/* Globals & Utils */
.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.bg-light {
    background-color: #fcfcfc;
}

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

.text-left {
    text-align: left;
}


.text-uppercase {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}


.mt-4 {
    margin-top: 2rem;
}

.full-width {
    width: 100%;
    display: flex;
    justify-content: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 3rem;
    color: #111;
    margin-bottom: 2rem;
    text-transform: none;
    letter-spacing: -0.02em;
}


/* Logos */
.trusted-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.logos-track-wrapper {
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logos-track {
    display: flex;
    gap: 5rem;
    align-items: center;
    width: max-content;
    animation: scroll-logos 20s linear infinite;
}

.logos-track img {
    height: 35px;
    opacity: 0.6;
    transition: opacity 0.3s;
    filter: grayscale(100%);
    flex-shrink: 0;
}

.logos-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

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

/* ============================================================
   CONTACT SECTION — REDESIGN
   ============================================================ */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
}

/* --- Left dark panel --- */
.contact-info-panel {
    background: #0f0f0f;
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.cip-inner {
    max-width: 440px;
}

.cip-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffd000;
    margin-bottom: 1.25rem;
}

.cip-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 1rem;
}

.cip-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin: 0 0 2.5rem;
}

.cip-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cip-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cip-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 208, 0, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffd000;
}

.cip-icon svg {
    width: 18px;
    height: 18px;
}

.cip-item-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 0 4px;
}

.cip-item-val {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.cip-item-val:hover {
    color: #ffd000;
}

/* --- Right form panel --- */
.contact-form-panel {
    background: #f8f8f6;
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.cfp-inner {
    width: 100%;
    max-width: 480px;
}

.cfp-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 700;
    color: #111;
    margin: 0 0 0.5rem;
}

.cfp-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888;
    margin: 0 0 2rem;
    line-height: 1.6;
}

/* Form fields */
.new-contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cf-group {
    margin-bottom: 1.25rem;
}

.cf-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}

.cf-group input,
.cf-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #111;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.cf-group textarea {
    resize: vertical;
    min-height: 110px;
}

.cf-group input:focus,
.cf-group textarea:focus {
    border-color: #ffd000;
    box-shadow: 0 0 0 3px rgba(255, 208, 0, 0.2);
}

.cf-check {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.cf-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: #ffd000;
    flex-shrink: 0;
    cursor: pointer;
}

.cf-check label {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: #666;
    line-height: 1.5;
    cursor: pointer;
}

.cf-check label a {
    color: #ffd000;
    text-decoration: underline;
}

.cf-submit {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: #ffd000;
    color: #0b0b0b;
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.01em;
}

.cf-submit:hover {
    background: #d4af00;
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        padding: 60px 32px;
    }

    .cip-inner {
        max-width: 100%;
    }

    .contact-form-panel {
        padding: 60px 32px;
    }

    .cfp-inner {
        max-width: 100%;
    }
}

.about {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Image mosaic */
.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 10px;
}

.about-images .img-box {
    border-radius: 6px;
    overflow: hidden;
}

.about-images .img-box:nth-child(1) {
    grid-row: span 2;
}

.img-placeholder {
    width: 100%;
    height: 100%;
}

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

/* Text side */
.about-text h2 {
    font-weight: 400;
    color: var(--black);
}

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

/* Section Label */
.section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    border-bottom: 1px solid #7a7670;
    width: 400px;
}

.about-title {
    margin-top: -10px;
    margin-bottom: -10px;
}

/* Portfolio Slider */
.portfolio-section {
    background: #faf9f7;
    padding: 100px 20px;
    text-align: center;
}

.portfolio-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: #7a7670;
    font-weight: 400;
    text-transform: uppercase;
    border-bottom: 1px solid #7a7670;
    width: 400px;
    justify-content: center;
    /* ← centers text inside */
    margin-left: auto;
    /* ← centers the box itself */
    margin-right: auto;

}

.portfolio-label::before,
.portfolio-label::after {

    display: block;
    width: 100px;
    height: 1px;
    background: #d4d0c8;
}

.portfolio-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: none;
    color: #1a1a1a;
    margin-top: 0px;
    /* ← space above title */
    margin-bottom: 8px;
}

.portfolio-desc {
    max-width: 720px;
    margin: 0 auto 20px;
    font-size: 15px;
    line-height: 1.8;
    color: #7a7670;
    font-weight: 300;
}

/* =========================================================================
   SERVICES BENTO GRID
   ========================================================================= */
.services-bento {
    padding: 100px 0;
    background: #fff;
}

.bento-header {
    text-align: center;
    margin-bottom: 40px;
}

.bento-label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: #7a7670;
    font-weight: 400;
    text-transform: uppercase;
    border-bottom: 1px solid #d4d0c8;
    padding-bottom: 8px;
    width: 300px;
    justify-content: center;
    margin: 0 auto;
}

/* Bento grid — full width, mirror layout row 1 narrow→wide, row 2 wide→narrow */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: minmax(320px, auto) minmax(320px, auto);
    gap: 12px;
    width: 100%;
    padding: 0 120px;
}

/* Row 2 reverses the column order */
.bento-grid .bento-card:nth-child(4) {
    grid-column: 1;
}

.bento-grid .bento-card:nth-child(5) {
    grid-column: 2;
}

.bento-grid .bento-card:nth-child(6) {
    grid-column: 3;
}

/* Card base */
.bento-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px 28px;
}

/* Dark overlay on background image */
.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    z-index: 0;
}

.bento-dark::before {
    background: linear-gradient(160deg, rgba(10, 10, 10, 0.82) 40%, rgba(10, 10, 10, 0.4) 100%);
}

.bento-teal::before {
    background: linear-gradient(160deg, rgba(5, 35, 45, 0.88) 40%, rgba(5, 35, 45, 0.45) 100%);
}

.bento-warm::before {
    background: linear-gradient(160deg, rgba(20, 10, 5, 0.72) 40%, rgba(20, 10, 5, 0.25) 100%);
}

.bento-pink::before {
    background: linear-gradient(160deg, rgba(15, 10, 15, 0.72) 40%, rgba(15, 10, 15, 0.25) 100%);
}

/* Text content */
.bento-content {
    position: relative;
    z-index: 2;
    max-width: 320px;
}

.bento-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.bento-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 300;
    margin-bottom: 0;
}

/* Mockup image — bottom right, partially cropped */
.bento-mock {
    position: absolute;
    bottom: -20px;
    right: -10px;
    width: 55%;
    z-index: 1;
    pointer-events: none;
}

.bento-mock img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 0 0 0;
    opacity: 0.7;
    filter: brightness(0.85);
}

/* Responsive — Tablet (max 1100px) */
@media (max-width: 1100px) {
    .bento-grid {
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        padding: 0 24px;
        gap: 12px;
    }

    /* Reset explicit grid-column so cards flow naturally in 2-col */
    .bento-grid .bento-card:nth-child(4),
    .bento-grid .bento-card:nth-child(5),
    .bento-grid .bento-card:nth-child(6) {
        grid-column: auto;
    }

    .bento-card {
        min-height: 280px;
    }
}

/* Mobile (max 600px) */
@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 10px;
    }

    .bento-card {
        min-height: 240px;
        padding: 24px 20px;
        border-radius: 12px;
    }

    .bento-content {
        max-width: 100%;
    }

    .bento-content h3 {
        font-size: 1.1rem;
    }

    .bento-content p {
        font-size: 0.85rem;
    }

    /* Hide mockup image on mobile to keep cards clean */
    .bento-mock {
        display: none;
    }
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 520px;
    perspective: 1200px;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.port-slide {
    position: absolute;
    width: 340px;
    height: 460px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.port-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.port-slide:hover img {
    transform: scale(1.04);
}

.port-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(250, 249, 247, 0.25);
    transition: opacity 0.5s ease;
    border-radius: 12px;
}

.port-slide.active::after {
    opacity: 0;
}

.port-slide[data-pos="0"] {
    transform: translateX(-580px) rotate(-8deg) scale(0.78);
    z-index: 1;
    opacity: 0.55;
    filter: brightness(0.85);
}

.port-slide[data-pos="1"] {
    transform: translateX(-290px) rotate(-4deg) scale(0.88);
    z-index: 2;
    opacity: 0.75;
    filter: brightness(0.92);
}

.port-slide[data-pos="2"] {
    transform: translateX(0) rotate(0deg) scale(1);
    z-index: 5;
    opacity: 1;
    filter: brightness(1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.port-slide[data-pos="3"] {
    transform: translateX(290px) rotate(4deg) scale(0.88);
    z-index: 2;
    opacity: 0.75;
    filter: brightness(0.92);
}

.port-slide[data-pos="4"] {
    transform: translateX(580px) rotate(8deg) scale(0.78);
    z-index: 1;
    opacity: 0.55;
    filter: brightness(0.85);
}

.port-slide[data-pos="hidden-left"] {
    transform: translateX(-900px) rotate(-12deg) scale(0.65);
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}

.port-slide[data-pos="hidden-right"] {
    transform: translateX(900px) rotate(12deg) scale(0.65);
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 50px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #d4d0c8;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    color: #1a1a1a;
}

.slider-btn:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #faf9f7;
    transform: scale(1.08);
}

.slider-btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d4d0c8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #1a1a1a;
    transform: scale(1.4);
}

/* --- Portfolio Slider: Tablet (max 900px) --- */
@media (max-width: 900px) {
    .slider-wrapper {
        height: 420px;
    }
    .port-slide {
        width: 260px;
        height: 360px;
    }
    .port-slide[data-pos="0"] {
        transform: translateX(-400px) rotate(-8deg) scale(0.78);
    }
    .port-slide[data-pos="1"] {
        transform: translateX(-210px) rotate(-4deg) scale(0.88);
    }
    .port-slide[data-pos="3"] {
        transform: translateX(210px) rotate(4deg) scale(0.88);
    }
    .port-slide[data-pos="4"] {
        transform: translateX(400px) rotate(8deg) scale(0.78);
    }
    .port-slide[data-pos="hidden-left"] {
        transform: translateX(-620px) rotate(-12deg) scale(0.65);
    }
    .port-slide[data-pos="hidden-right"] {
        transform: translateX(620px) rotate(12deg) scale(0.65);
    }
}

/* --- Portfolio Slider: Mobile (max 600px) --- */
@media (max-width: 600px) {
    .slider-wrapper {
        height: 340px;
        overflow: hidden;
    }
    .port-slide {
        width: 220px;
        height: 300px;
    }
    /* On mobile: only show center + immediate neighbours, hide far cards */
    .port-slide[data-pos="0"],
    .port-slide[data-pos="4"] {
        opacity: 0;
        pointer-events: none;
    }
    .port-slide[data-pos="1"] {
        transform: translateX(-150px) rotate(-4deg) scale(0.85);
    }
    .port-slide[data-pos="3"] {
        transform: translateX(150px) rotate(4deg) scale(0.85);
    }
    .port-slide[data-pos="hidden-left"] {
        transform: translateX(-400px) rotate(-12deg) scale(0.65);
    }
    .port-slide[data-pos="hidden-right"] {
        transform: translateX(400px) rotate(12deg) scale(0.65);
    }
}

/* --- Portfolio Slider: Small Mobile (max 420px) --- */
@media (max-width: 420px) {
    .slider-wrapper {
        height: 300px;
    }
    .port-slide {
        width: 190px;
        height: 260px;
    }
    /* Only center card visible on very small screens */
    .port-slide[data-pos="1"],
    .port-slide[data-pos="3"] {
        opacity: 0;
        pointer-events: none;
    }
    .port-slide[data-pos="2"] {
        box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    }
}

/* =========================================================================
   WHY US SECTION
   ========================================================================= */
.why-us-dark {
    background: #f9f9f9;
    padding: 100px 0 0px;
    overflow: hidden;
}

/* Section header */
.why-us-header {
    text-align: center;
    margin-bottom: 70px;
}

/* Inner 3-col grid */
.why-us-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    gap: 60px;
    align-items: center;
}

/* Left & right text columns */
.why-col {
    display: flex;
    flex-direction: column;
    margin-top: -160px;
    gap: 40px;

}

.why-col-left {
    text-align: left;
}

.why-col-right {
    text-align: left;
}

/* Each why item */
.why-item {
    padding: 28px 0;

    position: relative;
    transition: all 0.3s ease;
}

.why-item:last-child {
    border-bottom: 1px solid #e8e8e8;
}

.why-item:hover {
    padding-left: 12px;
}

.why-item:hover .why-title {
    color: #ffd000;
}

/* Number badge */
.why-num {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #ffd000;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    opacity: 0.8;
}

.why-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.why-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #777;
    line-height: 1.75;
    font-weight: 400;
    margin-bottom: 0;
}

/* Center arch image */
.why-center-img {
    width: 320px;
    flex-shrink: 0;
}

.why-center-img img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 999px 999px 32px 32px;
    display: block;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 1024px) {
    .why-us-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-center-img {
        width: 260px;
        margin: 0 auto;
        order: -1;
    }

    .why-center-img img {
        height: 400px;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #fff;
    color: #111;
    padding: 0;
    border-top: 1px solid #ebebeb;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 2rem 0;
}

/* Grid: brand + 3 columns */
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 60px;
    border-bottom: 1px solid #ebebeb;
}

/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo {
    text-decoration: none;
    display: inline-block;
    line-height: 1;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
    padding: 4px 10px;
}

.footer-logo span {
    color: #ffd000;
}

.footer-brand p {
    font-size: 0.875rem;
    color: #888;
    line-height: 1.75;
    margin: 0;
    max-width: 260px;
}

/* Link columns */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #aaa;
    margin: 0 0 1.25rem 0;
}

.footer-col a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #555;
    text-decoration: none;
    padding: 0.35rem 0;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #111;
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0 32px;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 0.8rem;
    color: #aaa;
}

/* Social icons row */
.social-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.soc {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f2f2f2;
    color: #555;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.soc:hover {
    background: #ffd000;
    color: #0b0b0b;
}

.soc svg {
    width: 15px;
    height: 15px;
}

/* Footer responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

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

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
    background: #fff;
    padding: 0px 0 100px;
    overflow: hidden;
}

/* Header */
.testi-header {
    text-align: center;
    margin-bottom: 20px;
}

.testi-heading {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: none;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 8px;
}

.testi-subtext {
    font-size: 1rem;
    color: #777;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Stage: holds the cards */
.testi-stage {
    position: relative;
    width: 100%;
    height: 340px;
    margin: 0 auto;
    max-width: 1100px;
}

/* Base card — absolutely positioned */
.testi-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 340px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
    pointer-events: none;
    z-index: 0;
}

/* Adjacent left card */
.testi-card.testi-left {
    opacity: 0.5;
    transform: translate(calc(-50% - 370px), -50%) scale(0.9);
    pointer-events: auto;
    z-index: 1;
}

/* Adjacent right card */
.testi-card.testi-right {
    opacity: 0.5;
    transform: translate(calc(-50% + 370px), -50%) scale(0.9);
    pointer-events: auto;
    z-index: 1;
}

/* Center / featured card */
.testi-card.testi-featured {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
    border-color: transparent;
    pointer-events: auto;
    z-index: 3;
}

/* Stars */
.testi-stars {
    color: #f5a623;
    font-size: 1.1rem;
    letter-spacing: 2px;
    line-height: 1;
}

/* Review body */
.testi-body {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.75;
    margin: 0;
    flex: 1;
}

/* Author */
.testi-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}

.testi-author strong {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
}

.testi-author span {
    font-size: 0.8rem;
    color: #999;
}

/* Controls */
.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.testi-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    background: #fff;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.testi-btn svg {
    width: 18px;
    height: 18px;
}

.testi-btn:hover {
    background: #ffd000;
    border-color: #ffd000;
    color: #0b0b0b;
}

/* Responsive */
@media (max-width: 900px) {
    .testi-card.testi-left {
        transform: translate(calc(-50% - 280px), -50%) scale(0.85);
    }

    .testi-card.testi-right {
        transform: translate(calc(-50% + 280px), -50%) scale(0.85);
    }

    .testi-card {
        width: 280px;
        padding: 28px 22px;
    }
}

@media (max-width: 600px) {
    .testi-stage {
        height: 300px;
    }

    .testi-card {
        width: 85vw;
    }

    .testi-card.testi-left,
    .testi-card.testi-right {
        opacity: 0;
        pointer-events: none;
    }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: #ffd000;
    padding: 64px 2rem;
}

.cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-inner h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #0b0b0b;
    margin: 0 0 0.5rem;
    line-height: 1.15;
}

.cta-inner p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
}

.btn-cta {
    display: inline-block;
    background: #0b0b0b;
    color: #ffd000;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
}

.btn-cta:hover {
    background: #222;
    transform: translateY(-2px);
}

@media (max-width: 700px) {
    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-cta {
        width: 100%;
        text-align: center;
    }
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */

/* Hero */
.about-page-hero {
    position: relative;
    padding: 180px 0 120px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1200 40%, #2a1f00 70%, #111 100%);
}

/* Subtle yellow glow overlay */
.about-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(255, 208, 0, 0.12) 0%, transparent 70%);
    z-index: 0;
}

.about-page-hero .container {
    position: relative;
    z-index: 1;
}

/* Label on dark bg */
.about-page-hero .portfolio-label {
    color: rgba(255,255,255,0.55);
    border-color: rgba(255,255,255,0.18);
}

.about-page-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 1rem auto 1.5rem;
    max-width: 800px;
}

.about-page-heading em {
    font-style: italic;
    font-weight: 300;
    color: #ffd000;
}

.about-page-hero .portfolio-desc {
    color: rgba(255, 255, 255, 0.7);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.about-page-hero .btn-yellow {
    margin-top: 1.5rem;
}

/* Two-column story sections */
.about-story-section {
    padding: 80px 0;
    background: #fff;
}

.about-story-alt {
    background: #faf9f7;
}

.about-story-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-story-row-reverse {
    direction: rtl;
}

.about-story-row-reverse>* {
    direction: ltr;
}

.about-story-text .section-label {
    width: auto;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.about-story-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 700;
    color: #111;
    margin: 0 0 1.5rem;
}

.about-story-text p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.about-story-img {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

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

/* Responsive */
@media (max-width: 900px) {

    .about-story-row,
    .about-story-row-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2.5rem;
    }

    .about-story-img {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 600px) {
    .about-page-hero {
        padding: 130px 0 70px;
    }
}
/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-body {
    background: #fff;
    padding: 80px 0 100px;
}

/* Info cards row */
.contact-page-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.cp-card {
    background: #f8f8f8;
    border: 1px solid #efefef;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cp-card-yellow {
    background: #ffd000;
    border-color: #ffd000;
}

.cp-icon {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.cp-card-yellow .cp-icon {
    background: rgba(0,0,0,0.08);
}

.cp-icon svg {
    width: 20px;
    height: 20px;
    stroke: #111;
}

.cp-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.cp-card p {
    font-size: 0.82rem;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

.cp-card-yellow p {
    color: rgba(0,0,0,0.5);
}

.cp-card a {
    font-size: 0.88rem;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    margin-top: 4px;
}

.cp-card a:hover {
    color: #ffd000;
}

.cp-card-yellow a {
    color: #111;
}

.cp-book-btn {
    display: inline-block;
    background: #111;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    margin-top: 8px !important;
    transition: background 0.2s ease;
}

.cp-book-btn:hover {
    background: #000 !important;
    color: #ffd000 !important;
}

/* Form + Side split */
.contact-page-split {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.cp-form-wrap h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px;
}

.cp-form-wrap > p {
    font-size: 0.9rem;
    color: #777;
    margin: 0 0 32px;
}

/* Reuse cf-group / cf-row from existing form CSS */
.cp-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #333;
    background: #fff;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.cp-form select:focus {
    outline: none;
    border-color: #ffd000;
}

/* Side info panel */
.cp-side-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 120px;
}

.cp-follow h3,
.cp-booking-box h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px;
}

.cp-follow p,
.cp-booking-box p {
    font-size: 0.875rem;
    color: #777;
    margin: 0 0 16px;
    line-height: 1.65;
}

.cp-socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cp-soc-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #111;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cp-soc-link:hover {
    color: #ffd000;
}

.cp-soc-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.cp-booking-box {
    background: #0a0a0a;
    border-radius: 16px;
    padding: 32px 28px;
}

.cp-booking-box h3 {
    color: #fff;
}

.cp-booking-box p {
    color: rgba(255,255,255,0.55);
}

/* Contact page responsive */
@media (max-width: 1024px) {
    .contact-page-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-page-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cp-side-info {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .cp-follow,
    .cp-booking-box {
        flex: 1 1 280px;
    }
}

@media (max-width: 600px) {
    .contact-page-cards {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .cp-card {
        padding: 20px 16px;
    }
    .cp-side-info {
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .contact-page-cards {
        grid-template-columns: 1fr;
    }
}
