/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #020d18;
    --text-color: #e0e6ed;
    --gold-color: #d4af37;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f6e27a 50%, #d4af37 100%);
    --card-bg: rgba(255, 255, 255, 0.05);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-speed: 0.4s;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #020d18;
}

::-webkit-scrollbar-thumb {
    background: var(--gold-color);
    border-radius: 4px;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.gold-text {
    color: var(--gold-color);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold-color);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    z-index: 1;
}

.btn-primary {
    color: var(--gold-color);
    background: transparent;
}

.btn-primary:hover {
    color: #000;
    background: var(--gold-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.btn-gold {
    background: var(--gold-gradient);
    color: #000;
    border: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(2, 13, 24, 0.9), transparent);
    transition: 0.4s;
}

.navbar.scrolled {
    background: rgba(2, 13, 24, 0.95);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 130px;
    width: auto;
    object-fit: contain;
    margin-top: -35px;
    margin-bottom: -35px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.hamburger {
    display: none;
}

.nav-links a:hover {
    color: var(--gold-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1519167791923-37d38aaa95d2?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover;
    background-attachment: fixed;
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(2, 13, 24, 0.3), rgba(2, 13, 24, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.5s ease-out;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 20px;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

/* About Section */
.section {
    padding: 100px 50px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #aaa;
    font-size: 1.1rem;
    margin-top: -10px;
    margin-bottom: 20px;
    font-weight: 300;
}

.separator {
    width: 80px;
    height: 3px;
    background: var(--gold-color);
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    background: var(--card-bg);
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    color: var(--gold-color);
    font-weight: 700;
}

/* Why Choose Elite */
.why-us-section {
    background-color: #031121;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    font-size: 3rem;
    color: var(--gold-color);
    margin-bottom: 25px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #fff;
}

.feature-card p {
    color: #aaa;
    font-size: 0.95rem;
}

/* Signature Gallery */
.gallery-section {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 15px;
    padding: 0 15px;
}

/* Make gallery items span differently for a masonry/mosaic feel */
.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    height: 615px;
}

.gallery-item:nth-child(2) {
    grid-row: span 1;
}

.gallery-item:nth-child(3) {
    grid-row: span 1;
}

.gallery-item:nth-child(4) {
    grid-row: span 1;
}

.gallery-item:nth-child(5) {
    grid-column: span 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: 0.4s;
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

/* Process Section */
.process-section {
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    position: relative;
    padding: 20px;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.2);
    font-family: var(--font-heading);
    margin-bottom: -20px;
    position: relative;
    z-index: 1;
}

.step h3 {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.step p {
    color: #ccc;
    font-size: 0.95rem;
}

.step-connector {
    width: 50px;
    height: 2px;
    background: rgba(212, 175, 55, 0.3);
    margin-top: 60px;
    /* Aligns with roughly the center of the step content */
}


/* Services - Image Cards Style */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    /* Adjusted for image */
    overflow: hidden;
    border-radius: 6px;
    transition: 0.4s;
    height: 400px;
    /* Taller for image impact */
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-img {
    height: 60%;
    background-size: cover;
    background-position: center;
    transition: 0.5s;
}

.service-details {
    padding: 25px;
    text-align: center;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card:hover .service-img {
    height: 50%;
    transform: scale(1.05);
}

.service-card h3 {
    color: var(--gold-color);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.service-card p {
    font-size: 0.9rem;
    color: #ccc;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 40px;
    border-top: 4px solid var(--gold-color);
    text-align: center;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #ddd;
}

.testimonial-card h4 {
    color: var(--gold-color);
    font-weight: 600;
}

/* PROPER LOCATIONS SECTION - Clean, Elegant, Single Line */
.locations-section-grand {
    background: linear-gradient(rgba(2, 13, 24, 0.95), rgba(2, 13, 24, 0.98)), url('https://images.unsplash.com/photo-1596435338165-8b201a07d612?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 0;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.locations-section-grand .section-title {
    margin-bottom: 60px;
    font-size: 2.8rem;
    color: var(--gold-color);
    letter-spacing: 2px;
}

.container-fluid {
    max-width: 1400px;
    /* Constrain width but keep it wide */
    margin: 0 auto;
    padding: 0 40px;
}

.locations-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap;
    /* Keep on one line for desktop */
}

.location-item {
    flex: 1;
    text-align: left;
    padding: 25px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border-left: 1px solid var(--gold-color);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.location-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.location-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-color);
    transition: 0.3s;
}

.location-item:hover::after {
    width: 100%;
}

.city-name {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.address-text {
    font-size: 0.95rem;
    color: #aebacd;
    font-weight: 300;
    line-height: 1.6;
}

/* Contact */
.contact-wrapper {
    display: flex;
    justify-content: space-between;
    background: var(--card-bg);
    padding: 50px;
    border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    color: #fff;
    font-family: inherit;
}

.contact-form input:focus {
    border-color: var(--gold-color);
    outline: none;
    background: rgba(255, 255, 255, 0.08);
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-left,
.reveal-right,
.reveal-bottom {
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-bottom {
    transform: translateY(50px);
}

.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Responsive adjustments for Gallery and Process */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
        height: 250px;
    }

    .gallery-item:nth-child(5) {
        grid-column: span 1;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 2px;
        height: 50px;
        margin: 0;
    }

    .locations-row {
        flex-wrap: wrap;
        /* Allow wrap on smaller screens */
    }

    .location-item {
        flex: 1 1 40%;
        text-align: center;
        border-left: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    }
}

@media (max-width: 900px) {
    .locations-row {
        flex-wrap: wrap;
    }

    .location-item {
        flex: 1 1 45%;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        grid-column: auto !important;
        grid-row: auto !important;
        height: 250px !important;
    }
}

/* Tablet & Mobile Optimization */
@media (max-width: 768px) {
    .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    /* Navbar & Mobile Menu */
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        height: calc(100vh - 70px);
        background: rgba(2, 13, 24, 0.98);
        flex-direction: column;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding-top: 50px;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger .line {
        width: 25px;
        height: 3px;
        background-color: #fff;
        margin: 5px;
        transition: all 0.3s ease;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        /* Keep 2 cols for stats on tablet */
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Locations */
    .locations-row {
        flex-direction: column;
    }

    .location-item {
        width: 100%;
        border-left: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        /* 1 col for stats on phone */
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-wrapper {
        padding: 25px;
    }
}




/* Footer */
footer {
    background: #020d18;
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

footer p {
    color: #888;
    font-size: 0.9rem;
}