:root {
    --bg-color: #ffffff;
    --section-bg: #f8f9fa;
    --card-bg: #ffffff;
    --text-color: #232b83;
    --primary: #ffc107;
    --primary-dark: #e6ac00;
    --shadow: rgba(255, 193, 7, .25);
}
html { scroll-behavior: smooth; overflow-x: hidden; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 20px; }
#progress {
    position: fixed;
    top: 0; left: 0;
    width: 0; height: 4px;
    background: var(--primary);
    z-index: 9999;
    transition: width .1s;
}

.hero { position: relative; height: 100vh; overflow: hidden; }
.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(1.35) contrast(1.08) saturate(1.2);
}
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .28);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}
.hero-tag {
    color: #ffc107;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 193, 7, .5);
    padding: 8px 20px;
    border-radius: 50px;
    animation: tagFloat 3s ease-in-out infinite;
    text-shadow: 0 2px 10px rgba(0,0,0,.6);
}
@keyframes tagFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.hero-content h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 2px 20px rgba(0,0,0,.7), 0 4px 40px rgba(0,0,0,.4);
}
.hero-highlight {
    color: var(--primary);
    position: relative;
}
.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 100%; height: 4px;
    background: var(--primary);
    border-radius: 4px;
    animation: underlineGrow 1.2s ease 1s both;
}
@keyframes underlineGrow {
    from { width: 0; }
    to   { width: 100%; }
}
.hero-description {
    max-width: 800px;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255,255,255,.95);
    text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-btn {
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: .4s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.primary-btn { background: #ffc107; color: black; }
.primary-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px #ffc107;
    color: black;
}
.secondary-btn { border: 2px solid #ffc107; color: #ffc107; }
.secondary-btn:hover {
    background: #ffc107;
    color: black;
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(255,193,7,.5);
}
.scroll-down {
    position: absolute;
    bottom: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    animation: bounce 2s infinite;
}
.scroll-down span {
    display: block;
    width: 20px; height: 20px;
    border-right: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
    transform: rotate(45deg);
    opacity: .8;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(10px); }
}
.stats-section { background: #f8f9fa; padding: 120px 0; }
.achievement-title { text-align: center; margin-bottom: 50px; }
.achievement-title span {
    color: #ffc107;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.achievement-title h2 {
    color: #222;
    font-size: 3rem;
    font-weight: 800;
    margin-top: 15px;
}
.stats-wrapper {
    background: white;
    border: 2px solid #ffc107;
    border-radius: 25px;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(255, 193, 7, .15);
}
.stat-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}
.stat-box { padding: 25px; transition: .4s; }
.stat-box h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffc107;
    margin-bottom: 5px;
    display: inline-block;
}
.stat-box sup {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffc107;
    vertical-align: super;
}
.stat-box p { color: #555; font-size: 1.05rem; margin: 0; }
.stat-box:hover {
    transform: translateY(-10px);
    background: #fffdf5;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 193, 7, .25);
}
.stat-box:not(:last-child) { border-right: 1px solid #e5e5e5; }
.section-title span {
    color: #ffc107;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-top: 12px;
}
.section-title p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 650px;
    margin: 15px auto 0;
}
.section-title::after {
    content: '';
    display: block;
    width: 70px; height: 4px;
    background: var(--primary);
    margin: 18px auto 0;
    border-radius: 20px;
    transition: width .5s;
}
.section-title.text-start::after { margin-left: 0; }
.section-title:hover::after { width: 140px; }
.events-section { padding: 120px 0; background: white; }
.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    height: 100%;
}
.event-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 0 30px rgba(255, 193, 7, .35);
}
.event-card img { width: 100%; height: 230px; object-fit: cover; transition: .5s; }
.event-card:hover img { transform: scale(1.06); }
.event-content { padding: 25px; }
.event-content h3 { margin-bottom: 15px; font-weight: 700; font-size: 1.1rem; }
.details-btn {
    background: #ffc107;
    color: black;
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    font-size: .95rem;
}
.details-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px var(--shadow);
}
.event-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    margin-top: 0;
}
.event-details.show { max-height: 250px; overflow-y:auto; }
.event-details p { color: #555; line-height: 1.8; font-size: .95rem; }
.event-details.show::-webkit-scrollbar{
    width:8px;
}
.event-details.show::-webkit-scrollbar-thumb{
    background:#f4b400;
    border-radius:20px;
}
.process-section {
    background: #f8f9fa;
    padding: 120px 0;
}
.process-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
    height: 100%;
}
.process-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 4px;
    background: var(
        mary);
    transition: width .5s;
}
.process-card:hover::before { width: 100%; }
.process-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px var(--shadow);
}
.process-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 193, 7, .15);
    position: absolute;
    top: 15px; right: 20px;
    line-height: 1;
}
.process-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: rgba(255, 193, 7, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-dark);
    transition: .4s;
}
.process-card:hover .process-icon {
    background: var(--primary);
    color: black;
    transform: scale(1.1) rotate(10deg);
}
.process-card h4 { font-weight: 700; font-size: 1.2rem; margin-bottom: 12px; }
.process-card p  { color: #666; line-height: 1.8; font-size: .95rem; }
.why-us-section {
    background: white;
    padding: 120px 0;
}
.why-us-image-grid {
    position: relative;
    height: 480px;
}
.why-img-main {
    width: 75%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}
.why-img-small {
    width: 45%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    position: absolute;
    bottom: 0; right: 0;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}
.why-badge {
    position: absolute;
    top: 30px; left: -20px;
    background: var(--primary);
    color: black;
    border-radius: 15px;
    padding: 18px 22px;
    text-align: center;
    box-shadow: 0 10px 25px var(--shadow);
    animation: tagFloat 3s ease-in-out infinite;
}
.badge-number { display: block; font-size: 2.2rem; font-weight: 800; line-height: 1; }
.badge-text   { display: block; font-size: .75rem; font-weight: 700; letter-spacing: 1px; }
.why-desc { color: #555; line-height: 1.9; font-size: 1rem; margin: 20px 0 30px; }
.why-list { display: flex; flex-direction: column; gap: 18px; }
.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 12px;
    transition: .3s;
}
.why-item:hover { background: #fffdf5; box-shadow: 0 5px 15px var(--shadow); }
.why-icon {
    width: 42px; height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    font-weight: 700;
    margin-top: 2px;
}
.why-item h5 { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.why-item p  { color: #666; font-size: .9rem; margin: 0; }
.portfolio-section { background: var(--section-bg); padding: 120px 0; }
.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    cursor: pointer;
    transition: .6s;
    box-shadow: 0 0 20px var(--shadow);
}
.portfolio-card img {
    width: 100%; height: 350px;
    object-fit: cover;
    transition: .8s;
    filter: brightness(.95) contrast(1.05) saturate(1.1);
    display: block;
}
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .88));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}
.portfolio-overlay h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    transform: translateY(8px);
    transition: .4s;
}
.portfolio-overlay p {
    color: var(--primary);
    letter-spacing: 1px;
    font-weight: 600;
    font-size: .85rem;
    transform: translateY(8px);
    transition: .4s .05s;
}
.portfolio-card:hover .portfolio-overlay h3,
.portfolio-card:hover .portfolio-overlay p { transform: translateY(0); }
.portfolio-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 0 30px var(--primary), 0 0 55px var(--shadow);
}
.portfolio-card:hover img { transform: scale(1.12); }
.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 5px;
    background: var(--primary);
    transform: scaleX(0);
    transition: .5s;
    z-index: 10;
}
.portfolio-card:hover::before { transform: scaleX(1); }
.testimonials-section {
    background: white;
    padding: 120px 0;
}
.testimonial-card,
.luxury-review-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 35px;
    height: 50%;
    position: relative;
    overflow: hidden;
    transition: .4s;
    border: 1px solid #eee;
}
.testimonial-card::before {
    height: 50%;
    position: absolute;
    top: -10px; right: 25px;
    font-size: 8rem;
    color: rgba(255, 193, 7, .12);
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px var(--shadow);
    border-color: var(--primary);
}
.featured-review {
    background: #ffc107;
    border-color: #ffc107;
}
.featured-review .review-text,
.featured-review .stars i,
.featured-review h5,
.featured-review span { color: #111 !important; }
.featured-review::before { color: rgba(0,0,0,.1); }
.stars { margin-bottom: 18px; }
.stars i { color: #ffc107; font-size: 1.1rem; }
.featured-review .stars i { color: #111; }
.review-text { color: #444; line-height: 1.85; font-size: .98rem; margin-bottom: 25px; }
.reviewer { display: flex; gap: 15px; align-items: center; }
.reviewer img {
    width: 55px; height: 25px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}
.featured-review .reviewer img { border-color: #111; }
.reviewer h5 { font-weight: 700; font-size: 1rem; margin: 0; }
.reviewer span { font-size: .85rem; color: #888; }
.team-section { background: var(--bg-color); color: var(--text-color); padding: 120px 0; }
.team-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    transition: .5s;
}
.team-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px var(--shadow);
}
.team-card img { width: 100%; height: 500px; object-fit: cover; transition: .6s; }
.team-card:hover img { transform: scale(1.08); }
.team-info { padding: 25px; text-align: center; }
.team-info h4 { color: var(--text-color); font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.team-info > p  { color: var(--primary); font-weight: 600; letter-spacing: 1px; font-size: .9rem; }
.team-social { display: flex; justify-content: center; gap: 12px; margin-top: 14px; }
.team-social a {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: #f4f4f4;
    color: #333;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem;
    text-decoration: none;
    transition: .3s;
}
.team-social a:hover { background: var(--primary); color: black; transform: scale(1.15); }
.team-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: .5s;
}


.team-card:hover::before { transform: scaleX(1); }
.member-modal{
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(0,0,0,0.25);
    z-index: 9999;
    padding: 20px;
}
.member-modal.active{
    display: flex;
}
.member-modal-content{
    width: 500px;
    max-width: 95%;
    max-height: 80vh;
    background: #fff;
    color: #222;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow-y: auto;
    animation: popup .3s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
}
@keyframes popup{
    from{
        transform: scale(.8);
        opacity: 0;
    }
    to{
        transform: scale(1);
        opacity: 1;
    }
}
.member-modal-content img{
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f4b400;
    margin-bottom: 15px;
}
.member-modal-content h3{
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.member-modal-content h5{
    color: #f4b400;
    margin-bottom: 15px;
}
.member-modal-content p{
    margin-bottom: 10px;
    line-height: 1.6;
}
.close-modal{
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: .3s;
}
.close-modal:hover{
    color: #f4b400;
    transform: rotate(90deg);
}
#modalAchievements{
    text-align: left;
    margin-top: 15px;
    padding-left: 20px;
}
#modalAchievements li{
    margin-bottom: 8px;
    line-height: 1.5;
}
.modal-social{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}
.modal-social a{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f4f4f4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: .3s;
}
.modal-social a:hover{
    background: #f4b400;
    color: #000;
    transform: translateY(-4px);
}
.member-modal-content{
    scrollbar-width: none;
}
.member-modal-content::-webkit-scrollbar{
    display: none;
    width:4px;
}
.clients-section {
    background: #f8f9fa;
    padding: 80px 0;
    overflow: hidden;
}
.clients-track-wrapper {
    overflow: hidden;
    margin-top: 50px;
    position: relative;
}
.clients-track-wrapper::before,
.clients-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 100px;
    z-index: 2;
}
.clients-track-wrapper::before { left: 0; background: linear-gradient(to right, #f8f9fa, transparent); }
.clients-track-wrapper::after  { right: 0; background: linear-gradient(to left, #f8f9fa, transparent); }
.clients-track {
    display: flex;
    gap: 30px;
    animation: scrollBrands 20s linear infinite;
    width: max-content;
}
@keyframes scrollBrands {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.client-logo {
    background: white;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 20px 40px;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: #999;
    white-space: nowrap;
    transition: .3s;
    cursor: default;
}
.client-logo:hover {
    border-color: var(--primary);
    color: #111;
    box-shadow: 0 5px 15px var(--shadow);
    transform: translateY(-3px);
}

 .review-form{
    max-width:700px;
    margin:auto;
}

.review-form input,
.review-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border-radius:12px;
    border:1px solid #ddd;
}

.rating-box{
    margin-bottom:15px;
}

.star{
    font-size:32px;
    cursor:pointer;
    color:#ccc;
}

.star.active{
    color:#f4b400;
}

.review-card{
    background:#fff;
    border-radius:25px;
    padding:35px;
    height:100%;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.review-card:hover{
    transform:translateY(-8px);
}

.review-stars{
    color:#f4b400;
    font-size:22px;
    margin-bottom:15px;
}

.review-text{
    line-height:1.9;
    margin-bottom:20px;
}

.reviewer{
    display:flex;
    align-items:center;
    gap:15px;
}

.reviewer img{
    width:55px;
    height:55px;
    border-radius:50%;
}

.review-location{
    color:#888;
    font-size:.9rem;
}
.btn-gold{
    color:#050505;
    background:#f4b400;
    height:50px;
    width:150px;
    border-radius:10px;
}
.cta-section {
    background:
        linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)),
        url("https://images.unsplash.com/photo-1511578314322-379afb476865?w=1600");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 150px 0;
}
.cta-section h2 { font-size: clamp(2rem, 5vw, 4rem); font-weight: 800; color: white; margin-bottom: 20px; }
.cta-section p  { max-width: 700px; margin: auto; color: #f1f1f1; font-size: 1.1rem; line-height: 1.8; }
.cta-btn {
    display: inline-block;
    margin-top: 35px;
    padding: 16px 45px;
    border-radius: 50px;
    background: var(--primary);
    color: black;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: .5s;
}
.cta-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 0 30px var(--primary);
    color: black;
}


/* ===================================
   LARGE TABLETS (992px and below)
=================================== */
@media (max-width: 992px){

    .hero-content h1{
        font-size: 3.5rem !important;
        line-height: 1.2;
    }

    .hero-description{
        width: 90%;
        font-size: 1rem;
    }

    .hero-buttons{
        gap: 15px;
    }

    .team-card img{
        height: 350px;
    }

    .member-modal-content{
        width: 90%;
    }

}

/* ===================================
   TABLETS (768px and below)
=================================== */
@media (max-width: 768px){

    .hero{
        min-height: 100vh;
    }

    .hero-content{
        padding: 120px 20px 80px;
    }

    .hero-content h1{
        font-size: 2.8rem !important;
    }

    .hero-description{
        width: 100%;
        font-size: .95rem;
    }

    .hero-buttons{
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-btn{
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .company-name{
        font-size: 1rem;
    }

    .section-title h2,
    .achievement-title h2{
        font-size: 2rem;
    }

    .team-card img{
        height: 300px;
    }

    .review-form-container{
        padding: 20px;
    }

    .review-card{
        padding: 20px;
    }

    .member-modal-content{
        padding: 20px;
    }

    .member-modal-content img{
        width: 100px;
        height: 100px;
    }
}

/* ===================================
   MOBILE (576px and below)
=================================== */
@media (max-width: 576px){

    .nav-logo{
        height: 40px;
    }

    .company-name{
        font-size: .85rem;
    }

    .hero-content h1{
        font-size: 2rem !important;
    }

    .hero-tag{
        font-size: .75rem;
    }

    .hero-description{
        font-size: .9rem;
        line-height: 1.6;
    }

    .hero-btn{
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: .9rem;
    }

    .section-title h2,
    .achievement-title h2{
        font-size: 1.7rem;
    }

    .section-title p{
        font-size: .9rem;
    }

    .team-card img{
        height: 250px;
    }

    .team-info{
        padding: 18px;
    }

    .team-social a{
        width: 42px;
        height: 42px;
    }

    .review-form-container{
        padding: 15px;
    }

    .review-form-container input,
    .review-form-container textarea{
        padding: 12px;
    }

    .star{
        font-size: 24px;
    }

    .member-modal-content{
        width: 95%;
        padding: 15px;
    }

    .member-modal-content h3{
        font-size: 1.2rem;
    }

    .member-modal-content h5{
        font-size: .95rem;
    }

    .modal-social{
        flex-wrap: wrap;
    }

    .modal-social a{
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

}

/* ===================================
   VERY SMALL DEVICES (400px and below)
=================================== */
@media (max-width: 400px){

    .hero-content h1{
        font-size: 1.7rem !important;
    }

    .hero-description{
        font-size: .85rem;
    }

    .hero-btn{
        max-width: 240px;
        font-size: .85rem;
    }

    .team-card img{
        height: 220px;
    }

    .member-modal-content{
        max-height: 75vh;
    }
}

/* Success Popup */

.review-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:.3s ease;

    z-index:99999;
}

.review-popup.show{
    opacity:1;
    visibility:visible;
}

.review-popup-content{

    width:380px;

    background:#fff;

    border-radius:20px;

    text-align:center;

    padding:40px 30px;

    transform:scale(.8);

    transition:.3s ease;
}

.review-popup.show .review-popup-content{

    transform:scale(1);

}

.review-popup-content i{

    font-size:70px;

    color:#28a745;

    margin-bottom:20px;

}

.review-popup-content h2{

    font-weight:700;

    margin-bottom:15px;

}

.review-popup-content p{

    color:#666;

    margin-bottom:25px;

}

.review-popup-content button{

    background:#f4b400;

    border:none;

    color:#000;

    padding:12px 35px;

    border-radius:40px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.review-popup-content button:hover{

    background:#d89f00;

}


/* ================================
   Luxury Review Section
================================ */

:root {
  --gold: #ffc107;
  --gold-dark: #d9a000;
  --deep-blue: #20268a;
  --text-dark: #1e1e1e;
  --text-muted: #777777;
  --cream: #fffaf0;
  --white: #ffffff;
  --soft-border: rgba(32, 38, 138, 0.1);
  --shadow-soft: 0 24px 70px rgba(31, 31, 31, 0.08);
  --shadow-hover: 0 28px 90px rgba(31, 31, 31, 0.14);
}

.luxury-review-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 193, 7, 0.13), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(32, 38, 138, 0.09), transparent 28%),
    linear-gradient(135deg, #fffaf0 0%, #ffffff 48%, #fff6dc 100%);
}

.luxury-review-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(255, 193, 7, 0.05) 1px, transparent 1px),
    linear-gradient(60deg, rgba(32, 38, 138, 0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.45;
  pointer-events: none;
}

.review-bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(5px);
  opacity: 0.28;
  pointer-events: none;
}

.orb-one {
  width: 240px;
  height: 240px;
  left: -80px;
  top: 140px;
  background: rgba(255, 193, 7, 0.45);
}

.orb-two {
  width: 320px;
  height: 320px;
  right: -110px;
  bottom: 40px;
  background: rgba(32, 38, 138, 0.16);
}

.review-section-header {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.review-section-header h2 {
  color: var(--deep-blue);
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 20px;
}

.review-section-header p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

/* ================================
   Sticky Form Panel
================================ */

.review-form-panel {
  position: sticky;
  top: 35px;
  z-index: 3;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.luxury-review-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 9px;
  color: var(--deep-blue);
  font-size: 15px;
  font-weight: 800;
}

.luxury-input {
  min-height: 62px;
  border: 1px solid rgba(32, 38, 138, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text-dark);
  font-size: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 28px rgba(31, 31, 31, 0.04);
  transition: all 0.3s ease;
}

.luxury-input::placeholder {
  color: #999999;
}

.luxury-input:focus {
  border-color: var(--gold);
  background: #ffffff;
  box-shadow:
    0 0 0 5px rgba(255, 193, 7, 0.16),
    0 16px 35px rgba(31, 31, 31, 0.08);
  transform: translateY(-2px);
}

.luxury-textarea {
  min-height: 170px;
  resize: vertical;
}

/* ================================
   Star Rating Input
================================ */

.rating-input {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 6px;
  padding: 8px 4px;
}

.rating-input input {
  display: none;
}

.rating-input label {
  margin: 0;
  color: #d8d8d8;
  font-size: 35px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.22s ease;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
  color: var(--gold);
  transform: scale(1.08);
}

/* ================================
   Submit Button
================================ */

.luxury-submit-btn {
  width: fit-content;
  min-width: 210px;
  min-height: 62px;
  border: 2px solid #141414;
  border-radius: 22px;
  background: linear-gradient(135deg, #ffd659, var(--gold));
  color: #111111;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.2px;
  padding: 16px 26px;
  box-shadow: 0 14px 30px rgba(255, 193, 7, 0.28);
  transition: all 0.3s ease;
}

.luxury-submit-btn span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.luxury-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(255, 193, 7, 0.36);
}

.luxury-submit-btn:hover span {
  transform: translateX(5px);
}

/* ================================
   Testimonial Wall
================================ */

.testimonial-wall {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  height: 760px;
  overflow: hidden;
  padding: 8px 4px;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

.testimonial-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation-name: testimonialScrollUp;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

.scroll-slow {
  animation-duration: 38s;
}

.scroll-fast {
  animation-duration: 29s;
}

.testimonial-wall:hover .testimonial-column {
  animation-play-state: paused;
}

@keyframes testimonialScrollUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

/* ================================
   Review Card
================================ */

.luxury-review-card {
  position: relative;
  overflow: hidden;
  height: 50%;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.82);
  transition: all 0.35s ease;
}

.luxury-review-card::before {
  content: "“";
  position: absolute;
  right: 26px;
  top: 10px;
  color: rgba(255, 193, 7, 0.16);
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 1;
  pointer-events: none;
}

.luxury-review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.review-rating-display {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 23px;
  letter-spacing: 2px;
}

.review-card-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.review-avatar {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd84d, var(--gold));
  color: #111111;
  font-size: 22px;
  font-weight: 900;
  border: 3px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 12px 28px rgba(255, 193, 7, 0.35),
    inset 0 0 0 1px rgba(20, 20, 20, 0.12);
}

.review-person h4 {
  margin: 0 0 3px;
  color: var(--deep-blue);
  font-size: 20px;
  font-weight: 900;
}

.review-person span {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

.review-message {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #3f3f3f;
  font-size: 16px;
  line-height: 1.75;
}

/* ================================
   Success Popup
================================ */

.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(19, 18, 15, 0.38);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.success-overlay.active {
  opacity: 1;
  visibility: visible;
}

.success-modal {
  position: relative;
  width: min(100%, 520px);
  padding: 46px 36px 38px;
  border-radius: 34px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 240, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.2);
  transform: scale(0.86) translateY(18px);
  opacity: 0;
  transition: all 0.35s ease;
}

.success-overlay.active .success-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.success-close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #222222;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
}

.success-close-btn:hover {
  background: var(--gold);
  transform: rotate(90deg);
}

.success-icon {
  width: 104px;
  height: 104px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe28a, var(--gold));
  box-shadow:
    0 18px 45px rgba(255, 193, 7, 0.38),
    inset 0 0 0 4px rgba(255, 255, 255, 0.55);
  animation: iconPop 0.55s ease both;
}

.success-icon span {
  color: #111111;
  font-size: 54px;
  font-weight: 900;
}

@keyframes iconPop {
  0% {
    transform: scale(0.45);
    opacity: 0;
  }

  70% {
    transform: scale(1.12);
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}

.success-modal h3 {
  color: var(--deep-blue);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  margin-bottom: 14px;
}

.success-modal p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.submitted-rating {
  color: var(--gold);
  font-size: 25px;
  letter-spacing: 4px;
  margin-bottom: 26px;
}

.success-continue-btn {
  min-width: 170px;
  min-height: 54px;
  border: 0;
  border-radius: 18px;
  background: var(--deep-blue);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(32, 38, 138, 0.25);
  transition: all 0.28s ease;
}

.success-continue-btn:hover {
  background: #151a72;
  transform: translateY(-3px);
}

/* ================================
   Responsive Design
================================ */

@media (max-width: 991px) {
  .luxury-review-section {
    padding: 70px 0;
  }

  .review-form-panel {
    position: relative;
    top: auto;
  }

  .testimonial-wall {
    height: 680px;
  }
}

@media (max-width: 767px) {
  .review-section-header {
    margin-bottom: 42px;
  }

  .section-eyebrow {
    letter-spacing: 5px;
  }

  .review-form-panel {
    padding: 24px;
    border-radius: 28px;
  }

  .testimonial-wall {
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: visible;
    mask-image: none;
  }

  .testimonial-column {
    animation: none;
  }

  .testimonial-column:nth-child(2) {
    display: none;
  }

  .luxury-review-card {
    padding: 24px;
    border-radius: 26px;
  }

  .review-avatar {
    width: 56px;
    height: 56px;
    font-size: 19px;
  }

  .luxury-submit-btn {
    width: 100%;
  }

  .success-modal {
    padding: 42px 24px 30px;
    border-radius: 28px;
  }
}

.luxury-review-card {
    height: auto;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.testimonial-column {
    align-items: stretch;
}

.testimonial-column .luxury-review-card {
    width: 100%;
}