/* ================ ROOT VARIABLES ================ */
:root {
   /* New Brown Color Palette */
   --primary-color: #5C3A10; /* Dark brown */
   --primary-light: rgba(92, 58, 16, 0.1);
   --primary-semi: rgba(92, 58, 16, 0.8);
   --secondary-color: #B3A791; /* Light beige */
   --secondary-light: rgba(179, 167, 145, 0.2);
   --dark-color: #3A2508; /* Very dark brown */
   --light-color: #F5F3EE; /* Very light beige */
   --accent-color: #8B7355; /* Medium brown accent */
   --accent-light: #D2C9B8; /* Light accent */
   --whatsapp-color: #25D366;
   
   /* Neutral Colors adjusted to brown tones */
   --white: #FFFDFA; /* Warm off-white */
   --gray-100: #F0ECE5;
   --gray-200: #E5DFD6;
   --gray-300: #D5CFC4;
   --gray-400: #C5BCAD;
   --gray-500: #A89D8B;
   --gray-600: #8B7D64;
   --gray-700: #6D5C43;
   --gray-800: #55452D;
   --gray-900: #3D2E18;
   
   /* Shadows with brown tone */
   --shadow-sm: 0 2px 8px rgba(58, 45, 16, 0.1);
   --shadow-md: 0 4px 12px rgba(58, 45, 16, 0.15);
   --shadow-lg: 0 8px 24px rgba(58, 45, 16, 0.2);
   --shadow-inset: inset 0 1px 2px rgba(58, 45, 16, 0.05);
   
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-pill: 50px;
    --radius-circle: 50%;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;
}

/* ================ BASE STYLES ================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--white-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--white-color);
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
}

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: var(--space-sm);
    z-index: 9999;
    transition: top var(--transition-normal);
}

.skip-link:focus {
    top: 0;
}

/* ================ COMPONENTS ================ */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 2px solid transparent;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-pill);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Cards */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: var(--white);
    background-clip: border-box;
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    overflow: hidden;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-img-top {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card-body {
    flex: 1 1 auto;
    padding: var(--space-lg);
}

.card-title {
    margin-bottom: var(--space-sm);
}

/* Forms */
.form-control {
    display: block;
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--gray-700);
    background-color: var(--white);
    background-clip: padding-box;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    color: var(--gray-700);
    background-color: var(--white);
    border-color: var(--secondary-color);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(78, 205, 196, 0.25);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ================ LAYOUT ================ */
.container {
    width: 100%;
    padding-right: var(--space-md);
    padding-left: var(--space-md);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Sections */
.section {
    padding: var(--space-xxl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: var(--space-md);
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-top: var(--space-md);
}

.bg-light {
    background-color: var(--gray-100) !important;
}

/* ================ NAVBAR ================ */
/* ================ NAVBAR ================ */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background: linear-gradient(135deg, #5c3a10 0%, #b3a791 50%, #854c08 100%);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    padding: 1.5rem 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    height: 80px;
    background-size: 200% 200%;
    animation: gradientBG 15s ease infinite;
}

/* Animasi untuk gradasi bergerak */
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.navbar.scrolled {
    background: linear-gradient(135deg, #5c3a10 0%, #b3a791 30%, #5c3a10 100%);
    padding: 1rem 0;
    height: 70px;
}
.navbar.scrolled {
    padding: 1rem 0; /* Diperbesar dari var(--space-sm) */
    background-color: rgba(26, 83, 92, 0.98);
    height: 70px; /* Tinggi saat di-scroll */
}

.navbar-brand {
    font-weight: 700;
    font-size: 2rem; /* Diperbesar dari 1.5rem */
    color: var(--white);
    display: flex;
    align-items: center;
    transition: all var(--transition-normal);
}

/* Logo Image Styling */
.navbar-brand img {
    height: 3.5rem; /* Diperbesar dari 2.5rem */
    width: auto;
    max-width: 150px; /* Diperbesar dari 120px */
    margin-right: var(--space-md); /* Diperbesar dari var(--space-sm) */
    transition: all var(--transition-normal);
}

.navbar.scrolled .navbar-brand img {
    height: 3rem; /* Diperbesar dari 2rem */
}

.navbar-nav {
    align-items: center; /* Pastikan menu sejajar vertikal */
}

.nav-link {
    color: var(--white) !important;
    font-weight: 600; /* Dipertebal */
    margin: 0 var(--space-md); /* Diperbesar dari var(--space-sm) */
    position: relative;
    padding: 0.75rem 1rem !important; /* Diperbesar dari var(--space-xs) 0 */
    font-size: 1.1rem; /* Ukuran font lebih besar */
    transition: all var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px; /* Dipertebal dari 2px */
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width var(--transition-normal);
}
.logo-text {
    color: var(--bg-light);
    font-weight: 900;
    display: inline-block;
}



/* ================ [TAMBAHKAN INI] RESPONSIVE LOGO ================ */
/* Untuk tablet (layar < 992px) */
@media (max-width: 992px) {
    .navbar-brand img.logo-img {
        height: 3rem !important; /* Ukuran lebih kecil */
        max-width: 130px !important;
    }
}

/* Untuk mobile (layar < 768px) */
@media (max-width: 768px) {
    .navbar-brand img.logo-img {
        height: 2.5rem !important; /* Ukuran lebih kecil lagi */
        max-width: 110px !important;
    }
}

/* Untuk mobile kecil (layar < 576px) */
@media (max-width: 576px) {
    .navbar-brand img.logo-img {
        height: 2rem !important; /* Ukuran paling kecil */
        max-width: 90px !important;
    }
}


/* Highlight "Bali" text */
.navbar-brand span:last-of-type {
    color: var(--secondary-color);
    margin-left: 2px;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 var(--space-sm);
    position: relative;
    padding: var(--space-xs) 0 !important;
    transition: all var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile menu adjustments - Improved version */
@media (max-width: 991.98px) {
    .navbar {
        padding: var(--space-sm) 1rem;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
        max-width: calc(100% - 50px); /* Membatasi lebar brand */
    }
    
    .navbar-brand img {
        height: 2rem;
        max-width: 100px; /* Lebih ketat untuk mobile */
    }
    
    .nav-link {
        margin: 0;
        padding: var(--space-sm) 0 !important;
        text-align: center;
        width: 100%;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .navbar-collapse {
        position: fixed;
        top: 60px; /* Sesuaikan dengan tinggi navbar */
        left: 0;
        right: 0;
        width: 100vw !important;
        margin: 0 !important;
        padding: var(--space-md) 0 !important;
        background-color: #8B7355;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        box-shadow: var(--shadow-md);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .navbar .container {
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0;
    }
    
    .navbar-toggler {
        margin-right: 0 !important;
        padding: 0.25rem 0.5rem;
        border: none;
    }
    
    .navbar-nav {
        width: 100%;
        margin: 0;
        padding: 0 1rem;
    }
    
    .navbar-nav .nav-item {
        text-align: center;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    
    /* Fix for viewport overflow */
    html, body {
        width: 100%;
        overflow-x: hidden;
    }
}

/* ================ HERO SECTION ================ */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/latar.jpg') center/cover;
    opacity: 0.2;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 span {
    color: var(--secondary-color);
    display: block;
}

.hero p.lead {
    font-size: 1.2rem;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.hero img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

/* ================ SERVICE CARDS ================ */
/* Service Category Title */
.service-category {
    color: #5a5a5a;
    border-bottom: 2px solid #e0a965;
    padding-bottom: 8px;
    font-weight: 600;
}

/* ===== Service Cards ===== */
.service-card {
    --card-bg: #eae5df;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);
    --radius-md: 12px;
    --transition-normal: 0.3s ease;
    --space-md: 16px;
    --space-lg: 24px;
    --secondary-color: #e0a965; /* Bali gold */
    --secondary-light: #f8e8d0;
    
    background: linear-gradient(to bottom right, #fdfaf6, #f8e8d0); /* tambahkan gradasi */
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    height: 100%;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-normal);
    text-align: center;
    overflow: hidden;
    position: relative;
    will-change: transform, box-shadow;
    display: flex;
    flex-direction: column;
}

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

/* Image Container */
.service-icon {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 0 auto var(--space-md);
    transition: all var(--transition-normal);
    position: relative;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.05);
}

/* Overlay Effect */
.service-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(224, 169, 101, 0.1), rgba(224, 169, 101, 0.3));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

/* Text Elements */
.service-card h4 {
    color: #333;
    font-size: 1.15rem;
    margin: 0 0 12px 0;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    padding-bottom: 8px;
}

.service-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--secondary-light);
    transition: width var(--transition-normal);
}

.service-card:hover h4::after {
    width: 80px;
    background: var(--secondary-color);
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Category Headers */
.service-category {
    color: #444;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 40px 0 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-card {
        padding: 18px;
    }
    
    .service-icon {
        height: 150px;
    }
    
    .service-category {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .service-icon {
        height: 130px;
    }
    
    .service-card h4 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
}

/* ================ THERAPIST CARDS ================ */
.therapist-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
}

.therapist-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.therapist-info {
    padding: var(--space-lg);
}

/* ================ PRICING CARDS ================ */
.pricing-card {
    background-color:#3cad823f;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    margin-bottom: var(--space-lg);
    height: 100%;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.02);
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: var(--space-xs) 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    width: 140px;
    text-align: center;
}

.pricing-header {
    padding: var(--space-lg);
    background-color: var(--secondary-light);
    text-align: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-features {
    padding: var(--space-lg);
    list-style: none;
}

.pricing-features li {
    margin-bottom: var(--space-md);
    color: var(--gray-600);
    display: flex;
    align-items: flex-start;
}

.pricing-features i {
    margin-right: var(--space-sm);
    color: var(--secondary-color);
    margin-top: 3px;
}
/* ================ CONTACT SECTION ================ */
#contact {
    background-color: var(--bg-light);
    padding: var(--space-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header h2 {
    position: relative;
    padding-bottom: var(--space-md);
    color: #5C3A10; /* Changed to new base color */
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #5C3A10, #8B7355); /* Gradient added */
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: var(--space-md);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background: linear-gradient(135deg, #ffffff 0%, #f5f1eb 100%); /* Subtle gradient */
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid rgba(92, 58, 16, 0.1); /* Subtle border */
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-lg);
    background-color: #f9f7f3; /* Light beige */
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    border: 1px solid rgba(139, 115, 85, 0.1); /* Subtle border */
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(92, 58, 16, 0.1);
    background: linear-gradient(135deg, #f9f7f3 0%, #f0e9de 100%); /* Hover gradient */
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;/* Gradient */
    color: #8B7355; /* Changed to white for better contrast */
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 8px rgba(92, 58, 16, 0.2);
}

.contact-item h4 {
    color: #5C3A10; /* New base color */
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

.contact-item a,
.contact-item p {
    color: #6d5c44; /* Muted version of the secondary color */
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: #8B7355; /* Lighter shade for hover */
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-info {
        padding: var(--space-lg);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        padding: var(--space-md);
    }
}
/* ================ FOOTER ================ */
footer {
    background-color: #8B7355;
    color: var(--white);
    padding: var(--space-xxl) 0 var(--space-md);
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
}

footer h5 {
    color: var(--white);
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer ul li {
    margin-bottom: var(--space-sm);
}

footer ul li a {
    color: var(--gray-400);
    text-decoration: none;
    transition: all var(--transition-fast);
}

footer ul li a:hover {
    color: var(--secondary-color);
    padding-left: var(--space-xs);
}

.social-links {
    margin-top: var(--space-md);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: var(--radius-circle);
    margin-right: var(--space-sm);
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* ================ UTILITY COMPONENTS ================ */
/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 100;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    background-color: var(--whatsapp-color);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all var(--transition-normal);
}

.whatsapp-btn i {
    font-size: 1.5rem;
    margin-right: var(--space-sm);
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: var(--space-lg);
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 99;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* ================ RESPONSIVE ADJUSTMENTS ================ */
@media (max-width: 991.98px) {
    .hero {
        padding: 120px 0 80px;
        text-align: center;
    }
    
    .hero img {
        margin-top: var(--space-xl);
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .area-card ul {
        columns: 1;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: var(--space-xl) 0;
    }
    
    .section-header {
        margin-bottom: var(--space-xl);
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .whatsapp-btn span {
        display: none;
    }
    
    .whatsapp-btn i {
        margin-right: 0;
        font-size: 1.8rem;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    html {
        font-size: 14px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .service-card,
    .pricing-card,
    .contact-info,
    .contact-form {
        padding: var(--space-md);
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 90px;
        right: var(--space-md);
    }
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}
.area-list li {
    padding: 8px 0;
    position: relative;
    transition: all 0.2s;
}
.area-list li:hover {
    transform: translateX(5px);
    color: #3a7bd5;
}

/* ================ PRINT STYLES ================ */
@media print {
    .navbar,
    .whatsapp-float,
    .back-to-top,
    footer {
        display: none !important;
    }
    
    body {
        padding-top: 0 !important;
        font-size: 12pt;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
    }
    
    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        font-weight: normal;
    }
/* Why Choose Section */
#whychoose {
  background-color: #f9f5f0; /* Warm light background */
  position: relative;
  overflow: hidden;
}

.section-header h2 {
  font-size: 2.2rem;
  color: #2a2a2a;
  margin-bottom: 1rem;
  position: relative;
}

.header-divider {
  width: 80px;
  height: 3px;
  background: #e0a965;
  margin: 0 auto 1.5rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: eae5df;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #f8e8d0, #e0a965);
  color: eae5df;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.benefit-card h4 {
  color: #eae5df;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.benefit-card p {
  color: #eae5df;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Why Choose Section */
#whychoose {
    background: linear-gradient(135deg, #f9f5f0 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
  }
  
  .text-gradient {
    background: linear-gradient(90deg, #d4af37 0%, #f9d423 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37 0%, #f9d423 100%);
    margin: 1.5rem auto;
    border-radius: 2px;
  }
  
  .benefit-card {
    transition: all 0.5s ease;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    position: relative;
    z-index: 1;
  }
  
  .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(249,212,35,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
  }
  
  .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }
  
  .benefit-card:hover::before {
    opacity: 1;
  }
  
  .icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8e8d0 0%, #e0a965 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    transition: all 0.3s ease;
  }
  
  .benefit-card:hover .icon-box {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(224,169,101,0.3);
  }
  
  /* Floating leaves animation */
  .floating-leaf {
    position: absolute;
    opacity: 0.15;
    z-index: 0;
  }
  
  .leaf-1 {
    top: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
  }
  
  .leaf-2 {
    top: 60%;
    right: 5%;
    animation: float 10s ease-in-out infinite 2s;
  }
  
  .leaf-3 {
    bottom: 10%;
    left: 20%;
    animation: float 12s ease-in-out infinite 1s;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0) rotate(0deg);
    }
    50% {
      transform: translateY(-20px) rotate(5deg);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    #whychoose {
      padding: 4rem 0;
    }
    
    .benefit-card {
      margin-bottom: 1.5rem;
    }
    
    .floating-leaf {
      display: none;
    }
  }

/* Responsive */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-card {
    padding: 25px;
  }
  
  .benefit-icon {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }
}

}