        /* --- Color Variables --- */
        :root {
            --bg-dark-teal: #0e2a32;
            --text-cream: #f5e6c8;
            --accent-gold: #d4af37;
            --card-darker: #1a3c46;
            --shadow-color: rgba(0, 0, 0, 0.5);
        }

        /* --- Global Styles --- */
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-dark-teal);
            margin: 0;
            padding: 0;
            color: var(--text-cream);
            line-height: 1.6;
            min-height: 100vh; /* Ensure full viewport height */
        }

        /* --- Contact Section Styles --- */
        .contact-section {
            padding: 80px 20px;
            width: 85%;
            margin: 0 auto;
            border-top: 2px solid #d4af37;
        }

        .contact-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 50px;
            text-align: center;
        }

        /* Responsive Grid for Columns */
        .contact-grid {
            display: grid;
            gap: 40px;
            grid-template-columns: 1fr; /* Mobile: 1 column */
            text-align: left;
        }

        @media (min-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr 1.5fr; /* Desktop: Two columns, form slightly wider */
            }
        }

        /* --- Left Column: Info --- */
        .info-column h3 {
            color: var(--accent-gold);
            font-size: 1.8rem;
            margin-top: 0;
            margin-bottom: 25px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .contact-icon img {
            width: 25px;
            margin-right: 10px;
        }

        .contact-details p {
            margin: 0;
            font-size: 1rem;
        }

        .contact-details a {
            color: var(--text-cream);
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-details a:hover {
            color: var(--accent-gold);
        }

        /* --- Social Icons (using Emojis as icons) --- */
        .social-icons {
            margin-top: 40px;
            display: flex;
            gap: 20px;
        }

        .social-icon {
            font-size: 2rem;
            color: var(--text-cream);
            transition: transform 0.3s, color 0.3s;
            text-decoration: none;
        }

        .social-icon:hover {
            transform: translateY(-3px);
            color: var(--accent-gold);
        }

        /* --- Right Column: Form --- */
        .contact-form {
            display: flex;
            flex-direction: column;
            padding: 30px;
            background-color: var(--card-darker);
            border-radius: 12px;
            box-shadow: 0 4px 10px var(--shadow-color);
        }

        .contact-form label {
            margin-bottom: 5px;
            font-weight: 600;
            color: var(--accent-gold);
        }

        .contact-form input,
        .contact-form textarea {
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid var(--accent-gold);
            border-radius: 6px;
            background-color:wheat;
            color: black;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: var(--text-cream);
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 150px;
        }

        .contact-form button {
            background-color: var(--accent-gold);
            color: var(--bg-dark-teal);
            border: none;
            padding: 15px 25px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 6px;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.1s;
            margin-top: 10px;
        }

        .contact-form button:hover {
            background-color: #e0b441; /* Slightly brighter gold */
            transform: translateY(-1px);
        }

                /* --- Floating Call Button (New) --- */
        .call-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 120px; /* Positioned to the left of the WhatsApp button */
            background-color: rgb(49, 225, 49); 
            color: var(--bg-dark-teal); /* Dark text on gold background */
            border-radius: 50px;
            text-align: center;
            font-size: 2.5rem;
            line-height: 60px;
            box-shadow: 0 4px 10px var(--shadow-color);
            z-index: 1000;
            transition: background-color 0.3s, transform 0.3s;
            text-decoration: none;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: -40px;
        }

        .call-float:hover {
            background-color: #e0b441; /* Slightly brighter gold */
            transform: scale(1.05);
        }

        /* Adjust button position for smaller screens */
        @media (max-width: 600px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 2rem;
                line-height: 50px;
            }
            .call-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 80px; /* 20px (gap) + 50px (whatsapp) + 10px (gap) = 80px */
                font-size: 2rem;
                line-height: 50px;
            }
        }