:root {
    --primary-cyan: #00d0f1;
    --cyan-dark: #00a8c4;
    --teal-color: #00c2a8;
}

/* ========================================
        NAVBAR SPECIFIC STYLES
===========================================*/

.text-teal-navbar {
    color: var(--teal-color);
}

.custom-navbar .nav-link {
    color: #4a5568;
    transition: color 0.25s ease;
    font-size: 0.95rem;
}

/* Hover & Active States */
.custom-navbar .nav-link:hover,
.custom-navbar .nav-link:focus {
    color: var(--teal-color) !important;
}

/* Mobile View Adjustments */
@media (max-width: 991.98px) {
    .custom-navbar .navbar-collapse {
        padding: 1.5rem 0 1rem 0;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        margin-top: 0.75rem;
    }
    .custom-navbar .nav-item {
        width: 100%;
        text-align: center;
    }
    .custom-navbar .nav-link {
        padding: 0.75rem 0 !important;
    }
}

/* Hero Background & Overlay */
.hero-premium {
    /* Added a high-quality Unsplash spa placeholder image */
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.6) 100%), 
                url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    min-height: 85vh; /* Gives it a grander feel */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Typography Enhancements */
.text-cyan {
    color: var(--primary-cyan) !important;
}

.text-shadow {
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.tracking-wide {
    letter-spacing: 1.5px;
    font-size: 0.85rem;
}

/* Glassmorphism Elements */
.glass-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.glass-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.glass-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Feature Icons */
.icon-circle {
    background: rgba(0, 208, 241, 0.15);
    color: var(--primary-cyan);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Buttons */
.btn-cyan-glow {
    background: linear-gradient(45deg, var(--primary-cyan), var(--cyan-dark));
    border: none;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cyan-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 208, 241, 0.4) !important;
    background: linear-gradient(45deg, var(--cyan-dark), var(--primary-cyan));
}

.btn-outline-glass {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-outline-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

/* Entrance Animation */
.animate-fade-up {
    animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .hero-premium {
        min-height: auto;
        padding: 80px 0;
    }
    .display-3 {
        font-size: 2.5rem;
    }
    .feature-item {
        width: 100%; /* Stacks the features nicely on mobile */
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
    ABOUT US PAGE SPECIFIC STYLES
=========================================== */

/* About Intro Section Styling */
.about-intro-section {
    background-color: #fbfdff; /* Very subtle cool-white background to separate sections */
    position: relative;
}

.section-title {
    letter-spacing: -0.5px;
    font-size: 2.2rem;
}

.about-text p {
    color: #4a5568; /* Soft slate gray for premium readability, not harsh black */
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: #1a202c; /* Darker tone for emphasis */
    font-weight: 600;
}

/* Subtle Highlight for Services */
.highlight-text {
    color: var(--cyan-dark);
    font-weight: 500;
    font-style: italic;
}

/* Decorative Bottom Accent Line */
.about-intro-section::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--cyan-dark));
    margin: 40px auto 0;
    border-radius: 4px;
    opacity: 0.8;
}

/* Responsive Font Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
    .about-text {
        font-size: 1.1rem !important; /* Slightly smaller on mobile for fit */
        line-height: 1.6 !important;
    }
}

/* ========================================
    ABOUT US PAGE SPECIFIC STYLES
=========================================== */
.premium-services-section {
    background-color: #eaf4f9; /* Soft light pastel blue */
}

/* Elegant Serif Typography */
.section-title-serif {
    font-family: Georgia, 'Times New Roman', Times, serif; /* Elegant serif font for premium look */
    color: #1a202c;
    font-size: 2.5rem;
}

.service-title {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.05rem;
    letter-spacing: 1px;
    color: #2d3748;
}

/* Service Card Design */
.service-card {
    background: #ffffff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

/* Inset Image Wrapper */
.img-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 12px; /* Matches the rounded look inside the card */
}

.img-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Image Zoom Effect on Hover */
.service-card:hover .img-wrapper img {
    transform: scale(1.08);
}

/* Reusing Button Style (Agar pichle section se applied nahi hai) */
.btn-cyan-glow {
    background: var(--primary-cyan, #0dcaf0);
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(13, 202, 240, 0.4);
}

.btn-cyan-glow:hover {
    background: var(--cyan-dark, #0bb5d8);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(13, 202, 240, 0.6) !important;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .section-title-serif {
        font-size: 2rem;
    }
    .img-wrapper img {
        height: 200px;
    }
}

/* ========================================
    PEOPLE SAYS PAGE SPECIFIC STYLES
=========================================== */
:root {
    --theme-teal: #00c2a8; /* Exact teal color from the screenshot */
}

/* Background */
.trust-stats-section {
    background-color: #fcfdfe; /* A very faint cool white for contrast against pure white cards */
}

/* Typography Enhancements */
.text-teal {
    color: var(--theme-teal) !important;
}

.tracking-wide {
    letter-spacing: 0.8px;
}

/* Decorative Accent Line Under Title */
.accent-line {
    width: 80px;
    height: 4px;
    background-color: var(--theme-teal);
    border-radius: 5px;
    margin-top: 10px;
}

/* Stat Cards Styling */
.stat-card {
    background: #ffffff;
    /* Custom light teal shadow matching the design */
    box-shadow: 0 10px 30px rgba(0, 194, 168, 0.08); 
    border: 1px solid rgba(0, 194, 168, 0.05) !important; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 194, 168, 0.15);
}

/* Icon Sizing & Soft Glow */
.icon-box i {
    font-size: 2.8rem;
    color: var(--theme-teal);
    filter: drop-shadow(0 4px 6px rgba(0, 194, 168, 0.25)); /* Soft glow behind icons */
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .icon-box i {
        font-size: 2.2rem;
    }
    .display-6 {
        font-size: 2rem;
    }
}

/* ========================================
    Footer Specific Styles
=========================================== */

:root {
    --teal-color: #00c2a8;
    --dark-bg: #111827; 
}

.bg-dark-theme {
    background-color: var(--dark-bg);
}

.text-teal {
    color: var(--teal-color) !important;
}

.bg-teal {
    background-color: var(--teal-color) !important;
}

.bg-teal-soft {
    background-color: rgba(0, 194, 168, 0.15);
}

.hover-teal:hover {
    color: var(--teal-color) !important;
}

.transition-all {
    transition: all 0.3s ease;
}

/* Small Icon Circles */
.icon-circle-sm {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 194, 168, 0.2);
    flex-shrink: 0; /* Prevents icon from squeezing if text wraps */
}

/* Teal Button Styling */
.btn-teal {
    background-color: var(--teal-color);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-teal:hover {
    background-color: #00a892;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 194, 168, 0.4) !important;
}

/* Map Wrapper & Core Positioning Fixes */
.map-wrapper {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive tweaks for flawless mobile behavior */
@media (max-width: 991px) {
    .nap-contact-section .row {
        flex-direction: column-reverse; /* Smooth shift: Map goes on top for smaller devices */
    }
    
    .map-wrapper iframe {
        min-height: 320px !important; /* Balanced map block height for mobile phones */
    }
}

/* ========================================
    Footer Specific Styles
=========================================== */
/* Color Palette */
:root {
    --teal-color: #00c2a8;
    --dark-bg: #111827; /* Deep rich dark color */
}

/* Base Styles */
.bg-dark-theme {
    background-color: var(--dark-bg);
}

.text-teal {
    color: var(--teal-color) !important;
}

.bg-teal {
    background-color: var(--teal-color) !important;
}

.bg-teal-soft {
    background-color: rgba(0, 194, 168, 0.15);
}

.hover-teal:hover {
    color: var(--teal-color) !important;
}

.transition-all {
    transition: all 0.3s ease;
}

/* Small Icon Circles */
.icon-circle-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 194, 168, 0.3);
}

/* Teal Button Styling */
.btn-teal {
    background-color: var(--teal-color);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-teal:hover {
    background-color: #00a892;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 194, 168, 0.4) !important;
}

/* Map Wrapper Fixes */
.map-wrapper {
    position: relative;
    overflow: hidden;
}

.map-wrapper iframe {
    display: block; /* Removes bottom space under iframe */
    object-fit: cover;
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .nap-contact-section .row {
        flex-direction: column-reverse; /* Shows map on top in mobile */
    }
    .map-wrapper iframe {
        min-height: 350px !important;
    }
    .col-lg-5.p-5 {
        padding: 2rem !important; /* Reduces padding on smaller screens */
    }
}

/* ================================================================= */
/* Vertical Floating Round Buttons Styling                          */
/* ================================================================= */

/* Main Container - Right side positioning */
.vertical-floating-stack {
    position: fixed;
    right: 20px;
    bottom: 30px; /* Layout balanced slightly above screen edge */
    display: flex;
    flex-direction: column;
    gap: 15px; /* Perfect spacing between vertical buttons */
    z-index: 9999; /* Ensure triggers always stay on top */
}

/* Base Round Button Core Rules */
.round-float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #ffffff !important;
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Color Identity Assignments (Luxury Gradients) */
.round-float-btn.call-btn {
    background: linear-gradient(135deg, #00c2a8 0%, #00a892 100%); /* Theme Teal */
}

.round-float-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%); /* UI WhatsApp Green */
}

.round-float-btn.map-btn {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%); /* Maps Red */
}

/* Dynamic Hover Micro-Interactions */
.round-float-btn:hover {
    transform: scale(1.1) translateY(-4px);
}

.round-float-btn.call-btn:hover {
    box-shadow: 0 10px 20px rgba(0, 194, 168, 0.4);
}

.round-float-btn.whatsapp-btn:hover {
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

.round-float-btn.map-btn:hover {
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.4);
}

/* Pure CSS Elegant Tooltips (Left Side Hover Expand) */
.round-float-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background-color: #111827; /* Rich dark layout */
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Tooltip Arrow */
.round-float-btn::after {
    content: '';
    position: absolute;
    right: 64px;
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #111827;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

/* Trigger Tooltip Display on Hover */
.round-float-btn:hover::before,
.round-float-btn:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile Screens Optimization (Tweak sizes slightly for perfect ergonomics) */
@media (max-width: 768px) {
    .vertical-floating-stack {
        right: 15px;
        bottom: 20px;
        gap: 12px;
    }
    
    .round-float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Disable tooltips on touch screens to avoid layout clutter */
    .round-float-btn::before,
    .round-float-btn::after {
        display: none !important;
    }
}