@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Montserrat:wght@100..900&family=Dancing+Script:wght@400..700&display=swap');

:root {
    --bg-color: #050505;
    --bg-card: #0f0f0f;
    --accent-gold: #d4af37;
    --accent-gold-dark: #b8860b;
    --text-color: #fdfdfd;
    --text-muted: #888888;
    --transition-smooth: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

h1, h2, h3, h4, .serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    letter-spacing: 2px;
}

.script {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
}

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

ul {
    list-style: none;
}

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

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.logo {
    margin-right: auto;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    margin-right: 3rem;
}

.nav-links li a {
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0.5px;
    font-weight: 500;
    opacity: 0.9;
}

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

.nav-btns {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 2001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%; /* Exactly half screen as requested */
    height: 100vh;
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(15px);
    z-index: 2000;
    padding: 8rem 5% 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-size: 0.9rem; /* Chota size as requested */
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    transition: var(--transition-smooth);
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
}

.mobile-menu a:hover {
    color: var(--accent-gold);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.btn-gold {
    background: var(--accent-gold);
    color: #000;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    text-transform: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-gold:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    text-transform: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: #000;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 10%;
}

.about-hero {
    padding: 10rem 10% 5rem;
    text-align: center;
    background: #050505;
}

.about-hero h1 {
    font-size: 4rem;
    margin-top: 1rem;
    text-transform: uppercase;
}

.hero-content {
    max-width: 600px;
}

.hero-tagline {
    text-transform: none;
    color: var(--accent-gold);
    letter-spacing: 1px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: block;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0rem;
    text-transform: uppercase;
    color: var(--text-color);
}

.hero .script {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 3rem;
    display: block;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Significance Section */
.significance {
    padding: 8rem 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sig-img {
    position: relative;
}

.sig-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.sig-content span {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
}

.sig-content h2 {
    font-size: 3rem;
    margin: 1rem 0 2rem;
}

.sig-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Language Selector */
.lang-selector {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--accent-gold);
    padding: 0.8rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition-smooth);
}

.lang-selector:hover {
    background: var(--accent-gold);
}

.lang-selector svg {
    width: 24px;
    height: 24px;
    fill: var(--text-color);
}

.lang-selector:hover svg {
    fill: #000;
}

/* Reviews Ticker */
.reviews-section {
    padding: 8rem 0;
    overflow: hidden;
    background: #080808;
}

.reviews-ticker {
    display: flex;
    width: fit-content;
}

.ticker-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: scroll 30s linear infinite;
    gap: 2rem;
    padding: 2rem;
}

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

.review-card {
    width: 400px;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #222;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card .name {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.review-card .stars {
    color: #f1c40f;
    margin-bottom: 1rem;
}

.review-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

/* FAQ Section */
.faq-container {
    padding: 8rem 15%;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #222;
}

.faq-question {
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--text-muted);
    padding-bottom: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-icon {
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-container h2 { font-size: 2rem; margin-bottom: 2rem; }
    .about-hero h1 { font-size: 2.5rem; }
    .about-content { padding: 3rem 5% !important; font-size: 1rem !important; }
    .values-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .ticker-track { animation-duration: 25s !important; }
    nav {
        width: 92%;
        left: 4%;
        top: 1rem;
        border-radius: 50px;
        padding: 0.8rem 1.5rem;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-links { 
        display: none; 
    }
    
    .nav-btns {
        display: flex;
        margin-right: 1rem;
    }

    .nav-btns .btn-gold {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .nav-btns .btn-outline {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .logo img {
        height: 40px;
    }

    .hero h1 { 
        font-size: clamp(2rem, 10vw, 2.5rem);
        line-height: 1.1;
    }
    .hero .script { font-size: clamp(1.2rem, 5vw, 1.5rem); }
    .hero-tagline { font-size: 0.8rem; letter-spacing: 2px; }
    
    .ticker-track {
        animation-duration: 10s !important;
    }

    .carousel-btn {
        display: flex;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        background: rgba(8, 8, 8, 0.8);
        border-color: var(--accent-gold);
    }

    .carousel-btn--prev { left: 5px; }
    .carousel-btn--next { right: 5px; }
    
    .significance { 
        padding: 4rem 5%;
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 2rem;
    }
    
    .sig-content h2 { font-size: 2.2rem; }
    
    .faq-container { padding: 4rem 5%; }
}

/* Vertical Reviews Slider */
.vertical-reviews {
    height: 400px;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.vertical-track {
    display: flex;
    flex-direction: column;
    animation: scroll-vertical 30s linear infinite;
    gap: 2rem;
}

@keyframes scroll-vertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.vertical-review-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid #222;
    margin: 0 auto;
    width: 90%;
    max-width: 600px;
    text-align: center;
}


/* ===== FOOTER ===== */
footer {
    background: #030303;
    border-top: 1px solid #1a1a1a;
    padding: 5rem 10% 2rem;
}

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

.footer-brand img {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
    color: var(--text-color);
    padding-left: 5px;
}

.footer-col address {
    font-style: normal;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.9;
}

.footer-col address strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 0.3rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .faq-container h2 { font-size: 2rem; margin-bottom: 2rem; }
    .about-hero h1 { font-size: 2.5rem; }
    .about-content { padding: 3rem 5% !important; font-size: 1rem !important; }
    .values-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .ticker-track { animation-duration: 25s !important; }

}


/* ===== WORK CAROUSEL ===== */
.work-carousel-section {
    padding: 6rem 10%;
    background: #080808;
    position: relative;
    overflow: hidden;
}

.work-carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.work-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 -1rem;
}

.work-carousel-track-container {
    overflow: hidden;
    width: 100%;
    scroll-behavior: smooth;
    cursor: grab;
    padding: 1rem;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    scroll-snap-type: x mandatory;
}
.work-carousel-track-container::-webkit-scrollbar {
    display: none;
}
.work-carousel-track-container.dragging {
    scroll-behavior: auto;
    cursor: grabbing;
}

.work-carousel-track {
    display: flex;
    gap: 2rem;
}

.work-carousel-card {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 250px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: transform 0.4s ease;
    scroll-snap-align: center;
}

.work-carousel-card:hover {
    transform: translateY(-10px);
}

.work-carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-carousel-card:hover img {
    transform: scale(1.05);
}

.work-carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.work-carousel-card:hover .work-carousel-overlay {
    transform: translateY(0);
    opacity: 1;
}

.carousel-btn {
    background: var(--bg-card);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.carousel-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

.carousel-btn--prev {
    left: -24px;
}

.carousel-btn--next {
    right: -24px;
}

@media (max-width: 1024px) {
    .work-carousel-card {
        flex: 0 0 calc(33.333% - 1.33rem);
    }
}

@media (max-width: 768px) {
    .faq-container h2 { font-size: 2rem; margin-bottom: 2rem; }
    .about-hero h1 { font-size: 2.5rem; }
    .about-content { padding: 3rem 5% !important; font-size: 1rem !important; }
    .values-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .ticker-track { animation-duration: 25s !important; }
    .work-carousel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .work-carousel-card {
        flex: 0 0 calc(75% - 1rem);
    }
    .carousel-btn {
        display: flex;
    }
}

@media (max-width: 480px) {
    .work-carousel-card {
        flex: 0 0 80%;
    }
}

/* ===== FULL MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {

    /* Hero */
    .hero {
        padding: 6rem 5% 4rem !important;
        align-items: center !important;
        text-align: center !important;
        min-height: 100vh;
    }
    .hero-content {
        max-width: 100% !important;
    }
    .hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem) !important;
        line-height: 1.1 !important;
    }
    .hero .script, .hero span.script {
        font-size: clamp(1.5rem, 7vw, 2rem) !important;
    }
    .hero-tagline {
        font-size: 0.85rem !important;
    }
    .hero p {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
    }
    .hero-btns {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
        width: 100% !important;
    }
    .hero-btns a {
        width: 100% !important;
        text-align: center !important;
        padding: 1rem !important;
    }

    /* Significance / Who We Are */
    .significance {
        grid-template-columns: 1fr !important;
        padding: 4rem 5% !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    .sig-content h2 {
        font-size: 2rem !important;
    }
    .sig-content p {
        font-size: 0.95rem !important;
    }
    .sig-content span.script {
        font-size: 1.8rem !important;
    }

    /* Work Carousel Section */
    .work-carousel-section {
        padding: 4rem 0 !important;
    }
    .work-carousel-section > div:first-child {
        padding: 0 5% !important;
    }
    .work-carousel-section h2 {
        font-size: 2rem !important;
    }
    .work-carousel-track-container {
        padding: 0 5% !important;
    }
    .work-carousel-card {
        flex: 0 0 80% !important;
        min-width: unset !important;
    }

    /* Reviews Section */
    .reviews-section {
        padding: 4rem 0 !important;
    }
    .reviews-section h2 {
        font-size: 2rem !important;
        padding: 0 5% !important;
    }
    .reviews-section span.script {
        font-size: 1.6rem !important;
    }
    .ticker-track {
        gap: 1.5rem !important;
        animation-duration: 30s !important;
    }
    .review-card {
        width: 280px !important;
        padding: 1.5rem !important;
    }
    .review-card p {
        font-size: 0.9rem !important;
    }

    /* Footer rules removed to avoid conflicts with inline footer styles */
    /* General headings */
    h1, h2 {
        letter-spacing: 1px !important;
    }
    h2 {
        font-size: 2rem !important;
    }
}

