/* FontAwesome Icons (for footer) */
        @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css");
        @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css");
    
        /* ----- 1. Global & Theme ----- */
        :root {
            --color-primary-black: #121212;
            --color-secondary-black: #1a1a1a;
            --color-surface: #2a2a2a;
            --color-primary-red: #e60000;
            --color-text-primary: #f0f0f0;
            --color-text-secondary: #aaaaaa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Sansation", serif;
			font-weight: 300;
            font-style: normal;
            background-color: var(--color-primary-black);
            color: var(--color-text-primary);
            line-height: 1.6;
            position: relative;
        }

        a {
            color: var(--color-primary-red);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: #ff4d4d;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* ----- 2. Logo Animation (No Header) ----- */
        .logo-container {
            padding: 20px 25px;
            background-color: var(--color-secondary-black);
            border-bottom: 1px solid #333;
            overflow: hidden; /* Contains the animation */
        }
        
        .logo-link-animated {
            display: inline-block;
        }

        .logo-img-animated {
            height: 85px;
            width: auto;
            object-fit: contain;
            /* Animation */
            animation: slideInFromLeft 1.2s ease-out forwards;
        }
        
        /* Logo animation keyframes */
        @keyframes slideInFromLeft {
            0% {
                transform: translateX(-100%);
                opacity: 0;
            }
            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* ----- 3. Two-Column Contact Layout ----- */
        .contact-container {
            display: flex;
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            gap: 50px;
        }
        
        .contact-left {
            flex: 1;
        }
        
        .contact-right {
            flex: 1.5; /* Make the form column slightly wider */
        }
        
        .contact-left h1 {
            font-size: 2.5rem;
            font-weight: 400;
            color: var(--color-text-primary);
            margin-bottom: 25px;
            border-bottom: 2px solid var(--color-primary-red);
            padding-bottom: 10px;
        }
        
        .contact-left p {
            font-size: 1.1rem;
            color: var(--color-text-secondary);
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .contact-left ul {
            list-style-type: none;
            padding-left: 0;
            color: var(--color-text-secondary);
            margin-top: 20px;
        }
        
        .contact-left li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            font-size: 1rem;
            line-height: 1.7;
        }
        
        .contact-left li::before {
            content: '–';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--color-primary-red);
            font-weight: 700;
        }


        /* ----- 4. Contact Form Styling ----- */
        .contact-right h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: 20px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 400;
            color: var(--color-text-secondary);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background: var(--color-secondary-black);
            border: 1px solid #444;
            color: #fff;
            border-radius: 5px;
            font-size: 1rem;
            font-family: "Sansation", serif;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--color-primary-red);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }
        
        #submit-btn {
            width: 100%;
            padding: 12px;
            background-color: var(--color-primary-red);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 700;
            transition: background-color 0.3s ease;
        }

        #submit-btn:hover {
            background-color: #c00;
        }
        
        #submit-btn:disabled {
            background-color: #555;
            cursor: not-allowed;
        }
        
        #form-status-message {
            width: 100%;
            padding: 12px;
            margin-top: 20px;
            border-radius: 5px;
            text-align: center;
            font-weight: 700;
            display: none;
        }
        
        #form-status-message.success {
            display: block;
            background-color: #2a5a2a;
            color: #d4f4d4;
            border: 1px solid #3c8d3c;
        }
        
        #form-status-message.error {
            display: block;
            background-color: var(--color-primary-red);
            color: #fff;
            border: 1px solid #ff4d4d;
        }
		
		        /* ----- 5. reCAPTCHA Disclaimer (NEW) ----- */
        .recaptcha-disclaimer {
            font-size: 0.8rem;
            color: var(--color-text-secondary);
            text-align: center;
            max-width: 600px;
            margin: 40px auto 0; /* Adds space above the footer */
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .recaptcha-disclaimer a {
            color: var(--color-text-secondary);
            text-decoration: underline;
        }
        
        .recaptcha-disclaimer a:hover {
            color: var(--color-text-primary);
        }

        /* ----- 5. Footer ----- */
        .main-footer {
            background-color: var(--color-secondary-black);
            border-top: 1px solid #333;
            padding: 40px 20px;
            margin-top: 40px;
            position: relative;
            z-index: 2;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: left;
        }

        .footer-logo {
            width: 150px;
            margin-bottom: 20px;
        }
        
        .footer-column {
            display: flex;
            flex-direction: column;
        }

        .footer-column h4 {
		    font-weight: 300;
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: #fff;
        }

        .footer-column a,
        .footer-column p {
            color: var(--color-text-secondary);
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        
        .footer-column a:hover {
            color: #fff;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            font-size: 1.5rem;
            color: var(--color-text-secondary);
        }
        
        .social-links a:hover {
            color: var(--color-primary-red);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
			font-weight: 300;
            color: var(--color-text-secondary);
        }
        
        /* ----- 6. Media Queries ----- */
        @media (max-width: 768px) {
            .contact-container {
                flex-direction: column;
                margin-top: 20px;
                gap: 30px;
            }
            
            .contact-left h1 {
                font-size: 2rem;
            }

            .logo-img-animated {
                height: 70px;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-logo {
                margin: 0 auto 20px;
            }
            .social-links {
                justify-content: center;
            }
        }
        
        /* ----- 7. New Content Animations ----- */
        .animate-slide-up {
            opacity: 0;
            transform: translateY(50px);
            animation: slideUp 1s ease-out 0.8s forwards;
        }

        @keyframes slideUp {
            0% {
                opacity: 0;
                transform: translateY(50px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }