@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --bg-main: #ffffff;
    --bg-alt: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius: 12px;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

/* Header & Nav Modernization */
header {
    background: var(--glass) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0 !important;
    box-shadow: var(--shadow-sm);
}

.top-head {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 5px;
}

.right-p li, .right-p li a {
    color: var(--text-muted) !important;
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
    font-weight: 500;
}

.right-p li span {
    color: var(--primary) !important;
    margin-right: 5px;
}

#logo h1 a {
    color: var(--secondary) !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
}

#logo h1 a small {
    color: var(--primary) !important;
    font-weight: 600;
    letter-spacing: 1px;
}

nav ul li a {
    color: var(--secondary) !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    padding: 10px 15px !important;
    transition: all 0.3s ease;
    border-radius: 8px;
}

nav ul li a:hover {
    color: var(--primary) !important;
    background: rgba(16, 185, 129, 0.05);
}

.menu li.active a {
    color: var(--primary) !important;
    border-bottom: none !important;
    background: rgba(16, 185, 129, 0.1);
}

/* Book Now Button in Nav */
nav ul li a[style*="background-image"] {
    background: var(--primary) !important;
    color: white !important;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
    padding: 10px 25px !important;
    margin-left: 10px;
}

nav ul li a[style*="background-image"]:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.23);
}

/* Section Styling */
section {
    padding: 80px 0 !important;
}

.heading {
    font-size: 36px !important;
    margin-bottom: 50px !important;
    position: relative;
    display: block !important;
    text-align: center;
}

.heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* Card Modernization */
.services-inner, .team-grid, .grid {
    background: white !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: var(--radius) !important;
    padding: 25px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: var(--shadow) !important;
    overflow: hidden;
}

.services-inner:hover, .team-grid:hover, .grid:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--primary-light) !important;
}

.our-services-img img, .team-grid img, .grid img {
    border-radius: 8px !important;
    margin-bottom: 20px;
}

.our-services-text h4 {
    font-size: 20px !important;
    margin-bottom: 15px !important;
}

.our-services-text h4::before {
    background: var(--primary) !important;
}

/* Button Modernization */
.btn {
    border-radius: 8px !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
}

.btn-primary {
    background: var(--primary) !important;
    border: none !important;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark) !important;
    transform: scale(1.02);
}

.btn-info {
    background: var(--bg-alt) !important;
    border: 1px solid #e2e8f0 !important;
    color: var(--secondary) !important;
}

.btn-info:hover {
    background: #e2e8f0 !important;
}

/* Carousel Modernization */
.carousel-item img {
    height: 600px;
    object-fit: cover;
    filter: brightness(0.8);
}

.carousel-control-prev, .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
}

/* Footer Modernization */
footer {
    background: var(--secondary) !important;
    color: white !important;
    padding-top: 60px !important;
}

.footer-title a {
    color: white !important;
    font-size: 22px !important;
    font-weight: 700 !important;
}

.footer-text p {
    color: #94a3b8 !important;
}

.social_section_1info li a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social_section_1info li a:hover {
    background: var(--primary);
    transform: rotate(360deg);
}

/* Floating Actions */
[style*="position: fixed"] {
    transition: all 0.3s ease;
}

[style*="position: fixed"]:hover {
    transform: scale(1.1);
}

/* Testimonials */
.testi-w3pvt-grid {
    background: var(--bg-alt) !important;
    border-radius: var(--radius);
    padding: 40px !important;
    position: relative;
}

.testi-w3pvt-grid p {
    font-style: italic;
    color: var(--text-main) !important;
}

.testi-pos h4 {
    margin-top: 10px;
    color: var(--primary) !important;
}

/* Form Styles */
.card {
    border: none !important;
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-lg) !important;
}

.card-header {
    background: var(--primary) !important;
    padding: 20px !important;
    font-weight: 700 !important;
}

.form-control {
    border-radius: 8px !important;
    padding: 12px !important;
    border: 1px solid #e2e8f0 !important;
}

.form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    header {
        padding: 15px 0 !important;
    }
    
    [id^=drop]:checked + ul {
        background: white !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: var(--shadow-lg) !important;
        top: 60px !important;
    }
    
    nav ul li a {
        color: var(--secondary) !important;
        text-align: left;
        padding: 15px 20px !important;
    }
    
    .toggle {
        background: var(--bg-alt) !important;
        border-radius: 8px;
    }
}
