 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
        
:root {
            --color-primary: #007bff; /* Blue */
            --color-accent: #00bcd4; /* Teal */
            --color-dark: #333;
            --color-light: #f8f9fa;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--color-dark);
            background: #00000050;
            margin: 0;
            padding: 0;
            background-color: var(--color-light);
            line-height: 1.2;
            scroll-behavior: smooth;
        }

        main{
            background: #0000000d;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        section {
            padding: 3rem 0;
        }

         /* --- Navigation Bar --- */
        .header {
            background-color: white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-primary);
            text-decoration: none;
        }

        .logo span {
            color: var(--color-accent);
        }

        .nav-links a {
            color: var(--color-dark);
            text-decoration: none;
            margin-left: 1.5rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--color-primary);
        }

        .cta-button {
            background-color: var(--color-primary);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .explore{
            padding: 0.75rem 1.5rem; 
            border-radius: 8px;
        }

        .book{
            color: white !important;
        }

        .cta-button:hover {
            background-color: #0056b3;
        }

        .contact-hero-content {
            position: relative; 
            z-index: 2; 
            color: white;
            text-align: center;
            margin-bottom: 10px; 
            
        }

        .contact-hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #0056b3;
        }

        .contact-hero-content p {
            font-size: 1rem;
            font-weight: 300;
            color: #0056b3;
        }
        

        /* --- Contact Form Styles --- */

        .contact-form-container {
            position: relative;
            z-index: 3; 
            background-color: rgba(255, 255, 255, 0.847); 
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            max-width: 600px;
            width: 90%;
            margin: 0 auto;
            
        }

        .contact-form-container h2 {
            font-size: 2rem;
            color: #00008b;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #000;
            font-size: 0.95em;
        }

        .form-group input[type="text"],
        .form-group input[type="email"],
        .form-group input[type="tel"],
        .form-group select,
        .form-group textarea {
            width: calc(100% - 22px); /* Account for padding + border */
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1em;
            color: #333;
            background-color: #fff;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #00bcd4; 
            box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2);
            outline: none;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-button-container {
            text-align: center;
            margin-top: 30px;
        }

        .submit-button {
            background-color: #00bcd4; 
            color: white;
            padding: 14px 28px;
            border: none;
            border-radius: 8px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s;
        }

        .submit-button:hover {
            background-color: #008c9e; /* Darker teal on hover */
            transform: translateY(-2px);
        }

        /* Address styling */

        .contact-address{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        }

        .mail-us,
        .call-now{
        text-decoration: none;
        color: var(--color-accent);
        }

        /* Responsive adjustments */

        @media(max-width: 480px){
          
            .nav-links a:not(.cta-button) {
                display: none; 
            }

            .contact-form-container {
                padding: 30px 20px;
                width: 55%;
            }

            .footer-container p{
                display: flex;
                flex-direction: column;
                gap: 1.1rem;
                
            }

            .btn{
                width: fit-content;
                margin: 0 auto !important;
            }
           
        }

        @media (max-width: 768px) {
            .contact-hero-content h1 {
                font-size: 2em;
            }
            .contact-hero-content p {
                font-size: 1em;
            }
            .contact-form-container {
                padding: 30px 20px;
                width: 95%;
            }
            .contact-form-container h2 {
                font-size: 1.8em;
            }
            
        }


  /* --- Footer & Contact --- */
        .footer {
            background-color: var(--color-dark);
            color: var(--color-light);
            text-align: center;
            padding: 3rem 0;            
        }

        .ready{
            font-size: 1.2rem; 
            font-weight: 500;
        }

        .wills-address{
            margin-top: 0.5rem; 
            font-size: 0.9rem;
        }
        .wills-desc{
            margin-top: 1.5rem;
        }

        /* .book{
            color: var(--color-accent);
            margin-left: 1rem;
        } */
        
        .footer a {
            color: var(--color-accent);
            text-decoration: none;
            margin: 0 0.5rem;
        }