/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #0B0B0B;
    color: #F5F2ED;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    font-weight: 600;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.container-small {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-subtitle {
    color: #C9A24D;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-primary {
    background-color: #C9A24D;
    color: #0B0B0B;
}

.btn-primary:hover {
    background-color: #B89340;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid #C9A24D;
    color: #F5F2ED;
}

.btn-secondary:hover {
    background-color: #C9A24D;
    color: #0B0B0B;
}

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

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
    animation-delay: 0.5s;
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.fade-in-delay {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.8s;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 1.1s;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11, 11, 11, 0.7), rgba(11, 11, 11, 0.5), #0B0B0B);
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 1200px;
}

.hero-subtitle {
    color: #C9A24D;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 6rem;
    line-height: 0.95;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-roles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
}

.hero-roles span {
    color: rgba(245, 242, 237, 0.9);
}

.hero-roles .separator {
    color: #C9A24D;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: none;
    color: #C9A24D;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator:hover {
    color: #B89340;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: 8rem 0;
    background-color: #0B0B0B;
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.7s ease;
}

.about-image:hover img {
    filter: grayscale(0%);
}

.about-image-border {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 8rem;
    height: 8rem;
    border: 1px solid rgba(201, 162, 77, 0.3);
    pointer-events: none;
}

.about-text {
    margin-top: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: rgba(245, 242, 237, 0.8);
    line-height: 1.8;
}

.about-stats {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(201, 162, 77, 0.15);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    color: #C9A24D;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(245, 242, 237, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ============================================
   EXPERTISE SECTION
   ============================================ */

.expertise {
    padding: 8rem 0;
    background-color: rgba(26, 26, 26, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: rgba(11, 11, 11, 0.5);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border: 1px solid rgba(201, 162, 77, 0.15);
    transition: all 0.5s ease;
}

.service-card:hover {
    border-color: rgba(201, 162, 77, 0.5);
    transform: translateY(-5px);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(201, 162, 77, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: rgba(201, 162, 77, 0.1);
}

.service-icon svg {
    color: #C9A24D;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.875rem;
    color: rgba(245, 242, 237, 0.7);
    line-height: 1.7;
}

.service-line {
    margin-top: 1.5rem;
    width: 3rem;
    height: 1px;
    background-color: rgba(201, 162, 77, 0.3);
    transition: width 0.5s ease;
}

.service-card:hover .service-line {
    width: 6rem;
}

/* ============================================
   FEATURED WORK SECTION
   ============================================ */

.featured-work {
    padding: 8rem 0;
    background-color: #0B0B0B;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.work-card {
    position: relative;
    overflow: hidden;
    background-color: rgba(26, 26, 26, 0.2);
    cursor: pointer;
}

.work-card img,
.work-card video {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.7s ease;
    object-fit: cover !important; 
    image-rendering: auto; 
}

.work-card:hover img,
.work-card:hover video {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0B0B0B, rgba(11, 11, 11, 0.5), transparent);
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.work-card:hover .work-overlay {
    opacity: 0.9;
}

.work-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    transform: translateY(0.25rem);
    transition: transform 0.5s ease;
}

.work-card:hover .work-content {
    transform: translateY(0);
}

.work-year {
    color: #C9A24D;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.work-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.work-role {
    color: rgba(245, 242, 237, 0.7);
}

.work-line {
    margin-top: 1rem;
    width: 3rem;
    height: 1px;
    background-color: #C9A24D;
    opacity: 0;
    transition: all 0.5s ease;
}

.work-card:hover .work-line {
    opacity: 1;
    width: 6rem;
}

/* ============================================
   BRANDS SECTION
   ============================================ */

.brands {
    padding: 8rem 0;
    background-color: rgba(26, 26, 26, 0.3);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem 3rem;
    margin-bottom: 5rem;
}

.brand-item {
    color: rgba(245, 242, 237, 0.4);
    text-align: center;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    transition: color 0.3s ease;
    cursor: default;
}

.brand-item:hover {
    color: #C9A24D;
}

.brands-footer {
    text-align: center;
    color: rgba(245, 242, 237, 0.5);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery {
    padding: 8rem 0;
    background-color: #0B0B0B;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.7s ease;
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(11, 11, 11, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    transform: translateY(1rem);
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 8rem 0;
    background-color: rgba(26, 26, 26, 0.3);
}

.contact-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
    color: rgba(245, 242, 237, 0.7);
    font-size: 1.125rem;
    line-height: 1.7;
}

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

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    background-color: rgba(245, 242, 237, 0.05);
    border: 1px solid rgba(201, 162, 77, 0.15);
    color: #F5F2ED;
    padding: 1rem 1.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C9A24D;
}

.form-group textarea {
    resize: none;
}

/* Contact Info */
.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(245, 242, 237, 0.8);
    transition: color 0.3s ease;
}

.contact-method:hover {
    color: #C9A24D;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(201, 162, 77, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease;
}

.contact-method:hover .contact-icon {
    border-color: #C9A24D;
}

.contact-quote {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(201, 162, 77, 0.15);
}

.contact-quote p {
    color: rgba(245, 242, 237, 0.6);
    line-height: 1.8;
    font-style: italic;
}

.quote-author {
    color: #C9A24D;
    margin-top: 1rem;
    letter-spacing: 0.1em;
    font-style: normal !important;
}

/* Footer */
.footer {
    padding-top: 3rem;
    border-top: 1px solid rgba(201, 162, 77, 0.15);
    text-align: center;
}

.footer p {
    color: rgba(245, 242, 237, 0.5);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .section-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container,
    .container-small {
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    /* Hero */
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-roles {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 1rem;
    }
    
    .hero-roles .separator {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    /* About */
    .about {
        padding: 5rem 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-border {
        width: 6rem;
        height: 6rem;
        bottom: -1rem;
        right: -1rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Expertise */
    .expertise {
        padding: 5rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Featured Work */
    .featured-work {
        padding: 5rem 0;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    /* Brands */
    .brands {
        padding: 5rem 0;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Gallery */
    .gallery {
        padding: 5rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact */
    .contact {
        padding: 5rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .work-content h3 {
        font-size: 1.5rem;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .scroll-indicator,
    .hero-buttons,
    .contact-form {
        display: none;
    }
    
    body {
        background-color: white;
        color: black;
    }
}

/* ====== BRANDS SECTION - MOVING CAROUSEL ====== */

.brands {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f6f4 0%, #faf9f7 100%);
    overflow: hidden;
    position: relative;
}

.brands::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, #f8f6f4 0%, rgba(248, 246, 244, 0) 100%);
    z-index: 10;
    pointer-events: none;
}

.brands::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, rgba(248, 246, 244, 0) 0%, #f8f6f4 100%);
    z-index: 10;
    pointer-events: none;
}

/* Logos Wrapper */
.logos-wrapper {
    width: 100%;
    overflow: hidden;
    margin: 4rem 0 2rem 0;
    position: relative;
}

.logos-carousel {
    display: flex;
    width: max-content;
    gap: 3rem;
    animation: scrollLogos 40s linear infinite;
    will-change: transform;
}

/* Logo Item */
.logo-item {
    flex: 0 0 auto;
    min-width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background: #fff;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Animation */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.logos-carousel:hover {
    animation-play-state: paused;
}

/* Brands Footer Text */
.brands-footer {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 2rem;
    letter-spacing: 0.5px;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====== RESPONSIVE DESIGN ====== */

/* Tablet (768px to 1024px) */
@media (max-width: 1024px) {
    .brands {
        padding: 4rem 0;
    }

    .logo-item {
        min-width: 160px;
        height: 80px;
        padding: 1.2rem;
        gap: 2rem;
    }

    .logos-carousel {
        gap: 2rem;
        animation: scrollLogos 35s linear infinite;
    }

    .brands::before,
    .brands::after {
        width: 80px;
    }
}

/* Mobile (480px to 767px) */
@media (max-width: 767px) {
    .brands {
        padding: 3rem 0;
    }

    .logo-item {
        min-width: 140px;
        height: 70px;
        padding: 1rem;
    }

    .logos-carousel {
        gap: 1.5rem;
        animation: scrollLogos 30s linear infinite;
    }

    .logo-item img {
        filter: grayscale(0%);
    }

    .logo-item:hover {
        transform: translateY(-4px);
    }

    .brands::before,
    .brands::after {
        width: 60px;
    }

    .brands-footer {
        font-size: 0.9rem;
    }
}

/* Small Mobile (below 480px) */
@media (max-width: 479px) {
    .brands {
        padding: 2rem 0;
    }

    .logo-item {
        min-width: 120px;
        height: 60px;
        padding: 0.8rem;
        border-radius: 8px;
    }

    .logos-carousel {
        gap: 1rem;
        animation: scrollLogos 25s linear infinite;
    }

    .brands::before,
    .brands::after {
        width: 40px;
    }

    .brands-footer {
        font-size: 0.85rem;
        padding: 0 1rem;
    }
}

/* ====== SMOOTH SCROLLING & PERFORMANCE ====== */

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .logos-carousel {
        animation: none;
    }

    .logo-item:hover {
        transform: none;
    }

    .logo-item img {
        filter: grayscale(100%);
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .brands {
        background: linear-gradient(135deg, #1a1a1a 0%, #242424 100%);
    }

    .brands::before {
        background: linear-gradient(90deg, #1a1a1a 0%, rgba(26, 26, 26, 0) 100%);
    }

    .brands::after {
        background: linear-gradient(90deg, rgba(26, 26, 26, 0) 0%, #1a1a1a 100%);
    }

    .logo-item {
        background: #2a2a2a;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .logo-item:hover {
        background: #333;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .brands-footer {
        color: #aaa;
    }
}

.logo-item img {
    width: auto;           /* Width adjusts automatically */
    height: auto;          /* Height adjusts automatically */
    max-width: 100%;       /* Never wider than container */
    max-height: 100%;      /* Never taller than container */
    object-fit: contain;   /* Keep entire image visible */
    object-position: center; /* Center the image */
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.whatsapp-float{
    position: fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    z-index:1000;
}

.whatsapp-float img{
    width:60px;
    height:60px;
}