
        :root {
            --color-cream: #FDFCDC;
            --color-peach: #FED9B7;
            --color-coral: #F07167;
            --color-teal: #0081A7;
            --color-aqua: #00AFB9;
        }
        
        * {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            overflow-x: hidden;
            color: #333;
        }
        
        /* Gradient Utilities */
        .bg-gradient-primary {
            background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-aqua) 100%);
        }
        
        .bg-gradient-accent {
            background: linear-gradient(135deg, var(--color-coral), var(--color-peach));
        }
        
        .text-gradient {
            background: linear-gradient(135deg, var(--color-teal), var(--color-aqua));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 1.2rem 0;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1000;
        }
        
        .navbar.scrolled {
            background: rgba(253, 252, 220, 0.98) !important;
            box-shadow: 0 4px 20px rgba(0, 129, 167, 0.15);
            padding: 0.8rem 0;
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1.6rem;
            color: var(--color-teal) !important;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .navbar-brand i {
            color: var(--color-coral);
            font-size: 1.8rem;
        }
        
        .nav-link {
            color: var(--color-teal) !important;
            font-weight: 500;
            margin: 0 0.6rem;
            position: relative;
            transition: color 0.3s;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--color-coral) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--color-coral);
            transition: all 0.3s;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .nav-link:hover::after, .nav-link.active::after {
            width: 70%;
        }
        
        .btn-cta {
            background: linear-gradient(135deg, var(--color-coral), var(--color-peach));
            color: white !important;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(240, 113, 103, 0.3);
        }
        
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(240, 113, 103, 0.5);
            color: white !important;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-aqua) 50%, var(--color-peach) 100%);
            min-height: 95vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 2rem 0;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 70%;
            height: 150%;
            background: radial-gradient(circle, rgba(254, 217, 183, 0.4) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 60%;
            height: 120%;
            background: radial-gradient(circle, rgba(0, 175, 185, 0.3) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3.8rem;
            font-weight: 800;
            color: white;
            line-height: 1.15;
            margin-bottom: 1.8rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2.5rem;
            line-height: 1.9;
            max-width: 600px;
        }
        
        .btn-hero {
            background: white;
            color: var(--color-teal);
            padding: 1.1rem 2.8rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.15rem;
            border: 3px solid white;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .btn-hero:hover {
            background: var(--color-cream);
            transform: translateY(-4px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            color: var(--color-coral);
        }
        
        .hero-image {
            position: relative;
            z-index: 2;
        }
        
        .hero-image img {
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(0, 129, 167, 0.3);
            width: 100%;
            max-width: 550px;
            border: 8px solid rgba(255, 255, 255, 0.9);
        }
        
        /* Section Styling */
        .section-padding {
            padding: 6rem 0;
        }
        
        .section-title {
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--color-teal);
            font-size: 2.3rem;
        }
        
        .section-subtitle {
            color: var(--color-coral);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
        }
        
        .section-desc {
            color: #555;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 3rem;
        }
        
        /* About Section */
        .about-img {
            border-radius: 25px;
            box-shadow: 0 25px 50px rgba(0, 129, 167, 0.2);
            width: 100%;
            height: 450px;
            object-fit: cover;
            border: 6px solid white;
            transition: transform 0.4s;
        }
        
        .about-img:hover {
            transform: scale(1.02);
        }
        
        .about-text {
            line-height: 1.9;
            color: #444;
            font-size: 1.05rem;
        }
        
        .about-text p {
            margin-bottom: 1rem;
        }
        
        .btn-outline-custom {
            border: 2px solid var(--color-teal);
            color: var(--color-teal);
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-outline-custom:hover {
            background: var(--color-teal);
            color: white;
            transform: translateX(5px);
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--color-teal), var(--color-aqua));
            color: white;
        }
        
        .counter-item {
            text-align: center;
            padding: 2.5rem 1.5rem;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            margin: 1rem;
            transition: transform 0.3s;
        }
        
        .counter-item:hover {
            transform: translateY(-8px);
        }
        
        .counter-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--color-peach);
            display: block;
            line-height: 1;
        }
        
        .counter-label {
            font-size: 1.15rem;
            opacity: 0.95;
            font-weight: 500;
            margin-top: 0.8rem;
        }
        
        /* Vision & Mission */
        .vision-mission-card {
            background: white;
            border-radius: 25px;
            padding: 3rem;
            box-shadow: 0 15px 40px rgba(0, 129, 167, 0.12);
            height: 100%;
            transition: all 0.4s;
            border-top: 6px solid var(--color-aqua);
            position: relative;
            overflow: hidden;
        }
        
        .vision-mission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--color-coral), var(--color-peach));
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .vision-mission-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 55px rgba(0, 129, 167, 0.2);
        }
        
        .vision-mission-card:hover::before {
            opacity: 1;
        }
        
        .vm-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--color-coral), var(--color-peach));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.8rem;
            font-size: 2rem;
            color: white;
            box-shadow: 0 10px 25px rgba(240, 113, 103, 0.4);
        }
        
        .vm-title {
            font-weight: 700;
            color: var(--color-teal);
            margin-bottom: 1.2rem;
            font-size: 1.8rem;
        }
        
        .vm-desc {
            color: #555;
            line-height: 1.85;
            font-size: 1.05rem;
        }
        
        /* Why Choose Us */
        .feature-box {
            padding: 2.2rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 129, 167, 0.08);
            margin-bottom: 1.8rem;
            transition: all 0.35s;
            border-left: 5px solid var(--color-aqua);
            position: relative;
            overflow: hidden;
        }
        
        .feature-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--color-coral), var(--color-peach));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s;
        }
        
        .feature-box:hover {
            transform: translateX(12px);
            box-shadow: 0 18px 45px rgba(0, 129, 167, 0.18);
        }
        
        .feature-box:hover::before {
            transform: scaleX(1);
        }
        
        .feature-icon {
            font-size: 2.8rem;
            color: var(--color-coral);
            margin-bottom: 1.2rem;
            background: linear-gradient(135deg, var(--color-peach), var(--color-cream));
            width: 75px;
            height: 75px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 20px rgba(254, 217, 183, 0.4);
        }
        
        .feature-title {
            font-weight: 700;
            color: var(--color-teal);
            margin-bottom: 0.8rem;
            font-size: 1.35rem;
        }
        
        .feature-desc {
            color: #555;
            font-size: 1rem;
            line-height: 1.75;
        }
        
        /* Work Process */
        .process-step {
            text-align: center;
            padding: 2.5rem 1.5rem;
            position: relative;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 129, 167, 0.08);
            transition: all 0.3s;
            margin: 1rem;
        }
        
        .process-step:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 45px rgba(0, 129, 167, 0.15);
        }
        
        .process-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--color-coral), var(--color-peach));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.8rem;
            font-weight: 800;
            font-size: 1.8rem;
            color: white;
            box-shadow: 0 10px 25px rgba(240, 113, 103, 0.4);
            position: relative;
            z-index: 2;
        }
        
        .process-step::before {
            content: '';
            position: absolute;
            top: 35px;
            left: 50%;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--color-aqua), transparent);
            z-index: 1;
        }
        
        .process-step:first-child::before {
            left: 50%;
            width: 50%;
        }
        
        .process-step:last-child::before {
            width: 50%;
        }
        
        .process-title {
            font-weight: 700;
            color: var(--color-teal);
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }
        
        .process-desc {
            color: #555;
            font-size: 1rem;
            line-height: 1.7;
        }

        .nav-item{
            margin-left:35px !important;
        }
        
        @media (max-width: 768px) {
            .process-step::before {
                display: none;
            }
        }
        
        /* Services Cards */
        .service-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 129, 167, 0.12);
            transition: all 0.4s;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0, 129, 167, 0.1);
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0, 129, 167, 0.25);
            border-color: var(--color-aqua);
        }
        
        .service-img {
            height: 400px;
            object-fit: cover;
            width: 100%;
            transition: transform 0.4s;
        }
        
        .service-card:hover .service-img {
            transform: scale(1.08);
        }
        
        .service-content {
            padding: 2.2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            background: var(--color-cream);
        }
        
        .service-title {
            font-weight: 700;
            color: var(--color-teal);
            margin-bottom: 1.2rem;
            font-size: 1.45rem;
            line-height: 1.4;
        }
        
        .service-desc {
            color: #555;
            line-height: 1.85;
            margin-bottom: 1.8rem;
            font-size: 1rem;
            flex-grow: 1;
        }
        
        .btn-read-more {
            color: var(--color-coral);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            transition: all 0.3s;
            font-size: 1.05rem;
        }
        
        .btn-read-more:hover {
            gap: 1.2rem;
            color: var(--color-teal);
            transform: translateX(5px);
        }
        
        /* Booking Form */
        .booking-section {
            background: linear-gradient(135deg, var(--color-peach) 0%, var(--color-cream) 100%);
        }
        
        .booking-card {
            background: white;
            border-radius: 30px;
            padding: 3rem;
            box-shadow: 0 25px 60px rgba(0, 129, 167, 0.15);
            border: 1px solid rgba(0, 175, 185, 0.2);
        }
        
        .form-control {
            padding: 1rem 1.4rem;
            border-radius: 15px;
            border: 2px solid #e8e8e8;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: all 0.3s;
            background: #fafafa;
        }
        
        .form-control:focus {
            border-color: var(--color-aqua);
            box-shadow: 0 0 0 0.25rem rgba(0, 175, 185, 0.2);
            background: white;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--color-teal);
            margin-bottom: 0.6rem;
        }
        
        .btn-submit {
            background: linear-gradient(135deg, var(--color-coral), var(--color-peach));
            color: white;
            border: none;
            padding: 1.1rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            width: 100%;
            transition: all 0.35s;
            box-shadow: 0 8px 25px rgba(240, 113, 103, 0.35);
        }
        
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(240, 113, 103, 0.5);
        }
        
        .form-note {
            font-size: 0.9rem;
            color: #777;
            margin-top: 1rem;
            text-align: center;
        }
        
        /* Reviews */
        .review-card {
            background: white;
            padding: 2.5rem;
            border-radius: 25px;
            box-shadow: 0 15px 40px rgba(0, 129, 167, 0.1);
            height: 100%;
            position: relative;
            transition: all 0.35s;
            border: 1px solid rgba(0, 175, 185, 0.15);
        }
        
        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 55px rgba(0, 129, 167, 0.2);
            border-color: var(--color-aqua);
        }
        
        .review-card::before {
            content: '"';
            font-size: 5rem;
            color: var(--color-peach);
            opacity: 0.5;
            position: absolute;
            top: 15px;
            left: 25px;
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .review-stars {
            color: #ffc107;
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }
        
        .review-text {
            color: #444;
            font-style: italic;
            margin-bottom: 1.8rem;
            line-height: 1.85;
            font-size: 1.05rem;
            position: relative;
            z-index: 2;
        }
        
        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1.2rem;
            border-top: 1px solid rgba(0, 129, 167, 0.1);
        }
        
        .reviewer-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-teal), var(--color-aqua));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.3rem;
        }
        
        .reviewer-name {
            font-weight: 700;
            color: var(--color-teal);
            font-size: 1.15rem;
        }
        
        .reviewer-location {
            color: #777;
            font-size: 0.95rem;
        }
        
        /* FAQ Section */
        .accordion-item {
            border: none;
            margin-bottom: 1.2rem;
            border-radius: 18px !important;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 129, 167, 0.08);
            background: white;
            border: 1px solid rgba(0, 175, 185, 0.15);
        }
        
        .accordion-button {
            background: white;
            color: var(--color-teal);
            font-weight: 600;
            padding: 1.4rem 1.8rem;
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            border-radius: 18px !important;
        }
        
        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, var(--color-peach), var(--color-cream));
            color: var(--color-coral);
            box-shadow: none;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(0, 175, 185, 0.3);
        }
        
        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F07167'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230081A7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        .accordion-body {
            padding: 1.3rem 1.8rem 1.8rem;
            color: #555;
            line-height: 1.85;
            font-size: 1.05rem;
            border-top: 1px solid rgba(0, 129, 167, 0.1);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--color-teal), var(--color-aqua));
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 80%;
            height: 200%;
            background: radial-gradient(circle, rgba(254, 217, 183, 0.3) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
            padding: 4rem 0;
        }
        
        .cta-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1.3rem;
            line-height: 1.25;
        }
        
        .cta-subtitle {
            font-size: 1.3rem;
            opacity: 0.95;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-cta-large {
            background: white;
            color: var(--color-teal);
            padding: 1.3rem 3.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.25rem;
            border: 3px solid white;
            transition: all 0.35s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
        }
        
        .btn-cta-large:hover {
            background: var(--color-cream);
            transform: translateY(-5px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
            color: var(--color-coral);
        }
        
        /* Contact Section */
        .contact-card {
            background: white;
            border-radius: 25px;
            padding: 2.5rem;
            box-shadow: 0 15px 40px rgba(0, 129, 167, 0.12);
            height: 100%;
            border: 1px solid rgba(0, 175, 185, 0.2);
        }
        
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 1.3rem;
            padding: 1.5rem;
            background: var(--color-cream);
            border-radius: 18px;
            margin-bottom: 1.3rem;
            transition: transform 0.3s;
        }
        
        .contact-info-item:hover {
            transform: translateX(8px);
            background: linear-gradient(135deg, var(--color-peach), var(--color-cream));
        }
        
        .contact-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--color-coral), var(--color-peach));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            flex-shrink: 0;
            box-shadow: 0 8px 20px rgba(240, 113, 103, 0.35);
        }
        
        .contact-details h5 {
            color: var(--color-teal);
            font-weight: 700;
            margin-bottom: 0.4rem;
            font-size: 1.2rem;
        }
        
        .contact-details p, .contact-details a {
            color: #555;
            margin: 0;
            line-height: 1.7;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 1.05rem;
        }
        
        .contact-details a:hover {
            color: var(--color-coral);
        }
        
        /* Footer */
        footer {
            background: var(--color-teal);
            color: white;
            padding: 5rem 0 2rem;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--color-coral), var(--color-peach), var(--color-aqua));
        }
        
        .footer-col h4 {
            color: var(--color-peach);
            font-weight: 700;
            margin-bottom: 1.8rem;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 0.8rem;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--color-aqua);
            border-radius: 2px;
        }
        
        .footer-about p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.9;
            font-size: 1.05rem;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 1rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-size: 1.05rem;
            font-weight: 500;
        }
        
        .footer-links a i {
            color: var(--color-aqua);
            font-size: 0.9rem;
            transition: transform 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--color-peach);
            padding-left: 8px;
        }
        
        .footer-links a:hover i {
            transform: translateX(4px);
        }
        
        .newsletter-form .form-control {
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            margin-bottom: 1.2rem;
            padding: 1rem 1.4rem;
        }
        
        .newsletter-form .form-control::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .newsletter-form .form-control:focus {
            background: rgba(255, 255, 255, 0.25);
            border-color: var(--color-aqua);
            color: white;
        }
        
        .newsletter-form .btn {
            background: linear-gradient(135deg, var(--color-coral), var(--color-peach));
            color: white;
            border: none;
            font-weight: 600;
            width: 100%;
            padding: 0.9rem;
            border-radius: 12px;
            transition: all 0.3s;
        }
        
        .newsletter-form .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(240, 113, 103, 0.4);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            margin-top: 3.5rem;
            padding-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
        }
        
        .footer-bottom a {
            color: var(--color-aqua);
            text-decoration: none;
            margin: 0 0.7rem;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .footer-bottom a:hover {
            color: var(--color-peach);
            text-decoration: underline;
        }
        
        /* Alert Messages */
        .alert-custom {
            display: none;
            border-radius: 15px;
            padding: 1.1rem 1.5rem;
            margin-top: 1.3rem;
            font-weight: 500;
            animation: slideIn 0.4s ease;
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .alert-success-custom {
            background: linear-gradient(135deg, #d4edda, #c3e6cb);
            color: #155724;
            border: 1px solid #a3c9a8;
        }
        
        .alert-error-custom {
            background: linear-gradient(135deg, #f8d7da, #f5c6cb);
            color: #721c24;
            border: 1px solid #e8a8b0;
        }
        
        .alert-custom i {
            margin-right: 0.6rem;
            font-size: 1.2rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.15rem;
            }
            
            .section-padding {
                padding: 4.5rem 0;
            }
            
            .navbar-collapse {
                background: rgba(253, 252, 220, 0.98);
                padding: 1.5rem;
                border-radius: 20px;
                margin-top: 1rem;
                box-shadow: 0 10px 30px rgba(0, 129, 167, 0.15);
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.3rem;
            }
            
            .hero-section {
                text-align: center;
                padding-top: 4rem;
            }
            
            .hero-content {
                margin-bottom: 3rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .counter-number {
                font-size: 2.8rem;
            }
            
            .booking-card, .contact-card {
                padding: 2rem;
            }
        }
        
        /* Form Validation Styles */
        .form-control.is-invalid {
            border-color: var(--color-coral);
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23F07167'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23F07167' stroke='none'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right calc(0.375em + 0.1875rem) center;
            background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
        }
        
        .is-invalid:focus {
            box-shadow: 0 0 0 0.25rem rgba(240, 113, 103, 0.25);
        }
        
        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }
        
        /* Image Hover Effects */
        .img-hover-zoom {
            overflow: hidden;
            border-radius: 25px;
        }
        
        .img-hover-zoom img {
            transition: transform 0.5s ease;
        }
        
        .img-hover-zoom:hover img {
            transform: scale(1.08);
        }
        .nav-item{
            margin-left:20px !important;
        }
