 /* Global Styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --gold: #D4AF37;
    --dark-gold: #B8860B;
    --black: #000000;
    --dark-gray: #111111;
    --light-gray: #222222;
}

body {
    background-color: var(--black);
    color: white;
    overflow-x: hidden;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--gold);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo h1 {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background-color: var(--gold);
    margin: 3px 0;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    text-align: center;
    padding: 0 5%;
    z-index: 1;
}

.hero-text {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.sliding-text {
    position: absolute;
    width: 100%;
    text-align: center;
    transition: transform 0.5s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--gold);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: blanchedalmond;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
    border: 2px solid var(--gold);
}

.btn:hover {
    background-color: transparent;
    color: var(--gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--gold);
    margin-left: 1rem;
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--black);
}

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: var(--dark-gray);
        padding: 2rem 0;
        transition: left 0.3s;
        border-bottom: 1px solid var(--gold);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}
     /* About Section Styles */
     .about-section {
        padding: 8rem 5%;
        background-color: var(--black);
        position: relative;
        overflow: hidden;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-header h2 {
        font-size: 3rem;
        color: var(--gold);
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }

    .section-header h2::after {
        content: '';
        position: absolute;
        width: 50%;
        height: 3px;
        background: var(--gold);
        bottom: -10px;
        left: 25%;
    }

    .section-header p {
        color: #ccc;
        max-width: 700px;
        margin: 0 auto;
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .about-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 4rem;
    }

    .about-text {
        flex: 1;
        min-width: 300px;
    }

    .about-text h3 {
        font-size: 2rem;
        color: var(--gold);
        margin-bottom: 1.5rem;
    }

    .about-text p {
        color: #ccc;
        margin-bottom: 1.5rem;
        line-height: 1.8;
        font-size: 1.1rem;
    }

    .signature {
        margin-top: 2rem;
        display: flex;
        align-items: center;
    }

    .signature img {
        height: 80px;
        margin-right: 20px;
        filter: invert(75%) sepia(40%) saturate(500%) hue-rotate(5deg) brightness(90%) contrast(90%);
    }

    .signature-text h4 {
        color: var(--gold);
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .signature-text p {
        color: #999;
        font-size: 0.9rem;
    }

    .about-image {
        flex: 1;
        min-width: 300px;
        position: relative;
    }

    .main-image {
        width: 100%;
        border-radius: 10px;
        border: 3px solid var(--gold);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    }

    .experience-badge {
        position: absolute;
        bottom: -30px;
        right: -30px;
        background: linear-gradient(135deg, var(--gold), var(--dark-gold));
        color: var(--black);
        width: 150px;
        height: 150px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        z-index: 2;
    }

    .experience-badge span:first-child {
        font-size: 3rem;
        line-height: 1;
    }

    .experience-badge span:last-child {
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        margin-top: 6rem;
    }

    .stat-item {
        text-align: center;
        padding: 2rem;
        background-color: var(--dark-gray);
        border-radius: 10px;
        border-top: 3px solid var(--gold);
        transition: transform 0.3s;
    }

    .stat-item:hover {
        transform: translateY(-10px);
    }

    .stat-number {
        font-size: 3rem;
        color: var(--gold);
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        color: #ccc;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Gold Pattern Overlay */
    .gold-pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%23D4AF37" opacity="0.03" width="50" height="50" x="0" y="0"/><rect fill="%23D4AF37" opacity="0.03" width="50" height="50" x="50" y="50"/></svg>');
        background-size: 50px 50px;
        pointer-events: none;
        z-index: 0;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .about-section {
            padding: 5rem 5%;
        }

        .section-header h2 {
            font-size: 2rem;
        }

        .about-content {
            flex-direction: column;
        }

        .experience-badge {
            width: 120px;
            height: 120px;
            bottom: -20px;
            right: -20px;
        }

        .experience-badge span:first-child {
            font-size: 2rem;
        }

        .stats-grid {
            grid-template-columns: 1fr;
            margin-top: 4rem;
        }

        .stat-item {
            padding: 1.5rem;
        }

        .stat-number {
            font-size: 2rem;
        }
    }
    
        /* Animation Classes */
        .slide-in {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }

        .slide-in.left {
            transform: translateX(-50px);
        }

        .slide-in.right {
            transform: translateX(50px);
        }

        .slide-in.visible {
            opacity: 1;
            transform: translate(0);
        }

        .delay-1 {
            transition-delay: 0.2s;
        }

        .delay-2 {
            transition-delay: 0.4s;
        }

        .delay-3 {
            transition-delay: 0.6s;
        }

        .delay-4 {
            transition-delay: 0.8s;
        }

        /* About Section Adjustments */
        .about-section {
            overflow: hidden;
        }

        .about-content {
            position: relative;
        }

        .experience-badge {
            transition: transform 0.8s ease-out, opacity 0.8s ease-out;
        }

        /* Gold divider */
        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            margin: 6rem auto;
            max-width: 80%;
            opacity: 0.5;
        }

        /* Timeline animation */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 4rem auto 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            width: 2px;
            background-color: var(--gold);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -1px;
        }

        .timeline-item {
            padding: 20px 40px;
            position: relative;
            width: 50%;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }

        .timeline-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-item:nth-child(odd) {
            left: 0;
            text-align: right;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
            text-align: left;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: var(--gold);
            border-radius: 50%;
            top: 30px;
            z-index: 1;
        }

        .timeline-item:nth-child(odd)::after {
            right: -10px;
        }

        .timeline-item:nth-child(even)::after {
            left: -10px;
        }

        .timeline-content {
            padding: 20px;
            background-color: var(--dark-gray);
            border-radius: 8px;
            border-left: 3px solid var(--gold);
        }

        .timeline-item:nth-child(odd) .timeline-content {
            border-left: none;
            border-right: 3px solid var(--gold);
        }

        .timeline-date {
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        @media (max-width: 768px) {
            .timeline::before {
                left: 31px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
                text-align: left !important;
            }

            .timeline-item:nth-child(even) {
                left: 0;
            }

            .timeline-item::after {
                left: 21px !important;
            }
        }
            /* ==== SERVICES SECTION ==== */
            .services-section {
                padding: 8rem 5%;
                background-color: var(--black);
                position: relative;
                overflow: hidden;
            }
    
            .section-header {
                text-align: center;
                margin-bottom: 4rem;
            }
    
            .section-header h2 {
                font-size: 3rem;
                color: var(--gold);
                margin-bottom: 1rem;
                position: relative;
                display: inline-block;
            }
    
            .section-header h2::after {
                content: '';
                position: absolute;
                width: 50%;
                height: 3px;
                background: var(--gold);
                bottom: -10px;
                left: 25%;
            }
    
            .section-header p {
                color: #ccc;
                max-width: 700px;
                margin: 0 auto;
                font-size: 1.1rem;
                line-height: 1.6;
            }
    
           /* Services Section - Black & Gold Theme */
.services-section {
    position: relative;
    padding: 80px 20px;
    background-color: #000;
    color: #fff;
    overflow: hidden;
  }
  
  .gold-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      linear-gradient(135deg, rgba(212,175,55,0.1) 25%, transparent 25%) -50px 0,
      linear-gradient(225deg, rgba(212,175,55,0.1) 25%, transparent 25%) -50px 0,
      linear-gradient(315deg, rgba(212,175,55,0.1) 25%, transparent 25%),
      linear-gradient(45deg, rgba(212,175,55,0.1) 25%, transparent 25%);
    background-size: 100px 100px;
    opacity: 0.3;
    z-index: 1;
  }
  
  .section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #D4AF37; /* Gold color */
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .section-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
  }
  
  .services-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .service-anchor {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
  }
  
  .service-anchor:hover {
    transform: translateY(-10px);
  }
  
  .service-card, 
  .service-card1, 
  .service-card2, 
  .service-card3, 
  .service-card4, 
  .service-card5 {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .service-anchor:hover .service-card,
  .service-anchor:hover .service-card1,
  .service-anchor:hover .service-card2,
  .service-anchor:hover .service-card3,
  .service-anchor:hover .service-card4,
  .service-anchor:hover .service-card5 {
    background: rgba(30, 30, 30, 0.9);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.5);
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .service-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) saturate(100%) invert(78%) sepia(27%) saturate(992%) hue-rotate(358deg) brightness(90%) contrast(89%);
  }
  
  .service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #D4AF37;
    font-weight: 500;
  }
  
  .service-content p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 0;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .section-header h2 {
      font-size: 2rem;
    }
    
    .section-header p {
      font-size: 1rem;
    }
    
    .service-card, 
    .service-card1, 
    .service-card2, 
    .service-card3, 
    .service-card4, 
    .service-card5 {
      padding: 20px;
    }
    
    .service-content h3 {
      font-size: 1.3rem;
    }
  }
  
  @media (max-width: 480px) {
    .services-section {
      padding: 60px 15px;
    }
    
    .services-grid {
      grid-template-columns: 1fr;
    }
    
    .section-header h2 {
      font-size: 1.8rem;
    }
    
    .service-icon {
      width: 50px;
      height: 50px;
    }
    
    .service-icon img {
      width: 25px;
      height: 25px;
    }
  }
            
        /* ==== PORTFOLIO SECTION ==== */
        .portfolio-section {
            padding: 8rem 5%;
            background-color: var(--black);
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: var(--gold);
            bottom: -10px;
            left: 25%;
        }

        .section-header p {
            color: #ccc;
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* ==== MARQUEE CONTAINER ==== */
        .marquee-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        /* ==== MARQUEE ROWS ==== */
        .marquee-row {
            display: flex;
            overflow: hidden;
            position: relative;
            height: 250px;
        }

        .marquee-track {
            display: flex;
            position: absolute;
            will-change: transform;
        }

        /* First row (left to right) */
        .marquee-left {
            animation: scrollLeft 40s linear infinite;
        }

        /* Second row (right to left) */
        .marquee-right {
            animation: scrollRight 40s linear infinite;
        }

        @keyframes scrollLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes scrollRight {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }

        /* ==== PORTFOLIO ITEMS ==== */
        .portfolio-item {
            width: 350px;
            height: 220px;
            margin: 0 15px;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            border: 2px solid var(--gold);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            flex-shrink: 0;
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .portfolio-item:hover img {
            transform: scale(1.1);
        }

        .portfolio-overlay {
            position: absolute;
            bottom: -100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.8);
            transition: bottom 0.3s;
        }

        .portfolio-item:hover .portfolio-overlay {
            bottom: 0;
        }

        .portfolio-overlay h3 {
            color: var(--gold);
            margin-bottom: 0.5rem;
        }

        .portfolio-overlay p {
            color: #ccc;
            font-size: 0.9rem;
        }

        /* ==== GOLD PATTERN OVERLAY ==== */
        .gold-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%23D4AF37" opacity="0.03" width="50" height="50" x="0" y="0"/><rect fill="%23D4AF37" opacity="0.03" width="50" height="50" x="50" y="50"/></svg>');
            background-size: 50px 50px;
            pointer-events: none;
            z-index: 0;
        }

        /* ==== RESPONSIVE ADJUSTMENTS ==== */
        @media (max-width: 1200px) {
            .portfolio-item {
                width: 300px;
                height: 200px;
            }
        }

        @media (max-width: 768px) {
            .portfolio-section {
                padding: 5rem 5%;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .portfolio-item {
                width: 250px;
                height: 180px;
                margin: 0 10px;
            }
            
            .marquee-row {
                height: 200px;
            }
        }

        @media (max-width: 480px) {
            .portfolio-item {
                width: 220px;
                height: 160px;
            }
            
            .marquee-left, .marquee-right {
                animation-duration: 30s;
            }
        }
        /*feedback section*/
                   /* ==== FEEDBACK SECTION ==== */
        .feedback-section {
            padding: 8rem 5%;
            background-color: var(--black);
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: var(--gold);
            bottom: -10px;
            left: 25%;
        }

        .section-header p {
            color: #ccc;
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* ==== FEEDBACK FORM ==== */
        .feedback-form {
            max-width: 800px;
            margin: 0 auto 5rem;
            padding: 2.5rem;
            background-color: var(--dark-gray);
            border-radius: 10px;
            border: 1px solid var(--gold);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--gold);
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            background-color: var(--light-gray);
            border: 1px solid #444;
            border-radius: 5px;
            color: white;
            font-size: 1rem;
            transition: border 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--gold);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .rating-stars {
            display: flex;
            gap: 10px;
            margin-bottom: 1rem;
        }

        .star {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: all 0.2s;
        }

        .star.active, .star:hover {
            color: var(--gold);
        }

        .submit-btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: var(--gold);
            color: var(--black);
            border: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            background-color: var(--dark-gold);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }

        /* ==== FEEDBACK DISPLAY ==== */
        .feedback-display {
            max-width: 1200px;
            margin: 0 auto;
        }

        .feedback-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }

        .feedback-card {
            background-color: var(--dark-gray);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--gold);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease-out;
        }

        .feedback-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .feedback-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .client-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: var(--gold);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .client-info h4 {
            color: var(--gold);
            margin-bottom: 0.2rem;
        }

        .client-rating {
            color: var(--gold);
            font-size: 0.9rem;
        }

        .feedback-content {
            color: #ccc;
            line-height: 1.6;
        }

        .feedback-date {
            color: #666;
            font-size: 0.8rem;
            margin-top: 1rem;
            text-align: right;
        }

        /* ==== GOLD PATTERN OVERLAY ==== */
        .gold-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%23D4AF37" opacity="0.03" width="50" height="50" x="0" y="0"/><rect fill="%23D4AF37" opacity="0.03" width="50" height="50" x="50" y="50"/></svg>');
            background-size: 50px 50px;
            pointer-events: none;
            z-index: 0;
        }

        /* ==== RESPONSIVE ADJUSTMENTS ==== */
        @media (max-width: 768px) {
            .feedback-section {
                padding: 5rem 5%;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .feedback-form {
                padding: 1.5rem;
            }

            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .form-group {
                margin-bottom: 1rem;
            }

            .submit-btn {
                width: 100%;
                padding: 0.8rem;
            }

            .feedback-card {
                padding: 1.5rem;
            }
        }
            /* ==== ENHANCED CONTACT SECTION ==== */
            .contact-section {
                padding: 8rem 5%;
                position: relative;
                background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), 
                            url('https://images.unsplash.com/photo-1511578314322-379afb476865?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
                background-size: cover;
                background-attachment: fixed;
            }
    
            .section-header {
                text-align: center;
                margin-bottom: 4rem;
            }
    
            .section-header h2 {
                font-size: 3.5rem;
                color: var(--gold);
                margin-bottom: 1rem;
                position: relative;
                display: inline-block;
                text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
            }
    
            .section-header h2::after {
                content: '';
                position: absolute;
                width: 50%;
                height: 3px;
                background: var(--gold);
                bottom: -15px;
                left: 25%;
                box-shadow: 0 2px 10px var(--gold);
            }
    
            .section-header p {
                color: #ccc;
                max-width: 700px;
                margin: 2rem auto 0;
                font-size: 1.2rem;
                line-height: 1.6;
            }
    
            /* ==== GLOWING CONTACT CONTAINER ==== */
            .contact-container {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 3rem;
                max-width: 1200px;
                margin: 0 auto;
                position: relative;
                z-index: 2;
            }
    
            /* ==== MODERN CONTACT FORM ==== */
            .contact-form {
                background-color: rgba(17, 17, 17, 0.8);
                padding: 3rem;
                border-radius: 15px;
                border: 1px solid var(--gold);
                box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
                backdrop-filter: blur(10px);
                transition: transform 0.3s;
            }
    
            .contact-form:hover {
                transform: translateY(-5px);
                box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
            }
    
            .form-group {
                margin-bottom: 2rem;
                position: relative;
            }
    
            .form-group label {
                display: block;
                margin-bottom: 0.8rem;
                color: var(--gold);
                font-weight: 500;
                font-size: 1.1rem;
            }
    
            .form-control {
                width: 100%;
                padding: 1rem;
                background-color: rgba(34, 34, 34, 0.7);
                border: 1px solid #444;
                border-radius: 8px;
                color: white;
                font-size: 1rem;
                transition: all 0.3s;
            }
    
            .form-control:focus {
                outline: none;
                border-color: var(--gold);
                box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
            }
    
            textarea.form-control {
                min-height: 180px;
            }
    
            .submit-btn {
                display: inline-block;
                padding: 1rem 2.5rem;
                background: linear-gradient(135deg, var(--gold), var(--dark-gold));
                color: var(--black);
                border: none;
                border-radius: 50px;
                font-weight: 700;
                font-size: 1.1rem;
                cursor: pointer;
                transition: all 0.3s;
                width: 100%;
                letter-spacing: 1px;
                text-transform: uppercase;
                box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
            }
    
            .submit-btn:hover {
                transform: translateY(-3px);
                box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
            }
    
            /* ==== LUXURY CONTACT INFO ==== */
            .contact-info {
                background-color: rgba(17, 17, 17, 0.8);
                padding: 3rem;
                border-radius: 15px;
                border: 1px solid var(--gold);
                box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
                backdrop-filter: blur(10px);
                position: relative;
                overflow: hidden;
            }
    
            .contact-info::before {
                content: '';
                position: absolute;
                top: -50%;
                left: -50%;
                width: 200%;
                height: 200%;
                background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
                z-index: -1;
                animation: rotate 20s linear infinite;
            }
    
            @keyframes rotate {
                0% { transform: rotate(0deg); }
                100% { transform: rotate(360deg); }
            }
    
            .info-item {
                display: flex;
                align-items: flex-start;
                margin-bottom: 2.5rem;
                position: relative;
                z-index: 1;
            }
    
            .info-icon {
                width: 60px;
                height: 60px;
                background-color: rgba(212, 175, 55, 0.1);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-right: 1.5rem;
                flex-shrink: 0;
                border: 1px solid var(--gold);
                box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
            }
    
            .info-icon i {
                color: var(--gold);
                font-size: 1.5rem;
            }
    
            .info-content h3 {
                color: var(--gold);
                margin-bottom: 0.8rem;
                font-size: 1.3rem;
                text-shadow: 0 2px 5px rgba(212, 175, 55, 0.3);
            }
    
            .info-content p, .info-content a {
                color: #ccc;
                line-height: 1.8;
                text-decoration: none;
                transition: all 0.3s;
                font-size: 1.1rem;
            }
    
            .info-content a:hover {
                color: var(--gold);
                text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
            }
    
            /* ==== PREMIUM SOCIAL MEDIA ==== */
            .social-links {
                display: flex;
                gap: 1.5rem;
                margin-top: 3rem;
                justify-content: center;
            }
    
            .social-link {
                width: 50px;
                height: 50px;
                border-radius: 50%;
                background: rgba(34, 34, 34, 0.7);
                display: flex;
                align-items: center;
                justify-content: center;
                border: 1px solid var(--gold);
                transition: all 0.3s;
                position: relative;
                overflow: hidden;
                box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            }
    
            .social-link::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
                transition: 0.5s;
            }
    
            .social-link:hover::before {
                left: 100%;
            }
    
            .social-link i {
                color: var(--gold);
                font-size: 1.3rem;
                transition: all 0.3s;
                z-index: 1;
            }
    
            .social-link:hover {
                transform: translateY(-5px) scale(1.1);
                box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
            }
    
            .social-link:hover i {
                color: white;
                text-shadow: 0 0 10px var(--gold);
            }
    
            /* Specific social media colors on hover */
            .social-link.facebook:hover { background: #3b5998; border-color: #3b5998; }
            .social-link.instagram:hover { background: #e4405f; border-color: #e4405f; }
            .social-link.twitter:hover { background: #075E54; border-color: #075E54; }
    
            /* ==== FORM STATUS MESSAGES ==== */
            .form-status {
                padding: 1.2rem;
                margin: 1.5rem 0;
                border-radius: 8px;
                text-align: center;
                display: none;
                font-weight: 500;
                animation: fadeIn 0.5s ease-out;
            }
    
            @keyframes fadeIn {
                from { opacity: 0; transform: translateY(20px); }
                to { opacity: 1; transform: translateY(0); }
            }
    
            .form-status.success {
                background-color: rgba(46, 125, 50, 0.2);
                border: 1px solid rgba(46, 125, 50, 0.5);
                color: #a5d6a7;
                display: block;
            }
    
            .form-status.error {
                background-color: rgba(211, 47, 47, 0.2);
                border: 1px solid rgba(211, 47, 47, 0.5);
                color: #ef9a9a;
                display: block;
            }
    
            /* ==== RESPONSIVE ADJUSTMENTS ==== */
            @media (max-width: 992px) {
                .contact-section {
                    padding: 6rem 5%;
                    background-attachment: scroll;
                }
                
                .section-header h2 {
                    font-size: 2.8rem;
                }
            }
    
            @media (max-width: 768px) {
                .contact-container {
                    grid-template-columns: 1fr;
                }
                
                .contact-form, .contact-info {
                    padding: 2rem;
                }
                
                .section-header h2 {
                    font-size: 2.5rem;
                }
                
                .info-item {
                    flex-direction: column;
                    align-items: center;
                    text-align: center;
                }
                
                .info-icon {
                    margin-right: 0;
                    margin-bottom: 1.5rem;
                }
            }
    
            @media (max-width: 480px) {
                .contact-section {
                    padding: 4rem 5%;
                }
                
                .section-header h2 {
                    font-size: 2.2rem;
                }
                
                .contact-form, .contact-info {
                    padding: 1.5rem;
                }
                
                .social-links {
                    gap: 1rem;
                }
                
                .social-link {
                    width: 45px;
                    height: 45px;
                }
            }
            .luxury-footer {
                background-color: #000;
                color: #fff;
                padding: 60px 0 30px;
                position: relative;
                border-top: 1px solid rgba(212, 175, 55, 0.2);
                font-family: 'Playfair Display', serif;
            }
    
            .footer-pattern {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: 
                    linear-gradient(135deg, rgba(212,175,55,0.05) 25%, transparent 25%) -50px 0,
                    linear-gradient(225deg, rgba(212,175,55,0.05) 25%, transparent 25%) -50px 0,
                    linear-gradient(315deg, rgba(212,175,55,0.05) 25%, transparent 25%),
                    linear-gradient(45deg, rgba(212,175,55,0.05) 25%, transparent 25%);
                background-size: 100px 100px;
                opacity: 0.5;
                z-index: 1;
            }
    
            .footer-content {
                position: relative;
                z-index: 2;
                max-width: 1200px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 40px;
                padding: 0 20px;
            }
    
            .footer-column h3 {
                color: #D4AF37;
                font-size: 1.5rem;
                margin-bottom: 25px;
                font-weight: 400;
                position: relative;
                padding-bottom: 10px;
            }
    
            .footer-column h3::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 50px;
                height: 1px;
                background: #D4AF37;
            }
    
            .footer-column p {
                color: rgba(255,255,255,0.7);
                line-height: 1.6;
                margin-bottom: 20px;
            }
    
            .footer-links {
                list-style: none;
            }
    
            .footer-links li {
                margin-bottom: 12px;
            }
    
            .footer-links a {
                color: rgba(255,255,255,0.7);
                text-decoration: none;
                transition: all 0.3s ease;
                display: inline-block;
                position: relative;
            }
    
            .footer-links a:hover {
                color: #D4AF37;
                transform: translateX(5px);
            }
    
            .footer-links a::before {
                content: '';
                position: absolute;
                bottom: -2px;
                left: 0;
                width: 0;
                height: 1px;
                background: #D4AF37;
                transition: width 0.3s ease;
            }
    
            .footer-links a:hover::before {
                width: 100%;
            }
    
            .social-links {
                display: flex;
                gap: 15px;
                margin-top: 20px;
            }
    
            .social-links a {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                border: 1px solid rgba(212, 175, 55, 0.3);
                color: #D4AF37;
                transition: all 0.3s ease;
            }
    
            .social-links a:hover {
                background: rgba(212, 175, 55, 0.1);
                transform: translateY(-3px);
                border-color: #D4AF37;
            }
    
            .newsletter-form {
                margin-top: 20px;
            }
    
            .newsletter-form input {
                width: 100%;
                padding: 12px 15px;
                background: rgba(255,255,255,0.1);
                border: 1px solid rgba(212, 175, 55, 0.3);
                color: #fff;
                margin-bottom: 15px;
                transition: all 0.3s ease;
            }
    
            .newsletter-form input:focus {
                outline: none;
                border-color: #D4AF37;
                background: rgba(255,255,255,0.15);
            }
    
            .newsletter-form button {
                background: #D4AF37;
                color: #000;
                border: none;
                padding: 12px 25px;
                cursor: pointer;
                font-weight: 600;
                transition: all 0.3s ease;
            }
    
            .newsletter-form button:hover {
                background: #e8c252;
                transform: translateY(-2px);
            }
    
            .footer-bottom {
                position: relative;
                z-index: 2;
                text-align: center;
                margin-top: 60px;
                padding-top: 30px;
                border-top: 1px solid rgba(212, 175, 55, 0.1);
            }
    
            .footer-bottom p {
                color: rgba(255,255,255,0.5);
                font-size: 0.9rem;
            }
    
            .footer-logo {
                max-width: 150px;
                margin-bottom: 20px;
                filter: brightness(0) invert(78%) sepia(27%) saturate(992%) hue-rotate(358deg) brightness(90%) contrast(89%);
            }
    
            /* Responsive Adjustments */
            @media (max-width: 768px) {
                .footer-content {
                    grid-template-columns: 1fr;
                    gap: 30px;
                }
                
                .footer-column h3 {
                    font-size: 1.3rem;
                    margin-bottom: 15px;
                }
            }