/* 
   Luxxart Interiors - Main Stylesheet
   Theme: Light, Gold, Black, Beige
*/

:root {
    /* Color Palette */
    --color-gold-primary: #C5A059;
    --color-gold-accent: #D4AF37;
    --color-black: #1A1A1A;
    --color-text-dark: #333333;
    --color-beige-bg: #FAF9F6;
    /* Off-white / Cream */
    --color-white: #FFFFFF;

    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text-dark);
    background-color: var(--color-beige-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    color: var(--color-black);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Container Utility */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.text-gold {
    color: var(--color-gold-primary);
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    cursor: pointer;
    border-radius: 30px;
}

.btn-primary {
    background-color: var(--color-gold-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-gold-accent);
    transform: translateY(-2px);
}

.btn-contact {
    border: 1px solid var(--color-black);
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
}

.btn-contact:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* ==================================
   Opening Animation Overlay
   ================================== */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease, visibility 1s ease;
}

.overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    /* Subtle texture effect */
    z-index: -1;
}

.overlay-content {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s ease forwards;
    width: 100%;
    display: flex;
    justify-content: center;
}

.overlay-logo-large {
    width: 600px;
    max-width: 90%;
    height: auto;
}

.overlay-logo {
    width: 300px;
    /* Adjust size as needed */
    max-width: 80%;
    height: auto;
    margin-bottom: 2rem;
}

.overlay-content .logo-text,
.overlay-content .tagline {
    display: none;
    /* Hide text, show logo image */
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================================
   Header & Navigation
   ================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background-color: transparent;
    transition: background-color var(--transition-medium), padding var(--transition-medium), box-shadow var(--transition-medium);
}

#main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 60px;
    /* Adjust size */
    width: auto;
}

.desktop-nav ul {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.desktop-nav a {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    color: var(--color-black);
    position: relative;
}

.desktop-nav a:not(.btn-contact)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-gold-primary);
    transition: width var(--transition-fast);
}

.desktop-nav a:not(.btn-contact):hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--color-black);
    transition: all 0.3s ease;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-beige-bg);
    z-index: 999;
    transition: right 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-links {
    text-align: center;
}

.mobile-nav-links li {
    margin: 2rem 0;
}

.mobile-nav-links a {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-black);
}

/* ==================================
   Hero Section
   ================================== */
#hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Cinematic Luxury: High-res interior shot */
    background: url('../images/Geometric%20Wall%20Feature.png') center/cover no-repeat;
    z-index: -2;
    animation: zoomIn 20s infinite alternate;
}

/* 
   Note: Since I cannot easily access the user's uploaded file path in CSS 
   without moving it, I will simulate it. 
   Ideally, I'd use `url('../images/hero-bg.jpg')` 
*/

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Darker overlay for text readability */
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--color-white);
    /* White text for contrast */
    z-index: 1;
    transform: translateY(30px);
    opacity: 0;
    animation: contentFadeUp 1s ease 2.5s forwards;
    /* Delay for opening animation */
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    /* Reduced by ~5pts from 4.5rem */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    /* Increased size */
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    font-weight: 700;
    /* Made bold */
    color: #f0f0f0;
}

@keyframes contentFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

/* Hero Button Shimmer */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% {
        left: 200%;
    }
}

/* Bouncing Down Arrow */
.hero-scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    animation: contentFadeUp 1s ease 3s forwards, bounce 2s infinite 4s;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* ==================================
   Stats Bar Section
   ================================== */
.stats-bar {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    color: var(--color-gold-primary);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ccc;
}

/* Responsive - Header & Hero */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .overlay-content .logo-text {
        font-size: 2.5rem;
    }
}

/* ==================================
   Sections General
   ================================== */
section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-black);
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-subtitle {
    font-family: var(--font-sans);
    color: var(--color-gold-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    display: block;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-gold-primary);
    margin-bottom: 2rem;
}

.divider.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.btn-outline {
    border: 2px solid var(--color-black);
    color: var(--color-black);
    padding: 1rem 2rem;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    transition: all var(--transition-fast);
}

.btn-outline.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
}

.btn-outline:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* ==================================
   About Section
   ================================== */
#about {
    background-color: var(--color-white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.about-features li {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-image-collage {
    position: relative;
    height: 500px;
}

.collage-img {
    position: absolute;
    border: 4px solid var(--color-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform var(--transition-medium), z-index 0.1s;
    object-fit: cover;
}

.collage-img:hover {
    transform: scale(1.05);
    z-index: 10;
}

.main-img {
    top: 0;
    left: 0;
    width: 60%;
    height: 70%;
    z-index: 3;
}

.sub-img-1 {
    top: 20%;
    right: 0;
    width: 50%;
    height: 60%;
    z-index: 2;
}

.sub-img-2 {
    bottom: -5%;
    left: 20%;
    width: 45%;
    height: 40%;
    z-index: 4;
}

/* ==================================
   Limited Time Offer Banner
   ================================== */
.promo-banner {
    background-color: var(--color-gold-primary);
    /* Gold background */
    padding: 5rem 0;
    background-image: url('../images/Hexagon%20Texture%20Background.png');
    /* Subtle texture */
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--color-white);
}

.promo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    background: rgba(26, 26, 26, 0.9);
    /* Dark box for contrast */
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.promo-badge {
    display: inline-block;
    background-color: var(--color-gold-accent);
    color: var(--color-black);
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.promo-content h2 {
    color: var(--color-gold-primary);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.promo-content p {
    color: #ddd;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.promo-countdown {
    display: flex;
    gap: 1.5rem;
}

.countdown-item {
    text-align: center;
}

.cd-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.cd-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-gold-primary);
    letter-spacing: 2px;
}

.pulse-btn {
    animation: pulse 2s infinite;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    background-color: var(--color-gold-accent);
    color: var(--color-black);
}

.pulse-btn:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* ==================================
   Services Section (unchanged lines omitted for brevity)
   ================================== */
#services {
    background-color: var(--color-beige-bg);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Service Card with Center Alignment */
.service-card {
    background-color: var(--color-white);
    padding: 3rem 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    /* Adding slight rounded edges */
    transition: all var(--transition-fast);
    text-align: center;
    /* Centers content as requested */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--color-gold-primary);
}

.service-icon {
    margin-bottom: 1.5rem;
    color: var(--color-gold-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60px;
    background-color: var(--color-beige-bg);
    border-radius: 50%;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.service-card:hover .service-icon {
    background-color: var(--color-gold-primary);
    color: var(--color-white);
}

/* Icon Shapes (Placeholders) */
.icon-square {
    display: block;
    width: 24px;
    height: 24px;
    border: 2px solid currentColor;
}

.icon-circle {
    display: block;
    width: 24px;
    height: 24px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.icon-diamond {
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    transform: rotate(45deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
    /* Push to bottom of card */
    transition: color var(--transition-fast);
}

.service-link .arrow {
    color: var(--color-gold-primary);
    transition: transform var(--transition-fast);
}

.service-card:hover .service-link {
    color: var(--color-gold-primary);
}

.service-card:hover .service-link .arrow {
    transform: translateX(5px);
}

/* ==================================
   Timeline / Our Process Section
   ================================== */
.timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 4rem;
}

.timeline-track {
    position: absolute;
    top: 25px;
    left: 5%;
    width: 90%;
    height: 3px;
    background-color: #eee;
    z-index: 1;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.step-dot {
    width: 50px;
    height: 50px;
    background-color: var(--color-gold-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 0 0 5px var(--color-white);
    transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.timeline-step:hover .step-dot {
    transform: scale(1.1);
    background-color: var(--color-black);
}

.timeline-step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--color-black);
}

.timeline-step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* ==================================
   Instagram Feed Grid
   ================================== */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.insta-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: block;
}

.insta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(197, 160, 89, 0.8);
    /* Gold overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-item:hover .insta-img {
    transform: scale(1.1);
}

.insta-icon {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--color-white);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* ==================================
   Testimonials Carousel
   ================================== */
.testimonial-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 3rem;
    width: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    flex-shrink: 0;
}

.quote-icon {
    font-size: 4rem;
    font-family: var(--font-serif);
    color: rgba(197, 160, 89, 0.2);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.client-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    color: var(--color-black);
}

.client-role {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--color-gold-primary);
    letter-spacing: 1px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move left by the width of the unique cards plus their gaps. 
           (3 cards * 400px) + (3 gaps * 32px) = 1296px */
        transform: translateX(-1296px);
    }
}

/* ==================================
   FAQ Section - NEW
   ================================== */
#faq {
    background-color: var(--color-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--color-white);
    padding: 2rem;
    border-left: 3px solid var(--color-gold-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.faq-item p {
    font-size: 0.95rem;
    color: #666;
}

/* ==================================
   Careers Section - NEW
   ================================== */
#careers {
    background-color: var(--color-white);
}

.careers-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.career-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border: 1px solid #eee;
    margin-bottom: 1.5rem;
    transition: all var(--transition-fast);
}

.career-card:hover {
    border-color: var(--color-gold-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.career-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.career-info .location {
    font-family: var(--font-sans);
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================================
   Contact Section
   ================================== */
#contact {
    background-color: var(--color-beige-bg);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--color-white);
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--color-black);
    font-weight: 700;
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid #ddd;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    border-radius: 30px;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold-primary);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
    border-radius: 15px;
    /* Less than full pill for textareas */
}

/* ==================================
   Footer
   ================================== */
/* ==================================
   Footer
   ================================== */
footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: left;
}

.footer-col h4 {
    color: var(--color-gold-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
    color: var(--color-white);
}

.footer-col p {
    color: #aaa;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.social-links {
    margin-bottom: 0;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid var(--color-gold-primary);
    border-radius: 50%;
    margin-right: 0.5rem;
    text-align: center;
    color: var(--color-gold-primary);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--color-gold-primary);
    color: var(--color-black);
}

/* Animation Classes */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* ==================================
   Portfolio Section
   ================================== */
#portfolio {
    background-color: var(--color-white);
}

.portfolio-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.8rem;
    color: var(--color-black);
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

.category-headline {
    font-family: var(--font-sans);
    color: var(--color-gold-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.category-desc {
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    height: 300px;
    /* Adjusted height for correct aspect ratios */
    overflow: hidden;
    cursor: pointer;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.85);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
    padding: 1rem;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-overlay h4 {
    font-size: 1.3rem;
    color: var(--color-gold-primary);
    transform: translateY(20px);
    transition: transform var(--transition-fast);
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: transform var(--transition-fast) 0.1s;
    line-height: 1.4;
}

.portfolio-item:hover h4,
.portfolio-item:hover p {
    transform: translateY(0);
}

/* Responsive - Sections */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        height: 350px;
        order: -1;
        /* Image on top on mobile */
    }

    .about-image-collage {
        height: 400px;
        order: -1;
        margin-bottom: 2rem;
    }

    .about-text {
        text-align: center;
    }

    .about-text .divider {
        margin: 0 auto 2rem auto;
    }

    .about-features {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .promo-container {
        flex-direction: column;
        text-align: center;
    }

    .promo-countdown {
        justify-content: center;
    }

    .footer-layout {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .career-card {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .timeline-container {
        flex-direction: column;
        align-items: center;
    }

    .timeline-track {
        display: none;
    }

    .timeline-step {
        margin-bottom: 2rem;
        border-left: 2px solid var(--color-gold-primary);
        padding-left: 2rem;
        text-align: left;
    }

    .step-dot {
        margin: 0 0 1rem 0;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        position: absolute;
        left: -20px;
        top: 0;
    }

    .testimonial-card {
        width: 300px;
        padding: 2rem;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            /* (3 * 300px) + (3 * 32px) = 996px */
            transform: translateX(-996px);
        }
    }
}

/* Mobile Specific (Phones) */
@media (max-width: 600px) {
    .about-image {
        height: 250px;
    }

    .about-image-collage {
        height: 300px;
    }

    .portfolio-item {
        height: 250px;
    }
}

/* ==================================
   Footer (Updated)
   ================================== */
footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    display: inline-block;
    color: var(--color-white);
    text-decoration: none;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: #aaa;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--color-gold-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--color-gold-primary);
    border-color: var(--color-gold-primary);
    color: var(--color-black);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom .copyright {
    color: #666;
    font-size: 0.85rem;
}

/* ==================================
   Floating WhatsApp Button
   ================================== */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: waBouncePulse 2s infinite;
}

.floating-wa:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

.wa-icon {
    font-weight: bold;
    font-size: 1.2rem;
}

.wa-text {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
}

@keyframes waBouncePulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}