﻿ /* Banner */
        .contact-banner {
            background: url("img/contactbanner.jpg") center/cover no-repeat;
            height: 300px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-overlay {
            background: rgba(0,0,0,0.5);
            position: absolute;
            inset: 0;
        }

        .banner-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
        }

        .banner-content h1 {
            font-weight: 700;
            font-size: 42px;
        }

        /* Contact cards */
        .contact-card {
            border: 1px solid #eee;
            border-radius: 15px;
            padding: 25px;
            background: #fff;
            transition: 0.3s;
        }

        .contact-card:hover {
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
        }

        .contact-icon {
            font-size: 35px;
            color: #D4AF37;
            margin-bottom: 10px;
        }

        /* Form styling */
        .contact-form input,
        .contact-form textarea {
            border-radius: 10px;
        }

        .btn-gold {
            background: #D4AF37;
            border: none;
            font-weight: 600;
            color: #fff;
        }

        .btn-gold:hover {
            background: #bb9c2a;
        }

        footer a {
            text-decoration: none;
            color: #555;
        }

        footer a:hover {
            text-decoration: underline;
        }
