*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --gold: #C2A74E;
}

.text-gold{
    color: var(--gold);
}

.bg-gold{
    background-color: var(--gold);
}

.rounded-brand{
    border-radius: 20px;
}

.hero-section{
    min-height: 50vh;
    background-image: url("../images/newSpa2.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-container{
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    min-height: 65vh;
    align-content: center;
}

.hero-content{
    background-color: rgba(0, 0, 0, 0.515);
    width: 100%;
    min-height: 65vh;
}

.bg-brand-light{
    background-color: #EFEAE6 !important;
}

.text-brand-light{
    color: #EFEAE6 !important;
}

.bars-para{
    display: none
}

.nav-bar-wrap div{
    display: flex;
    justify-content: center;
    text-align: center;
}

.nav-bar-wrap p:nth-child(1){
    text-align: center !important;
    width: 100% !important;
}

/* CTA Button Optimizations */
.call-hover-btn{
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.call-hover-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.call-hover-btn a {
    color: white !important;
    text-decoration: none;
    font-size: 1.5rem;
    background: none !important;
    padding: 0 !important;
    min-height: 0 !important;
    box-shadow: none !important;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(194, 167, 78, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(194, 167, 78, 0); }
    100% { box-shadow: 0 0 0 0 rgba(194, 167, 78, 0); }
}

/* Optimized CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-height: 48px;
    font-size: 1rem;
    line-height: 1.2;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.cta-button:active {
    transform: translateY(0);
}

.cta-call {
    background-color: var(--gold);
    color: white;
}

.cta-call:hover {
    background-color: #b8953a;
    color: white;
}

.cta-whatsapp {
    background-color: #25D366;
    color: white;
}

.cta-whatsapp:hover {
    background-color: #1ea952;
    color: white;
}

.cta-button i {
    margin-right: 8px;
    font-size: 1.1em;
}

/* Responsive CTA Button Layout */
.cta-buttons-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.cta-buttons-container .cta-button {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
}

/* Mobile Optimizations */
@media screen and (max-width: 768px) {
    .call-hover-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .call-hover-btn a {
        font-size: 1.3rem;
    }
    
    .cta-buttons-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .cta-buttons-container .cta-button {
        width: 100%;
        max-width: none;
        min-width: auto;
        padding: 14px 20px;
        font-size: 1.1rem;
    }
    
    .cta-button {
        min-height: 52px;
    }
}

@media screen and (max-width: 480px) {
    .call-hover-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .call-hover-btn a {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 12px 16px;
        font-size: 1rem;
        min-height: 48px;
    }
}

/* Tablet Optimizations */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .cta-buttons-container {
        gap: 16px;
    }
    
    .cta-buttons-container .cta-button {
        min-width: 160px;
        padding: 13px 22px;
    }
}

/* Desktop Hover Effects */
@media screen and (min-width: 1025px) {
    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }
}

/* Map Section Styles */
.contact-page-google-map-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.contact-page-google-map-1 h1 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-page-google-map-1 iframe {
    border: 0;
}

@media screen and (width < 700px) {
    .bars-para{
        display: block
    }
    .nav-bar-wrap div{
        display: flex;
        justify-content: space-between;
        text-align: start;
    }
    .nav-bar-wrap p:nth-child(1){
        text-align: start !important;
        width: auto;
    }
    .hero-section{
        min-height: 40vh;
        background-image: url("../images/newSpa2.jpeg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .hero-container{
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        min-height: 40vh;
        align-content: center;
    }
    
    .hero-content{
        background-color: rgba(0, 0, 0, 0.515);
        width: 100%;
        min-height: 40vh;
    }
}