/* ===============================
   ROOT VARIABLES
================================ */
:root {
    --primary-color: #1f3c88;
    --text-color: #222222;
    --bg-color: #ffffff;

    --font-main: Arial, Helvetica, sans-serif;
}

/* ===============================
   CSS RESET
================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===============================
   HTML & BODY
================================ */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.5;
    overflow-x: hidden;
}

/* ======================================= HOME HEADER START ========================================================== */
/* ========== LUX HEADER START ========== */

/* ========== CLASSIC LUXURY HEADER CSS ========== */

.lux-header {
    background: #000000;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(201, 162, 77, 0.2); /* Faint gold bottom edge */
}

.lux-inner {
    max-width: 95%; /* Spreads closer to the edges as requested */
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO - Large and Clear */
.lux-logo img {
    height: 80px; 
    display: block;
}

/* NAV */
.lux-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.lux-nav a,
.lux-dropdown .drop-trigger {
    color: #ffffff;
    font-family: 'Georgia', serif; /* Classic Serif Font */
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.lux-nav a:hover,
.lux-dropdown:hover .drop-trigger {
    color: #c9a24d; /* Elite Gold */
}

/* DROPDOWN DESIGN - IMPROVED */
.lux-dropdown {
    position: relative;
    padding: 20px 0; /* Creates a hover bridge so menu doesn't disappear */
}

.lux-dropdown-menu {
    position: absolute;
    top: 100%; /* Sits exactly below the trigger */
    right: 0;  /* Aligns to the right edge of the text */
    background: #0a0a0a;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #c9a24d; /* Classic Gold Border */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    padding: 10px 0;
}

.lux-dropdown-menu a {
    padding: 12px 25px;
    display: block;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: #ffffff;
    border-bottom: 1px solid rgba(201, 162, 77, 0.1); /* Subtle divider */
    transition: background 0.3s ease;
}

.lux-dropdown-menu a:last-child {
    border-bottom: none;
}

.lux-dropdown-menu a:hover {
    background: #c9a24d;
    color: #000; /* Inverts color on hover for high contrast */
}

.lux-dropdown:hover .lux-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* MOBILE TOGGLE */
.lux-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.lux-bar {
    width: 25px;
    height: 2px;
    background-color: #c9a24d;
    transition: 0.4s;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .lux-nav {
        position: fixed;
        right: -100%;
        top: 0;
        width: 280px;
        height: 100vh;
        background: #000;
        flex-direction: column;
        padding-top: 100px;
        gap: 30px;
        transition: 0.4s ease;
        border-left: 1px solid #c9a24d;
    }

    .lux-nav.active { right: 0; }
    .lux-toggle { display: flex; z-index: 1000; }

    .lux-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        text-align: center;
    }

    .lux-dropdown.active .lux-dropdown-menu { display: block; }
}

/* ========== LUX HEADER END ========== */
/* ======================================= HOME HEADER END ========================================================== */

/* ======================================= HOME SLIDER START ========================================================== */
/* ========== HERO SLIDER START ========== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DARK OVERLAY */
.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* CENTER TEXT (FIXED) */
.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 0 20px;
}

.slide-content h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
    animation: textFade 1s ease;
}

.slide-content p {
    font-size: 18px;
    opacity: 0.9;
    animation: textFade 1.2s ease;
}

/* DOTS */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background: #c9a24d;
}

/* ANIMATION */
@keyframes textFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
    }

    .slide-content h2 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 16px;
    }
}

/* ========== HERO SLIDER END ========== */
/* ======================================= HOME SLIDER END ========================================================== */


/* ======================================= HOME ABOUT START ========================================================== */
/* ========== WHO WE ARE SECTION START ========== */

/* ========= ELITE ABOUT SECTION ========= */

.elite-about-section {
    background-color: #ffffff;
    padding: 30px 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.elite-about-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 80px;
}

/* TITLE STYLING */
.about-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #000000;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-gold-divider {
    width: 60px;
    height: 4px;
    background: #c9a24d;
    margin-bottom: 45px;
}

/* CONTENT STYLING */
.about-content {
    width: 100%;
}

.about-p-highlight {
    font-size: 19px;
    line-height: 1.8;
    color: #000000;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: justify; /* Justified text */
}

.about-p-normal {
    font-size: 16px;
    line-height: 1.9;
    color: #333333;
    margin-bottom: 28px;
    text-align: justify; /* Justified text */
}

/* ===== ANIMATION (LEFT → RIGHT) ===== */
.animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-out;
}

.animate-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .elite-about-container {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .elite-about-section {
        padding: 30px 0;
    }

    .elite-about-container {
        padding: 0 30px;
    }

    .about-title {
        font-size: 26px;
    }

    .about-p-highlight {
        font-size: 17px;
        text-align: left; /* Better flow on mobile */
    }

    .about-p-normal {
        font-size: 15px;
        text-align: left; /* Better flow on mobile */
    }
}

@media (max-width: 480px) {
    .elite-about-container {
        padding: 0 20px;
    }

    .about-title {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .about-gold-divider {
        margin-bottom: 30px;
    }
}

/* ========== WHO WE ARE SECTION END ========== */

/* ======================================= HOME ABOUT END ========================================================== */

/* ======================================= HOME PROJECT SLIDER START ========================================================== */
/* ========= ELITE FEATURED SECTION ========= */

.elite-featured-section {
    background: #000000;
    padding: 30px 0;
    overflow: hidden;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

/* HEADER */
.featured-header {
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
}

.featured-header .sub-title {
    color: #c9a24d;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.featured-header h2 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 600;
    margin: 0;
}

.gold-divider {
    width: 50px;
    height: 2px;
    background: #c9a24d;
    margin: 20px auto;
}

/* SLIDER */
.elite-slider-wrapper {
    width: 100%;
    overflow: hidden;
    /* Soft edges effect */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.elite-slider-track {
    display: flex;
    width: max-content;
    animation: elite-slide 35s linear infinite;
}

.elite-slider-wrapper:hover .elite-slider-track {
    animation-play-state: paused;
}

/* CARD */
.elite-card {
    width: 340px;
    background: #111111;
    margin-left: 25px;
    flex-shrink: 0;
    border: 1px solid #222;
    transition: all 0.4s ease;
}

.elite-card:hover {
    border-color: #c9a24d;
    transform: translateY(-8px);
}

/* IMAGE */
.elite-image {
    height: 240px;
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
}

.elite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.elite-card:hover .elite-image img {
    transform: scale(1.1);
}

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #c9a24d;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    padding: 6px 12px;
}

/* BODY */
.elite-body {
    padding: 25px;
}

.elite-type {
    display: block;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    color: #c9a24d;
    margin-bottom: 8px;
}

.elite-body h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 500;
}

.elite-location {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.elite-info {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #222;
}

/* CARD BUTTON */
.elite-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border: 1px solid #c9a24d;
    color: #c9a24d;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.elite-btn:hover {
    background: #c9a24d;
    color: #000;
}

/* SECTION BUTTON */
.elite-section-btn {
    text-align: center;
    margin-top: 60px;
}

.elite-section-btn a {
    padding: 16px 40px;
    border: 1px solid #c9a24d;
    color: #c9a24d;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    transition: 0.3s ease;
}

.elite-section-btn a:hover {
    background: #c9a24d;
    color: #000;
}

/* ANIMATION MATH: (Width 340 + Margin 25) × 4 = 1460px */
@keyframes elite-slide {
    from { transform: translateX(0); }
    to { transform: translateX(-1460px); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .elite-card {
        width: 280px;
        margin-left: 15px;
    }

    .featured-header h2 {
        font-size: 28px;
    }

    /* MATH: (Width 280 + Margin 15) × 4 = 1180px */
    @keyframes elite-slide {
        from { transform: translateX(0); }
        to { transform: translateX(-1180px); }
    }
}

/* ======================================= HOME PROJECT SLIDER END ========================================================== */


/* ======================================= HOME PROJECT LOGOS START ========================================================== */
/* ========= PROJECTS SECTION ========= */
.projects-section {
  position: relative;
  padding: 30px 10px; /* Standard desktop padding */
  height: auto;
  min-height: 600px; /* Fixed minimum height for desktop only */
  background-image: url('../images/img.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  background: rgba(255, 255, 255, 0.88);
  z-index: 1;
}

.projects-heading {
  position: relative;
  z-index: 2;
  color: #c9a24d;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  font-weight: 700;
}

.rhombus-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.rhombus-row {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap; /* Forces desktop view on all devices */
  width: 100%;
  margin-top: -55px; /* Overlap math */
}

.rhombus-row:first-of-type {
  margin-top: 0;
}

.rhombus {
  width: 110px;
  height: 110px;
  background: #ffffff;
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0; /* Prevents squishing on mobile */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.rhombus img {
  width: 60%;
  height: auto;
  object-fit: contain;
}

.rhombus:hover {
  transform: scale(1.1);
  z-index: 10;
}

/* --- TABLET & MOBILE FIX (REMOVING GAPS) --- */

@media (max-width: 1024px) {
  .projects-section {
    min-height: auto; /* Removes large top/bottom gap */
    padding: 80px 10px;
  }
  .rhombus {
    width: 95px;
    height: 95px;
  }
  .rhombus-row {
    margin-top: -48px;
  }
}

@media (max-width: 768px) {
  .projects-section {
    min-height: auto; /* Removes large top/bottom gap */
    padding: 60px 10px;
  }
  .rhombus {
    width: 75px;
    height: 75px;
    margin: 3px;
  }
  .rhombus-row {
    margin-top: -38px;
  }
  .projects-heading {
    margin-bottom: 40px;
  }
  /* Keeps the grid scrollable if it exceeds screen width without breaking shape */
  .rhombus-grid {
    overflow-x: auto;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
  }
  .rhombus-grid::-webkit-scrollbar {
    display: none; /* Hides scrollbar for clean look */
  }
}

@media (max-width: 480px) {
  .projects-section {
    padding: 50px 5px;
  }
  .rhombus {
    width: 58px;
    height: 58px;
    margin: 2px;
  }
  .rhombus-row {
    margin-top: -30px;
  }
}
/* ======================================= HOME PROJECT LOGOS END ========================================================== */


/* ======================================= HOME TESTMONIALS START ========================================================== */
/* ========= ELITE TESTIMONIALS SECTION ========= */

.elite-testimonials-section {
    background: #000000;
    padding: 30px 0;
    overflow: hidden;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

/* HEADER */
.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-subtitle {
    color: #c9a24d;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.testimonials-header h2 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 600;
    margin: 0;
}

.testimonials-gold-line {
    width: 50px;
    height: 3px;
    background: #c9a24d;
    margin: 20px auto 0;
}

/* SLIDER WRAPPER */
.testimonials-wrapper {
    width: 100%;
    overflow: hidden;
    /* Soft edges to fade cards in/out */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.testimonials-track {
    display: flex;
    width: max-content;
    animation: elite-slide-right 35s linear infinite;
}

.testimonials-wrapper:hover .testimonials-track {
    animation-play-state: paused;
}

/* CARD DESIGN */
.testimonial-card {
    width: 340px;
    background: #111111;
    margin-left: 30px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #222;
    color: #ffffff;
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    border-color: #c9a24d;
    transform: translateY(-10px);
}

.quote-icon {
    font-family: 'Georgia', serif;
    font-size: 60px;
    color: #c9a24d;
    height: 30px;
    line-height: 1;
    opacity: 0.5;
    margin-bottom: 10px;
}

/* IMAGE */
.testimonial-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
    border: 3px solid #c9a24d;
    padding: 3px;
    background: #000;
}

/* TYPOGRAPHY */
.testimonial-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.place {
    font-size: 13px;
    color: #c9a24d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.stars {
    color: #c9a24d;
    font-size: 16px;
    margin: 15px 0;
}

.feedback {
    font-size: 15px;
    line-height: 1.8;
    color: #cccccc;
    text-align: center;
    font-style: italic;
}

/* ANIMATION MATH: (Width 340 + Margin 30) × 4 cards = 1480px */
@keyframes elite-slide-right {
    from {
        transform: translateX(-1480px);
    }
    to {
        transform: translateX(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .testimonial-card {
        width: 290px;
        margin-left: 20px;
        padding: 30px 20px;
    }

    .testimonials-header h2 {
        font-size: 28px;
    }

    /* MATH: (Width 290 + Margin 20) × 4 = 1240px */
    @keyframes elite-slide-right {
        from {
            transform: translateX(-1240px);
        }
        to {
            transform: translateX(0);
        }
    }
}

/* ======================================= HOME TESTMONIALS END ========================================================== */

/* ======================================= HOME FAQ's START ========================================================== */
/* ========= ELITE FAQ SECTION ========= */

.elite-faq-section {
    background-color: #ffffff;
    padding: 30px 0;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

/* HEADER */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.faq-subtitle {
    color: #c9a24d;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.faq-header h2 {
    color: #000;
    font-size: 38px;
    font-weight: 600;
    margin: 0;
}

.faq-gold-divider {
    width: 50px;
    height: 3px;
    background: #c9a24d;
    margin: 20px auto;
}

.faq-header p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* CONTAINER */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

/* FAQ ITEM (ACCORDION BOX) */
.faq-item {
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #c9a24d;
}

.faq-item[open] {
    border-color: #c9a24d;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* SUMMARY / QUESTION */
.faq-item summary {
    padding: 22px 30px;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    outline: none;
    transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

/* PLUS / MINUS ICON */
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: #c9a24d;
    font-size: 24px;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item[open] summary {
    color: #c9a24d;
    border-bottom: 1px solid #f9f9f9;
}

.faq-item[open] summary::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

/* CONTENT / ANSWER */
.faq-content {
    padding: 20px 30px 30px 30px;
    animation: fadeIn 0.4s ease-out;
}

.faq-content p {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

/* ANIMATION */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .elite-faq-section {
        padding: 30px 0;
    }

    .faq-header h2 {
        font-size: 28px;
    }

    .faq-item summary {
        font-size: 16px;
        padding: 18px 20px;
    }
    
    .faq-item summary::after {
        right: 20px;
    }

    .faq-content {
        padding: 15px 20px 25px 20px;
    }

    .faq-content p {
        font-size: 14px;
        text-align: left;
    }
}

/* ======================================= HOME FAQ's END ========================================================== */

/* ======================================= FOOTER START ========================================================== */
/* ========= ELITE FOOTER ========= */

.elite-footer {
    background: #000000;
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, sans-serif;
    padding-top: 60px;
}

/* TOP FOOTER */
.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* FOOTER BOX */
.footer-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

/* ICON */
.footer-icon {
    font-size: 22px;
    color: #c9a24d;
    margin-top: 4px;
    flex-shrink: 0;
}

/* CONTENT */
.footer-content h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 600;
}

.footer-content a {
    color: #cccccc;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    line-height: 1.6;
    font-size: 15px;
    transition: 0.3s ease;
}

.footer-content a:hover {
    color: #c9a24d;
}

/* SOCIAL */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    transition: 0.3s ease;
    margin-bottom: 0;
}

.footer-social a:hover {
    background: #c9a24d;
    color: #000;
    border-color: #c9a24d;
}

/* DIVIDER */
.footer-divider {
    border-top: 1px solid #222222;
    max-width: 1200px;
    margin: 0 auto;
}

/* BOTTOM FOOTER */
.footer-bottom {
    text-align: center;
    padding: 25px 20px;
    font-size: 14px;
    color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom strong {
    color: #fff;
}

/* DESIGNER LOGO (ORIGINAL) */
.designer-link {
    display: inline-flex;
    align-items: center;
}

.designer-link img {
    height: 22px; /* Set height for professional display */
    width: auto;
    display: block;
    /* No filters added - shows original colors */
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 40px;
    }

    .footer-box {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-social {
        justify-content: center;
    }
}

/* ======================================= FOOTER END ========================================================== */
