@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary-bg-color: #FDFBF7;
    --primary-text-color: #1E2A3A;
    --accent-color: #950606;
    --hover: #D4A373;
    --alt-bg: #F7F6F2;
    --alt-text: #1A1A1A;
    --box-shadow: #000000;
}

* {
    box-sizing: border-box;
}

html, body {
    width: 100%;
}

body {
    background-color: var(--primary-bg-color);
    color: var(--primary-text-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* ===== HEADING ===== */
.heading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.heading hr {
    max-width: 400px;
    width: clamp(100px, 25vw, 400px);
    border: none;
    border-top: 2px solid #333;
    flex-shrink: 0;
    margin: 0 40px;
}

.heading h2 {
    white-space: nowrap;
    margin: 0;
}

/* ===== TEXT STYLES ===== */
h1 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 56px;
}

h2 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 36px;
}

h3 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 22px;
}

h4 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
}

h5 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
}

h6 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
}

p {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}

sub {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}

button {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    padding: 9px 10px;
}

a {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    color: var(--primary-bg-color);
    text-decoration: none;
}

/* ===== NAVIGATION ===== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary-text-color);
    gap: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo {
    background-color: var(--accent-color);
    padding: 0.5rem;
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo:hover {
    opacity: 0.9;
    transform: scale(1.03);
}

.logo img {
    width: auto;
    max-height: 38px;
    display: block;
}

.logo-text-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.logo-text-link:hover {
    opacity: 0.7;
}

.logo-text {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--primary-text-color);
    white-space: nowrap;
    letter-spacing: -0.3px;
}

.nav-divider {
    flex: 1;
    height: 2px;
    background: var(--accent-color);
    margin: 0 20px;
    min-width: 20px;
}

.nav-items {
    flex-shrink: 0;
}

.nav-items ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-items a {
    color: var(--primary-text-color);
    text-decoration: none;
    transition: color 0.3s;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.nav-items a:hover {
    color: var(--hover);
}

.nav-items button {
    background: var(--accent-color);
    color: var(--primary-bg-color);
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    line-height: 1;
    min-width: auto;
    letter-spacing: normal;
    text-transform: none;
}

.nav-items button::before {
    display: none;
}

.nav-items button:hover {
    background: var(--accent-color);
    color: var(--primary-bg-color);
    transform: none;
    box-shadow: none;
}

.nav-items button svg {
    width: 16px;
    height: 16px;
    display: block;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    min-width: auto;
    letter-spacing: normal;
    text-transform: none;
}

.nav-toggle::before {
    display: none;
}

.nav-toggle:hover {
    background: none;
    transform: none;
    box-shadow: none;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #1a1a2e;
    padding: 0 60px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    color: white;
    text-align: left;
    max-width: 700px;
    width: 100%;
    padding: 0;
    margin: 0;
}

.hero-text h1 {
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
    text-align: left;
}

.hero-text sub {
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
    text-align: left;
    display: block;
}

.hero-text hr {
    background: #D4A373;
    border: none;
    height: 2px;
    margin: 20px 0;
    width: 60%;
}

/* ===== NUMBERS SECTION (inside hero) ===== */
.numbers {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
    width: 100%;
    margin-top: 10px;
}

.numbers-Item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    min-width: 0;
    flex: 1;
    max-width: 150px;
}

.numbers-Item h2 {
    margin: 0;
    font-size: 2.5rem;
    line-height: 1.1;
    color: #fff;
    text-align: left;
}

.numbers-Item h3 {
    margin: 6px 0 0 0;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.5px;
    color: #fff;
    text-align: left;
}

/* ===== SEAMLESS MARQUEE BANNER ===== */
.marquee {
    width: 100%;
    overflow: hidden;
    background: var(--alt-bg);
    padding: 30px 0;
    position: relative;
    border-top: 1px solid rgba(30, 42, 58, 0.08);
    border-bottom: 1px solid rgba(30, 42, 58, 0.08);
}

.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--alt-bg), transparent);
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--alt-bg), transparent);
}

.marquee-track {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
    will-change: transform;
}

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 140px;
}

.marquee-item img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    display: block;
}

.marquee-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ===== OUR WORK SECTION ===== */
.our-work {
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1500px;
    margin: 0 auto;
}

.our-work hr {
    width: 100%;
    height: 1px;
    background: var(--alt-text);
    border: none;
    margin: 0;
    opacity: 0.3;
}

.our-work .top-parent {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 80px;
}

.our-work .top-child1,
.top-child2 {
    flex: 1;
}

.our-work .top-child1 h2 {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.our-work .top-child1 h1 {
    font-size: 3rem;
    margin: 25px 0 0 0;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.our-work .top-child2 h2 {
    margin: 0 0 15px 0;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.6;
}

.our-work .top-child2 p {
    margin: 25px 0 0 0;
    line-height: 1.7;
    font-size: 1.05rem;
    opacity: 0.85;
}

.our-work .bot-parent {
    display: flex;
    gap: 30px;
    width: 100%;
}

.our-work .bot-child {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 130%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    background: #000;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.our-work .bot-child:hover .video-wrapper {
    box-shadow: 0 0 40px rgba(30, 58, 95, 0.4),
                0 0 80px rgba(30, 58, 95, 0.15),
                0 12px 32px rgba(0, 0, 0, 0.2);
    transform: translateY(-6px);
}

.our-work .bot-child h3 {
    margin: 18px 0 0 0;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

.our-work .bot-child h4 {
    margin: 18px 0 0 0;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

/* SEE MORE button as a link */
.our-work-btn {
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 50px;
    background: var(--accent-color);
    color: var(--primary-bg-color);
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    margin-top: 10px;
}

.our-work-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--hover);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.our-work-btn:hover::before {
    left: 0;
}

.our-work-btn:hover {
    color: var(--primary-text-color);
    border-color: var(--hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 163, 115, 0.35);
}

/* ===== WHAT WE DO SECTION ===== */
.what-we-do {
    display: flex;
    width: 100%;
    gap: 40px;
    padding: 0 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.left-container {
    flex: 1;
    min-width: 0;
}

.left-container h2 {
    margin-top: 0;
    font-size: 2rem;
    color: #333;
}

.section-divider {
    border: none;
    height: 3px;
    background: linear-gradient(to right, #333, #666);
    width: 100%;
    margin: 20px 0;
    display: block;
}

.child-divider {
    border: none;
    height: 2px;
    background: #ddd;
    width: 100%;
    margin: 15px 0 5px 0;
    display: block;
}

.dynamic-description {
    margin-top: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    min-height: 80px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.dynamic-description p {
    margin: 0;
    color: var(--primary-text-color);
    font-style: italic;
}

.right-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.right-container h2 {
    margin-top: 0;
    font-size: 2rem;
    color: var(--primary-text-color);
}

.right-child {
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 5px;
}

.right-child:hover {
    background: var(--primary-text-color);
    transform: translateX(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.right-child h1 {
    margin: 0 0 5px 0;
    color: #222;
    transition: color 0.3s ease;
}

.right-child:hover h1 {
    color: var(--primary-bg-color);
}

.right-child sub {
    display: block;
    margin: 5px 0 8px 0;
    font-size: 0.9rem;
    color: var(--primary-text-color);
    transition: color 0.3s ease;
}

.right-child:hover sub {
    color: var(--primary-bg-color);
}

.right-child a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.right-child:hover a {
    color: var(--primary-bg-color);
}

.right-child a:hover {
    text-decoration: underline;
    transform: translateX(3px);
}

.right-child hr {
    border: none;
    height: 1px;
    background: var(--alt-bg);
    margin: 12px 0 0 0;
    display: block;
    opacity: 1;
}

/* ✅ Mobile-only description under each service — hidden on desktop */
.mobile-description {
    display: none;
    margin: 12px 0 8px 0;
    padding: 16px;
    background: rgba(30, 42, 58, 0.05);
    border-left: 3px solid var(--accent-color);
    border-radius: 6px;
}

.mobile-description p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--primary-text-color);
    font-style: normal;
    opacity: 0.85;
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial {
    padding: 100px 40px;
    background: var(--primary-bg-color);
    position: relative;
}

.testimonial .heading {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 60px 0;
    gap: 0;
}

.testimonial .heading h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-text-color);
    letter-spacing: -0.5px;
    margin: 0;
    white-space: nowrap;
    text-align: center;
    padding: 0 20px;
}

.testimonial .heading hr {
    border: none;
    border-top: 2px solid var(--accent-color);
    opacity: 0.35;
    background: none;
    height: 0;
    max-width: 120px;
    width: clamp(60px, 15vw, 120px);
    margin: 0;
    flex-shrink: 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 32px;
    background: var(--alt-bg);
    border-radius: 20px;
    border: 1px solid rgba(30, 42, 58, 0.08);
    box-shadow: 0 10px 30px rgba(30, 42, 58, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.6s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card.revealed:nth-child(1) { transition-delay: 0s; }
.testimonial-card.revealed:nth-child(2) { transition-delay: 0.15s; }
.testimonial-card.revealed:nth-child(3) { transition-delay: 0.3s; }

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--hover), var(--accent-color));
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(30, 42, 58, 0.12);
    border-color: rgba(149, 6, 6, 0.15);
}

.testimonial-card:hover::before {
    opacity: 1;
    animation: gradientMove 3s ease infinite;
}

.testimonial-card.featured {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.03) translateY(30px);
}

.testimonial-card.featured.revealed {
    transform: scale(1.03) translateY(0);
}

.testimonial-card.featured.revealed:hover {
    transform: scale(1.03) translateY(-8px);
}

.testimonial-card.featured::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--hover), var(--primary-bg-color), var(--hover));
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

.testimonial-card.featured .quote,
.testimonial-card.featured .author-name {
    color: var(--primary-bg-color);
}

.testimonial-card.featured .author-role {
    color: var(--primary-bg-color);
    opacity: 0.75;
}

.testimonial-card.featured .quote-mark {
    color: var(--hover);
    opacity: 0.35;
}

.testimonial-card.featured .testimonial-author {
    border-top-color: rgba(253, 251, 247, 0.2);
}

.quote-mark {
    font-family: "Playfair Display", serif;
    font-size: 5rem;
    line-height: 0.7;
    color: var(--accent-color);
    opacity: 0.15;
    font-weight: 700;
    user-select: none;
    margin: 0;
    height: 45px;
    display: block;
}

.testimonial-card .quote {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--primary-text-color);
    opacity: 0.9;
    font-weight: 400;
    margin: 0;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(30, 42, 58, 0.1);
    margin-top: auto;
}

.testimonial-author img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--hover);
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.testimonial-card .author-name {
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-text-color);
    margin: 0;
    letter-spacing: 0.3px;
}

.testimonial-card .author-role {
    font-family: "Inter", sans-serif;
    font-size: 0.75rem;
    color: var(--primary-text-color);
    opacity: 0.6;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== PACKAGE SECTION ===== */
.package {
    padding: 100px 40px;
    display: flex;
    justify-content: center;
    background: var(--primary-bg-color);
    position: relative;
}

.package-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 18px;
    max-width: 720px;
    width: 100%;
    padding: 70px 50px;
    background: var(--alt-bg);
    border-radius: 24px;
    border: 1px solid rgba(30, 42, 58, 0.08);
    box-shadow: 0 20px 60px rgba(30, 42, 58, 0.08);
    position: relative;
    overflow: hidden;
}

.package-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--hover), var(--accent-color));
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

.package-child::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.12), transparent 70%);
    pointer-events: none;
}

.package-child h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-color);
    opacity: 0.7;
    font-family: "Inter", sans-serif;
}

.package-child h1 {
    margin: 0;
    font-size: 3.4rem;
    line-height: 1.1;
    color: var(--primary-text-color);
    font-weight: 700;
    letter-spacing: -1px;
}

.package-child sub {
    margin: 0;
    display: block;
    font-size: 1.15rem;
    color: var(--primary-text-color);
    opacity: 0.7;
    font-style: italic;
    line-height: 1.6;
    max-width: 480px;
}

.package-child button {
    margin-top: 18px;
    position: relative;
    z-index: 1;
}

/* ===== BOOKING SECTION ===== */
.booking {
    padding: 100px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--alt-bg);
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(30, 58, 95, 0.06) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.booking-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 25px;
    max-width: 900px;
    width: 100%;
    padding: 80px 50px;
    background: var(--primary-bg-color);
    border-radius: 24px;
    border: 1px solid rgba(30, 42, 58, 0.08);
    box-shadow: 0 20px 60px rgba(30, 42, 58, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.booking-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--hover), var(--accent-color), var(--hover));
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

.booking-content .heading {
    margin: 0;
    width: 100%;
}

.booking-content .heading h2 {
    font-size: 2.4rem;
    color: var(--primary-text-color);
    letter-spacing: -0.5px;
}

.booking-content .heading hr {
    border: none;
    border-top: 2px solid var(--accent-color);
    opacity: 0.35;
    max-width: 100px;
    width: clamp(50px, 12vw, 100px);
    margin: 0 20px;
    background: none;
}

.booking-content sub {
    display: block;
    font-size: 1.3rem;
    color: var(--accent-color);
    font-style: italic;
    opacity: 0.85;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.booking-content button {
    margin-top: 15px;
    width: auto;
    align-self: center;
}

/* Calendly button styled as a link */
.calendly-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    min-width: 160px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--accent-color);
    color: var(--primary-bg-color);
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    margin-top: 15px;
}

.calendly-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--hover);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.calendly-btn:hover::before {
    left: 0;
}

.calendly-btn:hover {
    color: var(--primary-text-color);
    border-color: var(--hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 163, 115, 0.35);
}

.calendly-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(212, 163, 115, 0.25);
}

.calendly-btn:focus-visible {
    outline: 2px solid var(--hover);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .calendly-btn {
        padding: 12px 28px;
        font-size: 0.85rem;
        min-width: 140px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .calendly-btn {
        padding: 12px 24px;
        font-size: 0.8rem;
        min-width: 120px;
        letter-spacing: 1px;
        width: 100%;
        max-width: 280px;
    }
}

/* ===== FOOTER ===== */
footer {
    background: var(--alt-bg);
    color: var(--primary-text-color);
    padding: 60px 40px 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(30, 42, 58, 0.08);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--hover), var(--accent-color));
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

footer .row {
    display: flex;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(30, 42, 58, 0.08);
}

footer .row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.nav-links {
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-footer {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.logo-footer:hover {
    opacity: 0.9;
    transform: scale(1.03);
}

.logo-footer img {
    max-height: 45px;
    width: auto;
    background-color: var(--accent-color);
    padding: 0.5rem;
    border-radius: 4px;
    display: block;
}

.footer-nav {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--primary-text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.8;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--hover);
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.footer-nav a:hover::after {
    width: 100%;
}

.social-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 20px 0;
}

.social-section h4,
.contact-section h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin: 0 0 15px 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-link {
    color: var(--primary-text-color);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 14px;
    border: 1px solid rgba(30, 42, 58, 0.15);
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-block;
    opacity: 0.8;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--primary-bg-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 58, 95, 0.2);
    opacity: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-link {
    color: var(--primary-text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 5px 0;
    opacity: 0.8;
}

.contact-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
    opacity: 1;
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright p {
    color: var(--primary-text-color);
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.5;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: var(--primary-text-color);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    opacity: 0.4;
}

.legal-links a:hover {
    color: var(--accent-color);
    opacity: 1;
}

/* ===== TABLET RESPONSIVE (max-width: 1024px) ===== */
@media (max-width: 1024px) {
    .our-work { padding: 60px 40px; }
    .our-work .top-parent { column-gap: 50px; }
    .our-work .top-child1 h1 { font-size: 2.2rem; }
    .our-work .bot-parent { gap: 20px; }

    .what-we-do { padding: 0 40px; }

    .left-container h2,
    .right-container h2 { font-size: 1.6rem; }

    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .testimonial-card { padding: 32px 24px; }

    .testimonial-card.featured { transform: scale(1) translateY(30px); }
    .testimonial-card.featured.revealed { transform: scale(1) translateY(0); }
    .testimonial-card.featured.revealed:hover { transform: translateY(-8px); }
}

/* ===== MOBILE RESPONSIVE (max-width: 768px) ===== */
@media (max-width: 768px) {

    h1 { font-size: 32px; }
    h2 { font-size: 26px; }
    h3 { font-size: 20px; }
    p, sub { font-size: 15px; }

    /* --- Navigation --- */
    nav {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .logo img { max-height: 32px; }
    .logo-text { display: none; }
    .logo-group { gap: 0; }
    .nav-divider { display: none; }
    .nav-toggle { display: flex; }

    .nav-items {
        display: none;
        width: 100%;
        order: 3;
        margin-top: 15px;
    }

    .nav-items.active { display: block; }

    .nav-items ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-items ul li {
        width: 100%;
        border-bottom: 1px solid rgba(30, 42, 58, 0.08);
    }

    .nav-items ul li:last-child {
        border-bottom: none;
        margin-top: 15px;
    }

    .nav-items a {
        display: block;
        padding: 14px 0;
        font-size: 15px;
    }

    .nav-items button {
        width: 100%;
        justify-content: center;
        padding: 12px;
        font-size: 0.9rem;
    }

    /* --- Hero Section --- */
    .hero {
        height: 70vh;
        padding: 0 25px;
        justify-content: flex-start;
    }

    .hero-text { padding: 0; max-width: 100%; }
    .hero-text h1 { font-size: 28px; }
    .hero-text sub { font-size: 15px; }

    .hero-text hr {
        width: 80%;
        margin: 20px 0;
    }

    /* --- Numbers Section --- */
    .numbers { gap: 20px; justify-content: flex-start; }
    .numbers-Item h2 { font-size: 1.8rem; }
    .numbers-Item h3 { font-size: 0.8rem; }

    /* --- Our Work Section --- */
    .our-work {
        padding: 50px 20px;
        gap: 35px;
    }

    .our-work .top-parent {
        flex-direction: column;
        gap: 30px;
        column-gap: 0;
    }

    .our-work .top-child1 h1 {
        font-size: 1.8rem;
        margin-top: 15px;
    }

    .our-work .top-child2 h2 { font-size: 1.1rem; }

    .our-work .top-child2 p {
        margin-top: 15px;
        font-size: 0.95rem;
    }

    .our-work .bot-parent {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }

    .our-work .bot-child {
        width: 100%;
        max-width: 400px;
    }

    .video-wrapper { padding-bottom: 120%; }

    .our-work-btn {
        padding: 14px 40px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 320px;
    }

    /* --- What We Do Section --- */
    .what-we-do {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .left-container,
    .right-container {
        flex: none;
        width: 100%;
    }

    .left-container h2,
    .right-container h2 { font-size: 1.6rem; }

    .dynamic-description {
        display: none;
    }

    .mobile-description {
        display: block;
    }

    .right-child {
        padding: 18px 16px;
        cursor: default;
    }

    .right-child:hover {
        background: transparent;
        transform: none;
        box-shadow: none;
    }

    .right-child:hover h1 {
        color: #222;
    }

    .right-child:hover sub {
        color: var(--primary-text-color);
    }

    .right-child:hover a {
        color: var(--accent-color);
    }

    /* --- Testimonial Section --- */
    .heading {
        flex-direction: row;
        padding: 0 15px;
    }

    .heading hr {
        margin: 0 15px;
        width: clamp(40px, 15vw, 100px);
    }

    .heading h2 {
        font-size: 1.1rem;
        white-space: normal;
        text-align: center;
    }

    .testimonial { padding: 70px 20px; }
    .testimonial .heading { margin-bottom: 40px; }
    .testimonial .heading h2 { font-size: 1.5rem; }
    .testimonial .heading hr { margin: 0 12px; }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }

    .testimonial-card { padding: 30px 24px; }

    .testimonial-card.featured {
        transform: scale(1) translateY(30px);
        order: -1;
    }

    .testimonial-card.featured.revealed { transform: scale(1) translateY(0); }

    /* --- Package & Booking --- */
    .package { padding: 60px 20px; }

    .package-child {
        padding: 50px 25px;
        border-radius: 18px;
        gap: 14px;
    }

    .package-child h1 { font-size: 2.4rem; }

    .package-child h2 {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }

    .package-child sub { font-size: 1rem; }

    .booking { padding: 60px 20px; }

    .booking-content {
        padding: 55px 25px;
        border-radius: 18px;
        gap: 20px;
    }

    .booking-content .heading h2 { font-size: 1.6rem; }
    .booking-content .heading hr { margin: 0 12px; }
    .booking-content sub { font-size: 1.05rem; }

    /* --- Footer --- */
    footer { padding: 40px 20px 15px; }

    .nav-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .footer-nav {
        justify-content: center;
        gap: 15px;
    }

    .footer-nav a { font-size: 0.8rem; }

    .social-contact {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .social-icons { justify-content: center; }
    .contact-info { align-items: center; text-align: center; }

    .copyright {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
        gap: 15px;
    }
}

/* ===== SMALL MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {

    h1 { font-size: 26px; }
    h2 { font-size: 22px; }
    h3 { font-size: 18px; }
    p, sub { font-size: 14px; }

    nav { padding: 12px 15px; }
    .logo img { max-height: 28px; }

    .hero {
        height: 60vh;
        padding: 0 20px;
    }

    .hero-text h1 { font-size: 22px; }
    .hero-text sub { font-size: 13px; }

    .numbers { gap: 12px; }
    .numbers-Item h2 { font-size: 1.4rem; }
    .numbers-Item h3 { font-size: 0.7rem; }

    .our-work {
        padding: 40px 15px;
        gap: 30px;
    }

    .our-work .top-child1 h1 { font-size: 1.5rem; }

    .our-work .top-child2 h2 {
        font-size: 1rem;
        line-height: 1.8;
    }

    .our-work .bot-child { max-width: 100%; }

    .video-wrapper {
        padding-bottom: 115%;
        border-radius: 10px;
    }

    .our-work-btn {
        padding: 13px 30px;
        font-size: 0.8rem;
    }

    .what-we-do { padding: 0 15px; }

    .left-container h2,
    .right-container h2 { font-size: 1.4rem; }

    .right-child h1 { font-size: 1.2rem; }
    .right-child sub { font-size: 0.85rem; }

    .mobile-description {
        padding: 14px;
        margin: 10px 0 6px 0;
    }

    .mobile-description p {
        font-size: 0.85rem;
        line-height: 1.55;
    }

    .heading h2 { font-size: 0.95rem; }

    .heading hr {
        margin: 0 10px;
        width: clamp(30px, 12vw, 70px);
    }

    .testimonial { padding: 50px 15px; }
    .testimonial .heading h2 { font-size: 1.25rem; }
    .testimonial .heading hr { margin: 0 8px; }

    .testimonial-card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .quote-mark {
        font-size: 4rem;
        height: 35px;
    }

    .testimonial-card .quote { font-size: 0.95rem; }

    .testimonial-author img {
        width: 44px;
        height: 44px;
    }

    .testimonial-card .author-name { font-size: 0.9rem; }
    .testimonial-card .author-role { font-size: 0.75rem; }

    .package { padding: 45px 15px; }

    .package-child {
        padding: 40px 20px;
        border-radius: 16px;
    }

    .package-child h1 { font-size: 1.8rem; }

    .package-child h2 {
        font-size: 0.75rem;
        letter-spacing: 2.5px;
    }

    .package-child sub { font-size: 0.9rem; }

    .booking { padding: 45px 15px; }

    .booking-content {
        padding: 45px 20px;
        border-radius: 16px;
    }

    .booking-content .heading h2 { font-size: 1.3rem; }
    .booking-content .heading hr { margin: 0 8px; }
    .booking-content sub { font-size: 0.9rem; }

    footer { padding: 30px 15px 15px; }

    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }

    .legal-links {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* ===== EXTRA SMALL (max-width: 360px) ===== */
@media (max-width: 360px) {
    h1 { font-size: 22px; }
    h2 { font-size: 19px; }

    .hero-text h1 { font-size: 19px; }
    .our-work .top-child1 h1 { font-size: 1.3rem; }

    .testimonial-author img {
        width: 55px;
        height: 55px;
    }
}

/* ===== UNIVERSAL BUTTON ===== */
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    min-width: 160px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--accent-color);
    color: var(--primary-bg-color);
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--hover);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

button:hover::before { left: 0; }

button:hover {
    color: var(--primary-text-color);
    border-color: var(--hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 163, 115, 0.35);
}

button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(212, 163, 115, 0.25);
}

button:focus-visible {
    outline: 2px solid var(--hover);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    button {
        padding: 12px 28px;
        font-size: 0.85rem;
        min-width: 140px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    button {
        padding: 12px 24px;
        font-size: 0.8rem;
        min-width: 120px;
        letter-spacing: 1px;
        width: 100%;
        max-width: 280px;
    }
}

/* ============================================================
   FULLSCREEN FIX FOR PORTRAIT VIDEOS
   ============================================================ */

/* Force the wrapper to fill the entire screen in fullscreen */
.video-wrapper:fullscreen,
.video-wrapper:-webkit-full-screen,
.video-wrapper:-moz-full-screen,
.video-wrapper:-ms-fullscreen {
    padding-bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    background: #000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    border-radius: 0 !important;
    overflow: visible !important;
}

/* Force the video to fit inside the fullscreen wrapper */
.video-wrapper:fullscreen video,
.video-wrapper:-webkit-full-screen video,
.video-wrapper:-moz-full-screen video,
.video-wrapper:-ms-fullscreen video {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    object-fit: contain !important;
    background: #000 !important;
}

/* When the video itself goes fullscreen (not the wrapper) */
video:fullscreen,
video:-webkit-full-screen,
video:-moz-full-screen,
video:-ms-fullscreen {
    object-fit: contain !important;
    width: auto !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    background: #000 !important;
    margin: auto !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}

/* Backdrop for the fullscreen area */
video::backdrop,
:fullscreen::backdrop {
    background: #000 !important;
}

/* When JS adds the .is-fullscreen class on the wrapper (fallback for browsers that don't support :fullscreen) */
.video-wrapper.is-fullscreen {
    padding-bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 999999 !important;
    border-radius: 0 !important;
}

.video-wrapper.is-fullscreen video {
    position: static !important;
    width: auto !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    object-fit: contain !important;
}