:root {
    --gold: #c5a47e; 
    --gold-hover: #b08d55;
    --dark-grey: #222222;
    --light-cream: #faf9f5;
    --font-primary: 'Poppins', sans-serif;
    --bg-color: hsl(40, 20%, 95%);
    --text-main: #1a1a1a;
    --text-muted: #555;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --border-radius-lg: 1.5rem;
    --border-radius-pill: 50px;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-grey);
    overflow-x: hidden;
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    top: 0px !important;
}
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-main);
}


.navbar {
    background-color: rgba(249, 247, 242, 0.69);
    backdrop-filter: blur(22px);
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.navbar-brand {
    font-family: var(--font-body);
    font-weight: 800;
    letter-spacing: -0.5px;
    font-size: 1.5rem;
    text-transform: lowercase;
}
.nav-link {
    font-weight: 500;
    color: var(--text-main) !important;
    font-size: 0.95rem;
    margin: 0 12px;
}

.btn-primary {
    background-color: var(--text-main);
    border: 1px solid var(--text-main);
    border-radius: var(--border-radius-pill);
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s ease, background-color 0.2s;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #333;
    border-color: #333;
    transform: translateY(-2px);
}
.btn-outline {
    background-color: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    border-radius: var(--border-radius-pill);
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-outline:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}
.text-gold { color: var(--gold) !important; }
.bg-cream { background-color: var(--light-cream); }
.ls-1 { letter-spacing: 1px; }
.font-small { font-size: 0.9rem; }

.btn-gold {
    background-color: var(--gold);
    color: #fff;
    border: 1px solid var(--gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.btn-gold:hover, .btn-gold:focus {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    color: #fff;
    transform: translateY(-2px);
}

.vh-85 { height: 85vh; min-height: 600px; }
.hero-bg {
    background-color: #000;
}
.hero-image-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: zoomIn 20s infinite alternate;
}
.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); 
    z-index: 1;
}
.logo {
    max-height: 50px;
}
@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Google Translate */
#google_translate_element select {
    background: transparent;
    border: 1px solid #333;
    color: #333;
    padding: 8px 15px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}
/* Service Cards */
.service-card {
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}
.img-wrapper {
    overflow: hidden;
    height: 250px;
}
.img-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .img-wrapper img {
    transform: scale(1.1);
}

.hero-section {
    padding: 6rem 0 5rem 0;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-image-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    position: relative;
    margin-top: 3rem;
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.marquee-wrapper { width: 100%; overflow: hidden; white-space: nowrap; }
.marquee-content {
    display: inline-block;
    animation: scroll 40s linear infinite;
}



.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.spacing-y-2 li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.insurance-logo {
    max-height: 80px;
    width: auto;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.insurance-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.mix-blend-multiply {
    mix-blend-mode: multiply;
}

.vh-60 {
    height: 60vh;
    min-height: 500px;
}

.accordion-button:not(.collapsed) {
    color: var(--dark-grey);
    background-color: var(--light-cream);
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 300px;
}
.bg-white-glass {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    background-color: var(--light-cream);
}

.service-card i {
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
}

.fixed-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
}

 /* --- Service Image Cards --- */
 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 24px;
 }

 .service-item {
     position: relative;
     border-radius: var(--border-radius-lg);
     height: 400px;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 2.5rem;
     transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
     border: none;
     text-decoration: none !important;
 }

 .service-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     transition: transform 0.8s ease;
     z-index: 1;
 }

 .service-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.85) 100%);
     z-index: 2;
     transition: background 0.4s ease;
 }

 .service-content {
     position: relative;
     z-index: 3;
     color: white;
 }

 .service-item h3 {
     color: white;
     font-family: var(--font-heading);
     font-size: 1.8rem;
     margin-bottom: 0.5rem;
 }

 .service-item p {
     color: rgba(255, 255, 255, 0.9);
     font-size: 0.95rem;
     margin-bottom: 1.5rem;
     max-height: 0;
     opacity: 0;
     overflow: hidden;
     transition: all 0.5s ease;
 }

 /* Hover States */
 .service-item:hover {
     transform: translateY(-8px);
 }

 .service-item:hover .service-bg {
     transform: scale(1.1);
 }

 .service-item:hover p {
     max-height: 100px;
     opacity: 1;
     margin-top: 10px;
 }

 .service-btn-pill {
     background: white;
     color: #1a1a1a;
     padding: 10px 24px;
     border-radius: 50px;
     font-size: 0.75rem;
     font-weight: 700;
     display: inline-block;
     text-transform: uppercase;
     letter-spacing: 1.5px;
     transition: background 0.3s;
 }

 .service-item:hover .service-btn-pill {
     background: var(--bg-color);
 }

 /* --- Footer --- */
 footer {
     margin-top: 6rem;
     padding: 5rem 0;
     border-top: 1px solid rgba(0, 0, 0, 0.1);
     background-color: white;
 }

 footer h5 {
     font-family: var(--font-body);
     font-weight: 700;
     font-size: 0.9rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 1.5rem;
 }

 footer a {
     text-decoration: none;
     color: var(--text-muted);
     transition: color 0.2s;
 }

 footer a:hover {
     color: var(--text-main);
 }
/* --- Locations --- */
.location-box {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    height: 100%;
}

/* --- Service/Special Cards --- */
.service-card-img {
    border-radius: var(--border-radius-lg);
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}


.feature-card {
    background: white;
    border: none;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
/* media queries  */
 @media (max-width: 768px) {
     .display-3 {
         font-size: 2.5rem;
     }
 }

 @media (min-width: 992px) {
     .hero-title {
         font-size: 5rem;
     }
 }

 @media (max-width: 991px) {
     body {
         padding-bottom: 60px;
     }
 }


 @keyframes scroll {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }

 @keyframes fadeInUp {
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .animate-fade-up {
     animation: fadeInUp 0.8s ease-out forwards;
     opacity: 0;
     transform: translateY(20px);
 }