/* =====================
            COLOR PALETTE & GLOBAL STYLES
            ===================== */
        :root {
            /* Gold/Bronze Palette */
            --gold-light: #D9B65D;
            --gold-deep: #A37728;
            --gold-blend: #8A5E1E;
            --dark-brown: #3B2915;
            --blue-phone: #1E90FF;

            /* General */
            --text-color: var(--dark-brown);
            --bg-light: #fefcf5;
            --bg-dark: var(--dark-brown);
            --font-family: 'Georgia', serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-family);
            color: var(--text-color);
            line-height: 1.6;
            scroll-behavior: smooth;
            background-color: white;
        }

        /* Reusable Button Style */
        .gradient-button {
            background-image: linear-gradient(to right, var(--gold-light) 0%, var(--gold-deep) 100%);
            color: white !important;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(138, 94, 30, 0.4);
            transition: all 0.3s ease-in-out;
            display: inline-block;
        }

        /* Button HOVER/Animation */
        .gradient-button:hover {
            background-image: linear-gradient(to right, var(--gold-deep) 0%, var(--gold-light) 100%);
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 6px 15px rgba(138, 94, 30, 0.6);
        }

        /* =====================
            HEADER & NAVIGATION
            ===================== */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background-color: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: padding 0.3s ease-in-out;
        }

        .header.scrolled {
            padding: 5px 0;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 5%;
        }

        .logo {
            font-size: 1.8em;
            color: var(--dark-brown);
            font-weight: bold;
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo img {
            width: 60px;
            height: 60px;
            margin-right: 10px;
            vertical-align: middle;
            transition: width 0.3s, height 0.3s;
        }

        .nav-list {
            list-style: none;
            display: flex;
        }

        .nav-list li a {
            text-decoration: none;
            color: var(--text-color);
            padding: 10px 12px;
            display: block;
            position: relative;
            transition: color 0.3s;
            font-size: 1em;
            font-weight: bold; /* Applied bold via CSS */
        }

        /* HOVER EFFECT (Menu underline) */
        .nav-list li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--gold-light);
            transition: width 0.3s ease;
        }
        .nav-list li a:hover {
            color: var(--gold-deep);
        }
        .nav-list li a:hover::after {
            width: 70%;
        }

        /* =====================
            SECTION BASE STYLES
            ===================== */
        section {
            padding: 100px 5%;
            min-height: 80vh;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }

        section.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        h2 {
            font-size: 2.5em;
            color: var(--gold-deep);
            margin-bottom: 40px;
            text-align: center;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .full-width-image {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 8px;
            margin: 20px auto;
            display: block;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        /* =====================
            HERO SECTION
            ===================== */
        .hero {
            padding-top: 150px;
            background-color: var(--bg-light);
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .hero-img {
            width: 100%;
            max-width: 900px;
            height: auto;
            border-radius: 12px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            object-fit: cover;
            aspect-ratio: 16/9;
            border: 5px solid var(--gold-light);
        }

        .hero h1 {
            color: var(--dark-brown);
            font-size: 2.5em;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        /* =====================
            SERVICES SECTION
            ===================== */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
            text-align: center;
            border-top: 5px solid var(--gold-light);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }

        .card h3 {
            color: var(--dark-brown);
            margin-bottom: 15px;
            font-size: 1.5em;
        }

        .service-icon {
            font-size: 3em;
            color: var(--gold-deep);
            margin-bottom: 15px;
        }

        /* =====================
            TIMING SECTION
            ===================== */
        #timing {
            background-color: var(--bg-light);
            text-align: center;
        }

        .timing-info {
            max-width: 700px;
            margin: 0 auto;
            border: 1px dashed var(--gold-light);
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }

        .timing-info p {
            font-size: 1.2em;
            margin: 10px 0;
        }

        .timing-info strong {
            color: var(--gold-deep);
            font-weight: 700;
        }

        /* =====================
            CONTACT SECTION & FORM
            ===================== */
        #contact {
            padding-bottom: 50px;
        }

        .contact-info-card {
            border-bottom: 5px solid var(--gold-deep) !important;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            padding: 25px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            margin-top: 30px;
        }

        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            transition: border-color 0.3s;
        }

        .contact-form input:focus, .contact-form textarea:focus {
            border-color: var(--gold-light);
            outline: none;
        }

        .contact-form button {
            width: 100%;
            transition: all 0.3s ease;
        }

        /* Form Fade-in Animation */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .contact-form-animation {
            animation: fadeInUp 1s ease-out;
            animation-delay: 0.2s;
            animation-fill-mode: both;
        }

        /* =====================
            FOOTER
            ===================== */
        footer {
            background-color: var(--bg-dark);
            color: var(--gold-light);
            text-align: center;
            padding: 30px 0;
            font-size: 1em;
        }

        /* =====================
            MEDIA QUERIES
            ===================== */

        /* Tablet Devices */
        @media (max-width: 992px) {
            .navbar {
                padding: 10px 3%;
            }
            .nav-list li a {
                padding: 8px 10px;
                font-size: 0.9em;
            }
            .logo {
                font-size: 1.4em;
            }
            .logo img {
                width: 50px;
                height: 50px;
            }
            .card-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }
            h2 {
                font-size: 2em;
                margin-bottom: 30px;
            }
            .hero h1 {
                font-size: 2em;
            }
        }

        /* Mobile Devices */
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                align-items: flex-start;
                padding: 10px 5%;
            }
            .nav-list {
                margin-top: 10px;
                flex-wrap: wrap;
                justify-content: center;
                width: 100%;
            }
            .nav-list li a {
                padding: 8px 15px;
                font-size: 1em;
            }
            .logo {
                font-size: 1.5em;
                margin-bottom: 5px;
            }
            .logo img {
                width: 45px;
                height: 45px;
            }
            .hero {
                padding-top: 180px;
            }
            .hero h1 {
                font-size: 1.8em;
            }
            h2 {
                font-size: 1.6em;
                margin-bottom: 25px;
            }
            section {
                padding: 80px 5%;
            }
            .card-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            .timing-info p {
                font-size: 1em;
            }
        }