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

:root {
    --bg-primary: #0a0b0d;
    --bg-secondary: #12141c;
    --bg-card: rgba(25, 28, 38, 0.65);
    --bg-card-hover: rgba(35, 40, 55, 0.85);
    --accent-gold: #d4af37;
    --accent-gold-hover: #f3cf65;
    --accent-gold-rgb: 212, 175, 55;
    --text-primary: #f8f9fa;
    --text-secondary: #a0a7b5;
    --border-color: rgba(212, 175, 55, 0.15);
    --border-focus: rgba(212, 175, 55, 0.6);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
}

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

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-hover);
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 11, 13, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 11, 13, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

header.scrolled .nav-container {
    height: 65px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--accent-gold);
    box-shadow: 0 0 10px rgba(214, 175, 55, 0.25);
    transition: var(--transition-smooth);
    background-color: var(--bg-secondary);
}

.logo:hover .logo-img {
    transform: scale(1.08);
    border-color: var(--accent-gold-hover);
    box-shadow: 0 0 15px rgba(214, 175, 55, 0.55);
}

.logo span {
    color: var(--accent-gold);
    font-style: italic;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-links a:hover {
    color: var(--accent-gold);
}

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

.cta-nav {
    border: 1px solid var(--accent-gold);
    padding: 0.6rem 1.5rem !important;
    border-radius: 4px;
    background: rgba(214, 175, 55, 0.05);
}

.cta-nav:hover {
    background: var(--accent-gold) !important;
    color: var(--bg-primary) !important;
}

.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(10, 11, 13, 0.7), rgba(10, 11, 13, 0.95)), url('assets/images/hero-bg.png') no-repeat center center/cover;
    padding-top: 80px;
    overflow: hidden;
}

/* Hero Background Video */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(rgba(10, 11, 13, 0.7), rgba(10, 11, 13, 0.95)), url('assets/images/hero-bg.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-side-img {
    position: absolute;
    top: 0;
    width: 22%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.55;
    filter: brightness(0.85) contrast(1.05);
    transition: var(--transition-smooth);
}

.hero-side-img.left-side {
    left: 0;
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

.hero-side-img.right-side {
    right: 0;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

.hero-video-bg {
    width: 56%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 11, 13, 0.35), rgba(10, 11, 13, 0.75));
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .hero-side-img {
        display: none;
    }
    .hero-video-bg {
        width: 100%;
    }
}

.hero .container {
    position: relative;
    z-index: 3;
    max-width: 100%;
    padding: 0 6%;
}

.subpage-hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 100%;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    display: inline-block;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    white-space: nowrap;
}

.hero p {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 1000px;
}

.subpage-hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    white-space: nowrap;
}

.subpage-hero p {
    font-size: 1.35rem;
    color: var(--text-secondary);
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
    border: 1px solid var(--accent-gold);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(214, 175, 55, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* Sections Base */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-bg-dark {
    background-color: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 5rem auto;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 8px;
    background-color: transparent;
    transition: var(--transition-smooth);
    margin: 15px 15px 30px 15px; /* Margin to accommodate offset golden frame */
}

/* Offset Gold Frame */
.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    z-index: -1;
    transition: var(--transition-smooth);
    opacity: 0.6;
}

/* Light Shine Reflection Effect */
.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: 2;
    border-radius: 8px;
}

.about-image-wrapper:hover {
    transform: translateY(-5px);
}

.about-image-wrapper:hover::before {
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
    opacity: 1;
    border-color: var(--accent-gold-hover);
}

.about-image-wrapper:hover::after {
    left: 125%;
    transition: all 0.75s ease-in-out;
}

.about-image-inner {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
    background-color: var(--bg-secondary);
    width: 100%;
    height: 100%;
}

.about-ceo-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-ceo-img {
    transform: scale(1.03);
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-features li svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    position: relative;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(45deg, transparent, rgba(214, 175, 55, 0.05));
    pointer-events: none;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-icon {
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
    width: 28px;
    height: 28px;
    transition: var(--transition-smooth);
    opacity: 0.85;
}

.stat-item:hover .stat-icon {
    transform: translateY(-3px) scale(1.1);
    color: var(--accent-gold-hover);
    opacity: 1;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    min-height: 2.2rem;
    width: 100%;
    text-align: center;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border-color: rgba(214, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Service Detailed Rows */
.service-item-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
    margin-bottom: 8rem;
}

.service-item-grid:last-of-type {
    margin-bottom: 0;
}

.service-item-grid .service-media {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    background-color: var(--bg-secondary);
}

.service-item-grid .service-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-item-grid:hover .service-media img {
    transform: scale(1.03);
}

.service-item-grid:nth-child(even) .service-media {
    order: 2;
}

.double-media {
    display: flex !important;
    gap: 1rem;
}

.double-media img {
    width: calc(50% - 0.5rem) !important;
    height: 100% !important;
    aspect-ratio: 1 / 1;
    object-fit: cover !important;
}

.service-img-wrapper.double-media img {
    aspect-ratio: auto;
}

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.service-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--bg-secondary));
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(214, 175, 55, 0.1);
    border: 1px solid rgba(214, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.service-card:hover h3 {
    color: var(--accent-gold);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-gold);
    margin-top: auto;
}

.service-link svg {
    transition: var(--transition-smooth);
}

.service-card:hover .service-link svg {
    transform: translateX(5px);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(214, 175, 55, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.contact-text p, .contact-text a {
    font-size: 1.2rem;
    font-weight: 500;
}

.contact-text a:hover {
    color: var(--accent-gold);
}

/* Booking Form Container */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    background: rgba(10, 11, 13, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1rem 1.2rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(214, 175, 55, 0.15);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.2rem;
    padding-right: 3rem;
}

textarea.form-control {
    resize: none;
    min-height: 120px;
}

.form-message {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    display: none;
}

.form-message.success {
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid #2ecc71;
    color: #2ecc71;
    display: block;
}

.form-message.error {
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid #e74c3c;
    color: #e74c3c;
    display: block;
}

/* Footer */
footer {
    background: #050608;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 span {
    color: var(--accent-gold);
    font-style: italic;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 320px;
}

.footer-links h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Scroll Fade In Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Subpage Banners
   ========================================================================== */
.subpage-hero {
    position: relative;
    padding: 160px 0 120px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: #0a0b0d;
    overflow: hidden;
}

.subpage-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    animation: kenBurns 24s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes kenBurns {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12);
    }
}


.page-banner-content {
    opacity: 1;
    transform: none;
    animation: none;
}

.about-biography-grid {
    align-items: flex-start;
    gap: 4rem;
}

.stats-biography {
    margin-top: 3rem;
}

/* Evolution Grid & Card */
.evolution-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4.5rem;
    align-items: center;
    margin-top: 3rem;
}

.evolution-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 8px;
}

.evolution-lead-text {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.evolution-desc-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.evolution-desc-text-last {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.evolution-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

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

/* Philosophy */
.philosophy-cards-grid {
    margin-top: 3.5rem;
}

/* Spotlight Quote Section */
.quote-spotlight-section {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.quote-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 4rem;
    align-items: center;
    max-width: 1050px;
    margin: 0 auto;
}

.quote-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
    background-color: var(--bg-secondary);
}

.quote-chef-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.quote-image-wrapper:hover .quote-chef-img {
    transform: scale(1.03);
}

.quote-content-wrapper {
    text-align: left;
}

.quote-mark {
    font-size: 4rem;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.quote-text {
    font-size: 1.65rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.quote-author {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.quote-conclusion {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 1024px) {
    .about-grid, .contact-grid, .evolution-grid, .service-item-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        order: -1;
    }
    
    .evolution-card {
        padding: 2.2rem 1.8rem;
    }
    
    .about-biography-grid {
        gap: 3rem;
    }

    .service-item-grid {
        margin-bottom: 5rem;
    }
    
    .service-item-grid:nth-child(even) .service-media {
        order: -1; /* Reset order to make image stack first consistently on mobile */
    }
    
    .service-item-grid .service-media {
        order: -1;
        max-height: 440px;
        width: 100%;
    }

    .quote-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .quote-content-wrapper {
        text-align: center;
    }
    
    .quote-image-wrapper {
        max-width: 340px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.35rem;
        gap: 0.6rem;
        white-space: nowrap;
    }
    .logo-img {
        width: 40px;
        height: 40px;
    }

    /* Mobile-only Staggered Alternating Rotation Reveal for Restaurant Cards */
    .restaurant-card.reveal {
        opacity: 0;
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }
    .restaurant-card.reveal:nth-child(odd) {
        transform: translateY(45px) rotate(-3deg);
    }
    .restaurant-card.reveal:nth-child(even) {
        transform: translateY(45px) rotate(3deg);
    }
    .restaurant-card.reveal.active {
        opacity: 1;
        transform: translateY(0) rotate(0deg) !important;
    }

    .hero, .subpage-hero {
        display: flex;
        flex-direction: column;
        min-height: auto;
        padding-top: 70px;
        padding-bottom: 4rem;
        background: none;
    }
    
    .hero-video-container, .subpage-hero-bg {
        position: relative;
        height: 250px;
        width: 100%;
        margin-bottom: 2rem;
        overflow: hidden;
    }
    
    .hero-video-overlay {
        background: linear-gradient(to bottom, transparent 65%, rgba(10, 11, 13, 1) 100%);
    }
    
    .hero .container, .subpage-hero .container {
        padding-top: 0;
    }

    .hero-content, .page-banner-content {
        transform: none !important;
        opacity: 1 !important;
        animation: none !important;
        text-align: left;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 2px;
        margin-bottom: 0.8rem;
    }

    .hero h1, .subpage-hero h1 {
        font-size: 2.2rem !important;
        margin-bottom: 1rem;
        white-space: normal !important;
    }

    .hero p, .subpage-hero p {
        font-size: 1.05rem !important;
        margin-bottom: 1.8rem;
    }

    .section {
        padding: 4rem 0;
    }

    header {
        padding: 0;
    }
    
    .nav-container {
        height: 70px;
    }
    
    .menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: 0;
        left: auto;
        width: 75%;
        height: calc(100vh - 70px);
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 6rem;
        gap: 2.2rem;
        transform: translateX(100%);
        transition: var(--transition-smooth);
        border-top: 1px solid rgba(255,255,255,0.05);
        border-left: 1px solid rgba(255,255,255,0.05);
        box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.6);
        z-index: 999;
    }
    .nav-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(10, 11, 13, 0.6);
        backdrop-filter: blur(4px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        z-index: 998;
    }
    
    .nav-backdrop.active {
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links a {
        font-size: 1.45rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: var(--transition-smooth);
    }
    
    .nav-links a.active-page {
        color: var(--accent-gold);
        border: 2px solid var(--accent-gold);
        padding: 0.45rem 1.6rem;
        border-radius: 30px;
        font-weight: 700;
        background: rgba(214, 175, 55, 0.08);
        box-shadow: 0 0 15px rgba(214, 175, 55, 0.15);
    }
    
    .nav-links .cta-nav {
        margin-top: 0.8rem;
        font-size: 1.3rem;
        padding: 0.8rem 2.2rem;
        border-radius: 4px;
    }
    
    .menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-image-wrapper {
        max-height: 480px;
    }

    .service-item-grid .service-media {
        max-height: 380px;
    }
    
    .quote-text {
        font-size: 1.45rem;
        line-height: 1.6;
    }
    
    .quote-conclusion {
        font-size: 0.98rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .about-stats {
        padding: 1.5rem;
        grid-template-columns: 1fr;
    }
    
    .about-image-wrapper {
        max-height: 360px;
    }

    .service-item-grid .service-media {
        max-height: 260px;
    }
}

/* ==========================================================================
   WhatsApp Floating Chat Button
   ========================================================================== */
.whatsapp-float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
}

.whatsapp-btn {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-icon {
    transform: rotate(10deg);
}

/* Pulsing Outer Ring */
.whatsapp-btn .pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #25D366;
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: whatsapp-pulse 2s infinite;
    pointer-events: none;
    opacity: 0.8;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Chat Prompt Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Responsive Scaling */
@media (max-width: 768px) {
    .whatsapp-float-container {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 52px;
        height: 52px;
    }
    
    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Avoid screen clutter on mobile devices */
    }
}

/* ==========================================================================
   Showcase Gallery
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 320px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
    background-color: var(--bg-secondary);
}

/* Staggered Entrance Reveal for Gallery */
.gallery-grid .gallery-item.reveal:nth-child(1) { transition-delay: 0.05s; }
.gallery-grid .gallery-item.reveal:nth-child(2) { transition-delay: 0.15s; }
.gallery-grid .gallery-item.reveal:nth-child(3) { transition-delay: 0.25s; }
.gallery-grid .gallery-item.reveal:nth-child(4) { transition-delay: 0.35s; }
.gallery-grid .gallery-item.reveal:nth-child(5) { transition-delay: 0.45s; }

.gallery-grid .gallery-item.reveal.active {
    /* Reset transition delay on active class to prevent hover delay */
    transition-delay: 0s;
}

.gallery-item.large {
    grid-column: span 2;
}

@media (max-width: 992px) {
    .gallery-item.large {
        grid-column: span 1;
    }
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(10, 11, 13, 0.98) 15%, rgba(10, 11, 13, 0.8) 55%, transparent 100%);
    transform: translateY(15px);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 30px rgba(214, 175, 55, 0.25);
}

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

.gallery-item:hover .gallery-info {
    transform: translateY(0);
    opacity: 1;
}

.gallery-info h4 {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 0.4rem;
    font-family: 'Playfair Display', serif;
}

.gallery-info p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.4;
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 260px;
    }
}

/* ==========================================================================
   Restaurants Portfolio Grid Styling
   ========================================================================== */
.restaurant-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.restaurant-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.8rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Staggered Reveal Animation for Hospitality Cards */
.restaurant-card.reveal {
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease !important;
}

.restaurant-card.reveal:nth-child(1) { transition-delay: 0.05s; }
.restaurant-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.restaurant-card.reveal:nth-child(3) { transition-delay: 0.15s; }
.restaurant-card.reveal:nth-child(4) { transition-delay: 0.2s; }
.restaurant-card.reveal:nth-child(5) { transition-delay: 0.25s; }
.restaurant-card.reveal:nth-child(6) { transition-delay: 0.3s; }
.restaurant-card.reveal:nth-child(7) { transition-delay: 0.35s; }
.restaurant-card.reveal:nth-child(8) { transition-delay: 0.4s; }
.restaurant-card.reveal:nth-child(9) { transition-delay: 0.45s; }
.restaurant-card.reveal:nth-child(10) { transition-delay: 0.5s; }
.restaurant-card.reveal:nth-child(11) { transition-delay: 0.55s; }
.restaurant-card.reveal:nth-child(12) { transition-delay: 0.6s; }

.restaurant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: var(--accent-gold);
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.restaurant-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(214, 175, 55, 0.35);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.restaurant-card:hover::before {
    height: 100%;
    opacity: 1;
    background-color: var(--accent-gold-hover);
}

.restaurant-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.restaurant-card h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 600;
}

.restaurant-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.5;
}

.michelin-badge {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    border-radius: 20px;
    padding: 0.2rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Video Showcase Section
   ========================================================================== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.video-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(214, 175, 55, 0.35);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: none;
}

.video-info {
    padding: 2rem;
}

.video-info h4 {
    font-size: 1.4rem;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.video-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-info {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   Portfolio Filter Buttons & Tags
   ========================================================================== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(25, 28, 38, 0.6);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.6rem 1.6rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
    box-shadow: 0 5px 15px rgba(214, 175, 55, 0.25);
    transform: translateY(-2px);
}

.restaurant-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

.tag-badge {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    padding: 0.25rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.restaurant-card:hover .tag-badge {
    border-color: rgba(212, 175, 55, 0.25);
    background: rgba(212, 175, 55, 0.03);
    color: var(--text-primary);
}

.location-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.location-badge svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent-gold);
}

.restaurant-icon-badge {
    width: 42px;
    height: 42px;
    background: rgba(214, 175, 55, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.restaurant-card:hover .restaurant-icon-badge {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(214, 175, 55, 0.35);
    transform: rotate(8deg);
}

.restaurant-icon-badge svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 11, 13, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 10000;
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(214, 175, 55, 0.05);
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    padding: 2.5rem;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}




