/*==============================
  GOOGLE FONTS
==============================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

/*==============================
  RESET
==============================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b0b0b;
    color:#fff;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:#fff;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*==============================
  COLORS
==============================*/
:root{
    --gold:#d4af37;
    --gold-light:#f4d87d;
    --black:#0b0b0b;
    --dark:#111;
    --white:#fff;
    --gray:#bdbdbd;
}

/*==============================
  HEADER
==============================*/
header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(0,0,0,.45);
    backdrop-filter:blur(15px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.nav-container{
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:2rem;
    font-weight:700;
    font-family:'Playfair Display',serif;
}

.logo span{
    color:var(--gold);
}

.nav-links{
    display:flex;
    gap:35px;
}

.nav-links a{
    position:relative;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--gold);
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--gold);
    transition:.3s;
}

.nav-links a:hover::after{
    width:100%;
}

/*==============================
  BUTTONS
==============================*/
.book-btn,
.btn{
    padding:14px 30px;
    border-radius:40px;
    transition:.4s;
    display:inline-block;
    font-weight:600;
}

.book-btn{
    background:var(--gold);
    color:#000;
}

.book-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(212,175,55,.4);
}

.gold{
    background:var(--gold);
    color:#000;
}

.gold:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(212,175,55,.45);
}

.transparent{
    border:2px solid var(--gold);
    margin-left:15px;
}

.transparent:hover{
    background:var(--gold);
    color:#000;
}

/*==============================
  MENU BUTTON
==============================*/
.menu-btn{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/*==============================
  HERO
==============================*/
.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
    url("https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1600&q=80");
    background-size:cover;
    background-position:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right,#000 20%,transparent);
}

.hero-content{
    position:relative;
    display:grid;
    grid-template-columns:1fr 400px;
    gap:60px;
    align-items:center;
}

.hero-left h4{
    color:var(--gold);
    letter-spacing:3px;
    margin-bottom:20px;
}

.hero-left h1{
    font-size:65px;
    line-height:1.1;
    font-family:'Playfair Display',serif;
}

.hero-left p{
    color:var(--gray);
    margin:30px 0;
    line-height:1.8;
    max-width:550px;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
}

/*==============================
  GLASS CARD
==============================*/
.glass-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(20px);
    padding:40px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,.4);
}

.glass-card h3{
    color:var(--gold);
    margin-bottom:10px;
}

.glass-card h2{
    font-size:55px;
    margin-bottom:15px;
}

.glass-card p{
    color:#ddd;
    margin-bottom:25px;
}

.glass-card a{
    display:inline-block;
    background:var(--gold);
    color:#000;
    padding:12px 28px;
    border-radius:30px;
    font-weight:600;
}

.glass-card a:hover{
    transform:translateY(-3px);
}

/*==============================
  SCROLL INDICATOR
==============================*/
.scroll-down{
    position:absolute;
    bottom:35px;
    left:50%;
    transform:translateX(-50%);
}

.scroll-down span{
    display:block;
    width:25px;
    height:45px;
    border:2px solid var(--gold);
    border-radius:30px;
    position:relative;
}

.scroll-down span::before{
    content:"";
    width:6px;
    height:6px;
    background:var(--gold);
    border-radius:50%;
    position:absolute;
    left:50%;
    top:8px;
    transform:translateX(-50%);
    animation:scroll 2s infinite;
}

@keyframes scroll{
    0%{
        opacity:1;
        top:8px;
    }
    100%{
        opacity:0;
        top:28px;
    }
}

/*==============================
  RESPONSIVE
==============================*/
@media(max-width:991px){

.hero-content{
    grid-template-columns:1fr;
    text-align:center;
}

.hero-left p{
    margin:auto;
    margin-top:20px;
    margin-bottom:30px;
}

.hero-buttons{
    justify-content:center;
}

.hero-left h1{
    font-size:50px;
}

.nav-links{
    display:none;
}

.book-btn{
    display:none;
}

.menu-btn{
    display:block;
}

}

@media(max-width:768px){

.hero-left h1{
    font-size:40px;
}

.glass-card{
    padding:30px;
}

.hero{
    padding:120px 0 60px;
}

}

@media(max-width:480px){

.hero-left h1{
    font-size:32px;
}

.hero-left p{
    font-size:15px;
}

.btn{
    width:100%;
    margin:10px 0;
    text-align:center;
}

.transparent{
    margin-left:0;
}

.logo{
    font-size:1.6rem;
}

}
/*  ---------------- haeder responsiv ----------*/
/* Header */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(15px);
    z-index:999;
}

.nav-container{
    max-width:1200px;
    margin:auto;
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 20px;
}

.logo{
    color:#fff;
    font-size:35px;
    font-family:"Playfair Display",serif;
    font-weight:700;
    text-decoration:none;
}

.logo span{
    color:#d4af37;
}

/* Desktop */

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-size:17px;
    transition:.3s;
}

.nav-links a:hover{
    color:#d4af37;
}

.menu-toggle{
    display:none;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}

/* Mobile */

@media(max-width:991px){

.menu-toggle{
    display:block;
}

.navbar{

    position:fixed;

    top:80px;

    right:-100%;

    width:280px;

    height:calc(100vh - 80px);

    background:#111;

    transition:.4s;

    padding:40px 20px;

}

.navbar.active{

    right:0;

}

.nav-links{

    flex-direction:column;

    gap:30px;

}

.nav-links a{

    font-size:20px;

}

}
/* Gallery -----*/


/*=========================
    GALLERY SECTION
==========================*/

.gallery{
    padding:100px 0;
    background:#0b0b0b;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#d4af37;
    font-size:15px;
    letter-spacing:3px;
    font-weight:600;
    text-transform:uppercase;
}

.section-title h2{
    font-size:48px;
    margin:15px 0;
    font-family:"Playfair Display",serif;
    color:#fff;
}

.section-title p{
    color:#bdbdbd;
    max-width:650px;
    margin:auto;
    line-height:1.8;
}

/* Gallery Grid */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* Gallery Card */

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
    background:#111;
    box-shadow:0 15px 35px rgba(0,0,0,.4);
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.6s;
    display:block;
}

/* Overlay */

.gallery-item::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.8),
    rgba(0,0,0,.2));
    opacity:0;
    transition:.4s;
    z-index:1;
}

/* Icon */

.gallery-item::after{
    content:"+";
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:65px;
    height:65px;
    background:#d4af37;
    color:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    font-weight:bold;
    opacity:0;
    transition:.4s;
    z-index:2;
}

/* Hover */

.gallery-item:hover img{
    transform:scale(1.12);
}

.gallery-item:hover::before{
    opacity:1;
}

.gallery-item:hover::after{
    opacity:1;
}

/*=========================
      RESPONSIVE
==========================*/

@media(max-width:992px){

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

.gallery-item img{
    height:280px;
}

}

@media(max-width:768px){

.gallery{
    padding:80px 0;
}

.section-title h2{
    font-size:34px;
}

.gallery-grid{
    gap:18px;
}

.gallery-item img{
    height:240px;
}

}

@media(max-width:576px){

.gallery-grid{
    grid-template-columns:1fr;
}

.gallery-item img{
    height:260px;
}

.section-title h2{
    font-size:28px;
}

.section-title p{
    font-size:15px;
}

}

/*====================================
        TEAM SECTION
====================================*/

.team{
    padding:100px 0;
    background:#111;
}

.team .section-title{
    text-align:center;
    margin-bottom:60px;
}

.team .section-title span{
    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}

.team .section-title h2{
    font-size:48px;
    margin:15px 0;
    color:#fff;
    font-family:'Playfair Display',serif;
}

.team .section-title p{
    max-width:650px;
    margin:auto;
    color:#bbb;
    line-height:1.8;
}

/*=========================
    TEAM GRID
=========================*/

.team-container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*=========================
    TEAM CARD
=========================*/

.team-card{

    background:#181818;

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

    position:relative;

    box-shadow:0 10px 30px rgba(0,0,0,.35);

}

.team-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(212,175,55,.25);

}

/*=========================
      IMAGE
=========================*/

.team-img{

    overflow:hidden;

}

.team-img img{

    width:100%;

    height:360px;

    object-fit:cover;

    transition:.6s;

}

.team-card:hover .team-img img{

    transform:scale(1.1);

}

/*=========================
      CONTENT
=========================*/

.team-info{

    padding:25px;

    text-align:center;

}

.team-info h3{

    color:#fff;

    margin-bottom:10px;

    font-size:24px;

}

.team-info span{

    color:#d4af37;

    font-size:15px;

    display:block;

    margin-bottom:20px;

}

/*=========================
      SOCIAL
=========================*/

.team-social{

    display:flex;

    justify-content:center;

    gap:12px;

}

.team-social a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#222;

    color:#fff;

    transition:.4s;

    font-size:16px;

}

.team-social a:hover{

    background:#d4af37;

    color:#000;

    transform:translateY(-5px);

}

/*=========================
   GOLD TOP BORDER
=========================*/

.team-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:#d4af37;

    transform:scaleX(0);

    transition:.4s;

}

.team-card:hover::before{

    transform:scaleX(1);

}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:1200px){

.team-container{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.team{

padding:80px 0;

}

.team .section-title h2{

font-size:36px;

}

.team-container{

grid-template-columns:1fr;

gap:25px;

}

.team-img img{

height:320px;

}

}

@media(max-width:480px){

.team{

padding:70px 0;

}

.team .section-title h2{

font-size:28px;

}

.team .section-title p{

font-size:15px;

}

.team-info h3{

font-size:22px;

}

.team-img img{

height:280px;

}

.team-social a{

width:40px;

height:40px;

}

}
/*=====================================
        PRICING SECTION
=====================================*/

/*==========================================
      LUXURY PRICING SECTION
==========================================*/

.luxury-pricing{
    position:relative;
    padding:120px 0;
    background:
    radial-gradient(circle at top right,#3a2d08 0%,transparent 35%),
    radial-gradient(circle at bottom left,#1c1c1c 0%,transparent 40%),
    #090909;
    overflow:hidden;
}

.luxury-pricing::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(212,175,55,.08);
    filter:blur(140px);
    top:-200px;
    right:-150px;
    border-radius:50%;
}

.luxury-pricing::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(255,255,255,.04);
    filter:blur(150px);
    bottom:-200px;
    left:-120px;
    border-radius:50%;
}

/*==============================
      HEADING
==============================*/

.pricing-heading{
    text-align:center;
    margin-bottom:70px;
    position:relative;
    z-index:2;
}

.pricing-heading span{
    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:14px;
    font-weight:600;
}

.pricing-heading h2{
    font-size:52px;
    margin:20px 0;
    color:#fff;
    font-family:"Playfair Display",serif;
}

.pricing-heading p{
    color:#bdbdbd;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/*==============================
      GRID
==============================*/

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    position:relative;
    z-index:2;
}

/*==============================
      GLASS CARD
==============================*/

.price-card{

    position:relative;

    overflow:hidden;

    padding:45px 35px;

    border-radius:30px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.12);

    box-shadow:

    0 15px 35px rgba(0,0,0,.45),

    inset 0 1px 1px rgba(255,255,255,.08);

    transition:.5s;

}

/*==============================
      GLASS CIRCLE
==============================*/

.glass-circle{

    position:absolute;

    width:180px;

    height:180px;

    background:rgba(212,175,55,.08);

    border-radius:50%;

    top:-70px;

    right:-60px;

    filter:blur(5px);

}

/*==============================
      PLAN
==============================*/

.plan-name{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:25px;

}

.plan-name i{

    width:55px;

    height:55px;

    background:#d4af37;

    color:#000;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    font-size:22px;

}

.plan-name h3{

    color:#fff;

    font-size:28px;

}

/*==============================
      PRICE
==============================*/

.price{

    color:#d4af37;

    font-size:65px;

    font-weight:bold;

    font-family:"Playfair Display",serif;

    margin-bottom:8px;

}

.price sup{

    font-size:28px;

}

.duration{

    color:#bdbdbd;

    display:block;

    margin-bottom:30px;

}

/*==============================
      LIST
==============================*/

.price-card ul{

    list-style:none;

}

.price-card ul li{

    color:#ddd;

    margin:18px 0;

    font-size:16px;

}

.price-card ul li i{

    color:#d4af37;

    margin-right:10px;

}

/*==============================
      RIBBON
==============================*/

.ribbon{

    position:absolute;

    top:22px;

    right:-48px;

    width:180px;

    text-align:center;

    background:linear-gradient(135deg,#d4af37,#f7dc8d);

    color:#000;

    font-size:13px;

    font-weight:700;

    padding:8px 0;

    transform:rotate(45deg);

    letter-spacing:1px;

    box-shadow:0 10px 20px rgba(0,0,0,.35);

}

/*==============================
     FEATURED CARD
==============================*/

.featured{

    border:2px solid #d4af37;

    transform:scale(1.05);

}

/*==============================
      RESPONSIVE
==============================*/

@media(max-width:992px){

.pricing-grid{

grid-template-columns:repeat(2,1fr);

}

.featured{

transform:none;

}

}

@media(max-width:768px){

.pricing-heading h2{

font-size:38px;

}

.pricing-grid{

grid-template-columns:1fr;

}

.price-card{

padding:35px 25px;

}

}

@media(max-width:480px){

.luxury-pricing{

padding:80px 0;

}

.pricing-heading h2{

font-size:30px;

}

.price{

font-size:50px;

}

.ribbon{

width:160px;
right:-45px;

}

}
/*==========================================
    PREMIUM HOVER EFFECT
==========================================*/

.price-card{
    cursor:pointer;
}

.price-card:hover{
    transform:translateY(-18px) scale(1.03);
    border-color:#d4af37;
    box-shadow:
        0 20px 60px rgba(0,0,0,.65),
        0 0 40px rgba(212,175,55,.25);
}

/*==========================================
    GLASS REFLECTION
==========================================*/

.price-card::before{
    content:"";
    position:absolute;
    top:-120%;
    left:-50%;
    width:60%;
    height:250%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );
    transform:rotate(25deg);
    transition:1.2s;
}

.price-card:hover::before{
    left:150%;
}

/*==========================================
    GOLD BORDER ANIMATION
==========================================*/

.price-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:30px;
    padding:2px;
    background:linear-gradient(
        90deg,
        transparent,
        #d4af37,
        transparent
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
            mask-composite:exclude;

    opacity:0;
    transition:.5s;
}

.price-card:hover::after{
    opacity:1;
}

/*==========================================
    FLOATING GLOW
==========================================*/

.price-card .glass-circle{

    animation:floatGlow 6s ease-in-out infinite;

}

@keyframes floatGlow{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(20px);

}

}

/*==========================================
    ICON HOVER
==========================================*/

.plan-name i{

transition:.5s;

}

.price-card:hover .plan-name i{

transform:rotate(360deg) scale(1.1);

box-shadow:

0 0 25px rgba(212,175,55,.6);

}

/*==========================================
    PRICE ANIMATION
==========================================*/

.price{

transition:.5s;

}

.price-card:hover .price{

transform:scale(1.08);

text-shadow:

0 0 20px rgba(212,175,55,.5);

}

/*==========================================
    LIST HOVER
==========================================*/

.price-card ul li{

transition:.4s;

}

.price-card:hover ul li{

padding-left:8px;

color:#fff;

}

/*==========================================
    BUTTON
==========================================*/

.luxury-btn{

position:relative;

display:inline-block;

padding:16px 42px;

margin-top:35px;

border-radius:50px;

overflow:hidden;

background:linear-gradient(
135deg,
#d4af37,
#f7dc8d
);

color:#000;

font-weight:700;

letter-spacing:.5px;

transition:.45s;

box-shadow:

0 10px 30px rgba(212,175,55,.35);

}

/* Shine Effect */

.luxury-btn::before{

content:"";

position:absolute;

top:0;

left:-100%;

width:60%;

height:100%;

background:linear-gradient(

90deg,

transparent,

rgba(255,255,255,.9),

transparent

);

transform:skewX(-25deg);

transition:.8s;

}

.luxury-btn:hover::before{

left:180%;

}

.luxury-btn:hover{

transform:translateY(-5px);

box-shadow:

0 18px 40px rgba(212,175,55,.55);

}

/*==========================================
    FEATURED CARD
==========================================*/

.featured{

animation:pulseGold 3s infinite;

}

@keyframes pulseGold{

0%{

box-shadow:

0 0 0 rgba(212,175,55,.2);

}

50%{

box-shadow:

0 0 35px rgba(212,175,55,.45);

}

100%{

box-shadow:

0 0 0 rgba(212,175,55,.2);

}

}

/*==========================================
    PARTICLES
==========================================*/

.price-card span::before{

content:"";

position:absolute;

width:6px;

height:6px;

background:#d4af37;

border-radius:50%;

opacity:.4;

animation:particle 5s linear infinite;

}

@keyframes particle{

0%{

transform:translateY(0);

opacity:0;

}

30%{

opacity:1;

}

100%{

transform:translateY(-80px);

opacity:0;

}

}
/*=============================
      TESTIMONIAL SECTION
==============================*/

/*==================================
    TESTIMONIAL SECTION
==================================*/

.testimonials{
    padding:100px 0;
    background:#090909;
    position:relative;
    overflow:hidden;
}

.testimonials::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(212,175,55,.08);
    border-radius:50%;
    filter:blur(140px);
    top:-180px;
    right:-120px;
}

.testimonials::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(255,255,255,.04);
    border-radius:50%;
    filter:blur(150px);
    bottom:-180px;
    left:-120px;
}

/*=========================
    GRID
=========================*/

.testimonial-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    position:relative;
    z-index:2;
}

/*=========================
    CARD
=========================*/

.testimonial-card{
    position:relative;
    overflow:hidden;

    background:rgba(255,255,255,.05);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.12);
    border-radius:25px;

    padding:35px;

    transition:.5s ease;

    box-shadow:
    0 15px 35px rgba(0,0,0,.45),
    inset 0 1px 1px rgba(255,255,255,.08);
}

/* Hover */

.testimonial-card:hover{

    transform:
    perspective(1000px)
    rotateX(5deg)
    rotateY(-5deg)
    translateY(-15px);

    border-color:#d4af37;

    box-shadow:
    0 20px 50px rgba(0,0,0,.65),
    0 0 35px rgba(212,175,55,.35);

}

/*=========================
   GOLD BORDER
=========================*/

.testimonial-card::before{

content:"";

position:absolute;

left:-100%;

top:0;

width:100%;

height:3px;

background:linear-gradient(
90deg,
transparent,
#d4af37,
transparent);

transition:.8s;

}

.testimonial-card:hover::before{

left:100%;

}

/*=========================
    QUOTE
=========================*/

.quote{

width:60px;

height:60px;

background:#d4af37;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:24px;

color:#000;

margin-bottom:25px;

transition:.4s;

}

.testimonial-card:hover .quote{

transform:rotate(360deg);

}

/*=========================
      STARS
=========================*/

.stars{

margin-bottom:20px;

}

.stars i{

color:#d4af37;

font-size:18px;

margin-right:4px;

animation:starGlow 2s infinite alternate;

}

@keyframes starGlow{

from{

opacity:.7;

}

to{

opacity:1;

text-shadow:

0 0 12px #d4af37;

}

}

/*=========================
    TEXT
=========================*/

.testimonial-card p{

color:#ddd;

line-height:1.9;

margin-bottom:30px;

}

/*=========================
    CLIENT
=========================*/

.client{

display:flex;

align-items:center;

gap:15px;

}

.client img{

width:70px;

height:70px;

border-radius:50%;

object-fit:cover;

border:3px solid #d4af37;

}

.client h4{

color:#fff;

margin-bottom:5px;

}

.client span{

color:#fdcf00;

font-size:14px;

}

/*=========================
    FEATURED CARD
=========================*/

.featured{

border:2px solid #d4af37;

transform:scale(1.05);

}

.badge{

position:absolute;

top:20px;

right:-45px;

background:linear-gradient(135deg,#d4af37,#f4d87d);

padding:8px 45px;

transform:rotate(45deg);

font-size:12px;

font-weight:700;

color:#000;

}

/*=========================
    RESPONSIVE
=========================*/

@media(max-width:992px){

.testimonial-container{

grid-template-columns:repeat(2,1fr);

}

.featured{

transform:none;

}

}

@media(max-width:768px){

.testimonials{

padding:80px 0;

}

.testimonial-container{

grid-template-columns:1fr;

}

.testimonial-card{

padding:30px;

}

}

@media(max-width:480px){

.testimonials{

padding:70px 0;

}

.client{

flex-direction:column;

text-align:center;

}

.client img{

width:65px;

height:65px;

}

}
/*==============================
      GOLD GLOW HOVER
==============================*/

.testimonial-card{
    position: relative;
    transition: all .5s ease;
    border:1px solid rgba(255,255,255,.08);
}

.testimonial-card:hover{

    transform: translateY(-12px);

    border:1px solid #d4af37;

    box-shadow:
        0 0 15px rgba(212,175,55,.25),
        0 0 30px rgba(212,175,55,.35),
        0 0 60px rgba(212,175,55,.20),
        0 20px 50px rgba(0,0,0,.60);

}
.testimonial-card::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:25px;

    padding:2px;

    background:linear-gradient(
        135deg,
        transparent,
        #d4af37,
        #fff3b0,
        #d4af37,
        transparent
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
            mask-composite:exclude;

    opacity:0;

    transition:.5s;

}

.testimonial-card:hover::before{

    opacity:1;

}
.testimonial-card::after{

    content:"";

    position:absolute;

    top:-120%;

    left:-50%;

    width:60%;

    height:250%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transform:rotate(25deg);

    transition:1s;

}

.testimonial-card:hover::after{

    left:150%;

}
.quote{

    transition:.5s;

}

.testimonial-card:hover .quote{

    background:#d4af37;

    color:#000;

    box-shadow:
        0 0 15px #d4af37,
        0 0 30px rgba(212,175,55,.6);

}
.testimonial-card:hover .stars i{

    color:#ffd700;

    text-shadow:
        0 0 8px #ffd700,
        0 0 18px #d4af37,
        0 0 28px #d4af37;

}
/*======================================
        BOOKING SECTION
======================================*/

.booking{
    padding:120px 0;
    background:#080808;
    position:relative;
    overflow:hidden;
}

/* Background Glow */

.booking::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(212,175,55,.08);
    border-radius:50%;
    filter:blur(150px);
    top:-180px;
    right:-120px;
}

.booking::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    filter:blur(160px);
    bottom:-180px;
    left:-100px;
}

/*======================================
        FORM WRAPPER
======================================*/

.booking-wrapper{
    max-width:850px;
    margin:auto;
    position:relative;
    z-index:2;
}

.booking-form{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:25px;

    padding:45px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.5),
    inset 0 1px 1px rgba(255,255,255,.08);

}

/*======================================
        INPUTS
======================================*/

.booking-form input,
.booking-form select,
.booking-form textarea{

    width:100%;

    padding:18px 20px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:14px;

    color:#fff;

    font-size:15px;

    outline:none;

    transition:.4s;

}

/* Placeholder */

.booking-form input::placeholder,
.booking-form textarea::placeholder{

color:#999;

}

/*======================================
        GOLD FOCUS
======================================*/

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus{

border-color:#d4af37;

box-shadow:
0 0 10px rgba(212,175,55,.35),
0 0 25px rgba(212,175,55,.15);

background:rgba(255,255,255,.08);

}

/*======================================
        TEXTAREA
======================================*/

.booking-form textarea{

grid-column:1/3;

resize:none;

min-height:160px;

}

/*======================================
        BUTTON
======================================*/

.booking-form .luxury-btn{

grid-column:1/3;

padding:18px;

border:none;

border-radius:50px;

background:linear-gradient(
135deg,
#d4af37,
#f6dc8d);

color:#000;

font-size:17px;

font-weight:700;

cursor:pointer;

transition:.4s;

box-shadow:
0 12px 30px rgba(212,175,55,.30);

}

/* Hover */

.booking-form .luxury-btn:hover{

transform:translateY(-5px);

box-shadow:
0 18px 40px rgba(212,175,55,.45);

}

/*======================================
        INPUT HOVER
======================================*/

.booking-form input:hover,
.booking-form select:hover,
.booking-form textarea:hover{

border-color:#d4af37;

}

/*======================================
        RESPONSIVE
======================================*/

@media(max-width:992px){

.booking-form{

grid-template-columns:1fr;

}

.booking-form textarea,
.booking-form .luxury-btn{

grid-column:auto;

}

}

@media(max-width:768px){

.booking{

padding:80px 0;

}

.booking-form{

padding:30px;

gap:18px;

}

}

@media(max-width:480px){

.booking-form{

padding:20px;

border-radius:18px;

}

.booking-form input,
.booking-form select,
.booking-form textarea{

padding:15px;

font-size:14px;

}

.booking-form .luxury-btn{

padding:15px;

font-size:15px;

}

}
/*======================================
        CONTACT SECTION
======================================*/

.contact{
    padding:120px 0;
    background:#0b0b0b;
    position:relative;
    overflow:hidden;
}

/* Background Glow */

.contact::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(212,175,55,.08);
    border-radius:50%;
    filter:blur(150px);
    top:-180px;
    left:-150px;
}

.contact::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(255,255,255,.04);
    border-radius:50%;
    filter:blur(150px);
    bottom:-150px;
    right:-100px;
}

/*===============================
        WRAPPER
================================*/

.contact-wrapper{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:40px;
    position:relative;
    z-index:2;
}

/*===============================
      CONTACT INFO
================================*/

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

/*===============================
      CONTACT CARD
================================*/

.contact-box{

    display:flex;

    align-items:center;

    gap:20px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    padding:25px;

    border-radius:18px;

    transition:.45s;

    cursor:pointer;

}

/* Hover */

.contact-box:hover{

    transform:translateY(-8px);

    border-color:#d4af37;

    box-shadow:
    0 15px 35px rgba(212,175,55,.18);

}

/*===============================
          ICON
================================*/

.contact-box i{

    width:65px;

    height:65px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#d4af37,#f4d87d);

    color:#000;

    border-radius:50%;

    font-size:24px;

    transition:.45s;

}

.contact-box:hover i{

    transform:rotate(360deg) scale(1.1);

    box-shadow:
    0 0 20px rgba(212,175,55,.5);

}

/*===============================
          TEXT
================================*/

.contact-box h4{

    color:#fff;

    margin-bottom:8px;

    font-size:20px;

}

.contact-box p{

    color:#cfcfcf;

    line-height:1.7;

}

/*===============================
        CONTACT FORM
================================*/

.contact-form{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:40px;

    display:grid;

    gap:20px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.45);

}

/* Inputs */

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:12px;

    color:#fff;

    outline:none;

    transition:.35s;

}

.contact-form textarea{

    resize:none;

    min-height:170px;

}

/* Focus */

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#d4af37;

    box-shadow:
    0 0 12px rgba(212,175,55,.3);

}

/* Placeholder */

.contact-form input::placeholder,
.contact-form textarea::placeholder{

    color:#999;

}

/* Button */

.contact-form .luxury-btn{

    border:none;

    cursor:pointer;

    padding:18px;

    border-radius:50px;

    background:linear-gradient(135deg,#d4af37,#f7dc8d);

    color:#000;

    font-weight:700;

    transition:.4s;

}

.contact-form .luxury-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 15px 35px rgba(212,175,55,.35);

}

/*===============================
        RESPONSIVE
================================*/

@media(max-width:992px){

.contact-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.contact{

padding:80px 0;

}

.contact-form{

padding:30px;

}

.contact-box{

padding:20px;

}

}

@media(max-width:480px){

.contact-form{

padding:20px;

}

.contact-box{

flex-direction:column;

text-align:center;

}

.contact-box i{

width:55px;
height:55px;
font-size:20px;

}

}
/*======================================
            LUXURY FOOTER
======================================*/

footer{
    position:relative;
    background:#050505;
    padding:90px 0 25px;
    overflow:hidden;
}

/* Background Glow */

footer::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(212,175,55,.08);
    border-radius:50%;
    filter:blur(150px);
    top:-180px;
    right:-150px;
}

footer::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.04);
    border-radius:50%;
    filter:blur(140px);
    bottom:-150px;
    left:-100px;
}

/*===============================
        GRID
================================*/

.footer-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:40px;

    position:relative;

    z-index:2;

}

/*===============================
      HEADING
================================*/

.footer-grid h3{

    color:#fff;

    margin-bottom:25px;

    font-size:26px;

    position:relative;

}

.footer-grid h3::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:45px;

height:3px;

background:#d4af37;

}

/*===============================
      TEXT
================================*/

.footer-grid p{

color:#bdbdbd;

line-height:1.9;

}

/*===============================
      LINKS
================================*/

.footer-grid ul{

list-style:none;

padding:0;

margin:0;

}

.footer-grid ul li{

margin:15px 0;

}

.footer-grid ul li a{

color:#cfcfcf;

text-decoration:none;

transition:.4s;

display:inline-block;

}

.footer-grid ul li a:hover{

color:#d4af37;

transform:translateX(8px);

}

/*===============================
      SERVICES
================================*/

.footer-grid ul li{

color:#cfcfcf;

transition:.4s;

}

.footer-grid ul li:hover{

color:#d4af37;

padding-left:8px;

}

/*===============================
      SOCIAL ICONS
================================*/

.footer-social{

display:flex;

gap:15px;

margin-top:20px;

}

.footer-social a{

width:52px;

height:52px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

color:#fff;

font-size:20px;

transition:.45s;

}

.footer-social a:hover{

background:linear-gradient(
135deg,
#d4af37,
#f7dc8d);

color:#000;

transform:translateY(-8px) rotate(360deg);

box-shadow:
0 0 20px rgba(212,175,55,.45);

}

/*===============================
    FOOTER BOTTOM
================================*/

.footer-bottom{

margin-top:60px;

padding-top:25px;

text-align:center;

border-top:1px solid rgba(255,255,255,.08);

position:relative;

z-index:2;

}

.footer-bottom p{

color:#aaa;

font-size:15px;

letter-spacing:.5px;

}

.footer-bottom span{

color:#d4af37;

font-weight:600;

}

/*===============================
    RESPONSIVE
================================*/

@media(max-width:992px){

.footer-grid{

grid-template-columns:
repeat(2,1fr);

gap:35px;

}

}

@media(max-width:768px){

footer{

padding:70px 0 20px;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.footer-grid h3::after{

left:50%;

transform:translateX(-50%);

}

.footer-social{

justify-content:center;

}

.footer-grid ul li a:hover{

transform:none;

}

}

@media(max-width:480px){

.footer-grid h3{

font-size:22px;

}

.footer-social a{

width:48px;

height:48px;

font-size:18px;

}

.footer-bottom{

margin-top:40px;

}

.footer-bottom p{

font-size:14px;

}

}
/*======================================
      WHATSAPP FLOATING BUTTON
======================================*/

.whatsapp{

    position:fixed;

    right:30px;

    bottom:30px;

    width:65px;

    height:65px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    border-radius:50%;

    background:linear-gradient(
    135deg,
    #25D366,
    #1ebe5d
    );

    color:#fff;

    font-size:32px;

    z-index:99999;

    box-shadow:
    0 12px 30px rgba(37,211,102,.45);

    transition:.4s;

    animation:
    float 3s ease-in-out infinite,
    pulse 2s infinite;

}

/*=========================
        HOVER
=========================*/

.whatsapp:hover{

    transform:translateY(-8px) scale(1.1);

    box-shadow:

    0 0 20px rgba(37,211,102,.6),

    0 0 45px rgba(37,211,102,.45),

    0 18px 40px rgba(0,0,0,.4);

}

/*=========================
        GLASS RING
=========================*/

.whatsapp::before{

    content:"";

    position:absolute;

    inset:-6px;

    border-radius:50%;

    border:2px solid rgba(255,255,255,.25);

    opacity:0;

    transition:.4s;

}

.whatsapp:hover::before{

    opacity:1;

    transform:scale(1.1);

}

/*=========================
        SHINE EFFECT
=========================*/

.whatsapp::after{

    content:"";

    position:absolute;

    top:-100%;

    left:-40%;

    width:45%;

    height:260%;

    background:linear-gradient(

    120deg,

    transparent,

    rgba(143, 121, 0, 0.6),

    transparent

    );

    transform:rotate(25deg);

    transition:1s;

}

.whatsapp:hover::after{

    left:150%;

}

/*=========================
      FLOAT ANIMATION
=========================*/

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

}

/*=========================
      PULSE ANIMATION
=========================*/

@keyframes pulse{

0%{

box-shadow:

0 0 0 0 rgba(37,211,102,.45);

}

70%{

box-shadow:

0 0 0 18px rgba(37,211,102,0);

}

100%{

box-shadow:

0 0 0 0 rgba(37,211,102,0);

}

}

/*=========================
      MOBILE
=========================*/

@media(max-width:768px){

.whatsapp{

width:58px;

height:58px;

font-size:28px;

right:20px;

bottom:20px;

}

}

@media(max-width:480px){

.whatsapp{

width:54px;

height:54px;

font-size:26px;

right:15px;

bottom:15px;

}

}