/* ======== GLOBAL STYLES & VARIABLES ======== */
:root {
    /* Colors from your logo */
    --color-primary-dark: #2d3748; /* Dark Blue/Grey Background */
    --color-accent-red: #d90429;   /* Red Accent */
    --color-light: #ffffff;        /* White Text & Elements */
    
    /* Utility Colors */
    --color-text-dark: #333333; /* For text on light backgrounds */
    --color-text-light: #f4f4f4;/* For text on dark backgrounds */
    --color-footer-bg: #1a202c; /* Slightly darker for footer */

    /* Fonts */
    --font-primary: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; }
h3 { font-size: 1.75rem; color: var(--color-accent-red); }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--color-accent-red);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ======== UTILITY/COMPONENT CLASSES ======== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.btn-primary {
    background-color: var(--color-accent-red);
    color: var(--color-light);
    border: 2px solid var(--color-accent-red);
}

/* === THIS RULE IS NOW FIXED === */
.btn-primary:hover {
    background-color: var(--color-light); /* Changed from transparent */
    color: var(--color-accent-red);
}
/* ================================ */

.btn-secondary {
    background-color: transparent;
    color: var(--color-light);
    border: 2px solid var(--color-light);
}

.btn-secondary:hover {
    background-color: var(--color-light);
    color: var(--color-primary-dark);
}

/* ======== HEADER & NAVIGATION ======== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(45, 55, 72, 0.9); /* Semi-transparent */
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo-link {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 50px; /* Adjust as needed */
    width: auto;
}

header nav ul.desktop-nav {
    display: flex;
    align-items: center; /* Vertically align all nav items */
    list-style: none;
}

header nav ul.desktop-nav li {
    margin-left: 1.5rem;
}

header nav ul.desktop-nav li a {
    color: var(--color-light);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

header nav ul.desktop-nav li a:hover {
    color: var(--color-accent-red);
}

/* Special CTA button in nav */
.nav-cta {
    background-color: var(--color-accent-red);
    border-radius: 5px;
    padding: 0.5rem 1rem !important;
}
.nav-cta:hover {
    color: var(--color-light) !important;
    opacity: 0.8;
}

/* ======== "BACK TO TOP" NAV BUTTON ======== */

/* This is the <a> tag */
#nav-btt-link {
    padding: 0.5rem !important;
    width: 40px; /* Force square shape */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    /* It already gets .nav-cta styles (bg-color, etc) */
}

/* This is the <li> parent */
#nav-btt-item {
    width: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease-in-out;
    
    /* Remove default margin when hidden */
    margin-left: 0; 
    overflow: hidden;
}

#nav-btt-item.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    margin-left: 1.5rem; /* Add margin when visible */
}
/* ============================================== */


/* Mobile Nav Toggle (Hamburger) */
.mobile-nav-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    color: var(--color-light);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2100; /* Above overlay content, but below overlay itself */
}

/* ======== MOBILE NAV MENU OVERLAY (New) ======== */
.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Start off-screen */
    width: 100%;
    height: 100vh;
    background-color: rgba(26, 32, 44, 0.95); /* Darker, semi-transparent */
    backdrop-filter: blur(10px);
    z-index: 2000;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    
    /* For centering the nav links */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* The Opaque Logo Background */
.mobile-nav-menu::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; /* Adjust size as needed */
    max-width: 400px;
    height: 400px; /* Use height/width to control aspect ratio */
    /* Updated Path: ../ to go up from css folder */
    background-image: url('../images/logo.jpg'); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05; /* Very opaque */
    z-index: -1; /* Behind the nav links */
}

/* Active state for the menu (toggled by JS) */
.mobile-nav-menu.active {
    right: 0; /* Slides in from the right */
}

/* Close button (X) */
.mobile-nav-close {
    position: absolute;
    top: 1.8rem;
    right: 1.8rem;
    background: none;
    border: none;
    color: var(--color-light);
    font-size: 2rem;
    cursor: pointer;
}

/* Links inside the mobile menu */
.mobile-nav-menu nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-nav-menu nav li {
    margin: 2rem 0;
}

.mobile-nav-menu nav a {
    color: var(--color-light);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-nav-menu nav a:hover {
    color: var(--color-accent-red);
}


/* ======== HERO SECTION ======== */
.hero-section {
    height: 100vh; /* Covers 100% of viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    
    /* Updated Path: ../ to go up from css folder */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero-bg.webp') no-repeat center center/cover;
    color: var(--color-light); /* Ensure text is visible */
}

.hero-content {
    max-width: 800px;
}
.hero-content h1 {
    color: var(--color-light);
    font-weight: 900;
}
.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}
.about-section {
    background-color: var(--color-light);
    color: var(--color-text-dark);
}
.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}
.about-row:nth-child(even) .about-text {
    order: 2;
}
.about-row:nth-child(even) .about-image {
    order: 1;
}
.about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.about-text p {
    font-size: 1.1rem;
}

/* ======== PORTFOLIO SECTION (SLIDER) ======== */
.portfolio-section {
    /* CHANGED: Use a lighter background, a very light gray or off-white */
    background-color: #f8f8f8; /* A subtle off-white */
    color: var(--color-text-dark); /* Ensure text is dark on light background */
}

.slider-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 8px; /* Rounded corners for the "window" */
    /* NEW: Add a subtle shadow to lift the slider off the page */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* This is the new slide style */
.portfolio-item {
    flex: 0 0 100%;
    min-width: 100%;
    
    /* CHANGED: Make the individual slide background white */
    background-color: var(--color-light); 
    padding: 3rem;

    /* We can use grid *inside* the slide */
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
    align-items: center;
}

/* Copied from old portfolio styles */
.portfolio-image {
    width: 100%;
    max-width: 300px; /* Constrain logo size */
    margin: 0 auto;
    padding: 2rem;
    /* CHANGED: Background for the image box is now transparent */
    background: transparent;
    border-radius: 8px;
}

.portfolio-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.portfolio-content h3 {
    margin-top: 0;
    /* NEW: Ensure heading color stands out on white */
    color: var(--color-accent-red); 
}

.portfolio-content p {
    font-size: 1.1rem;
}

.portfolio-quote {
    font-style: italic;
    font-size: 1.2rem;
    padding-left: 1.5rem;
    /* Keep accent red border */
    border-left: 4px solid var(--color-accent-red);
    margin-top: 2rem;
    /* CHANGED: Make quote text a slightly lighter dark for subtle contrast */
    color: var(--color-text-dark); 
    opacity: 0.85; /* Slightly fade it */
}

.portfolio-quote footer {
    font-style: normal;
    font-weight: 700;
    font-size: 1rem;
    /* Keep accent red */
    color: var(--color-accent-red);
    margin-top: 0.5rem;
    
    /* === FIX: Reset inherited footer styles === */
    background-color: transparent;
    padding: 0; 
}
/* ==================================== */

/* Re-add slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* CHANGED: Use accent red for button background */
    background: var(--color-accent-red);
    /* CHANGED: Use light for text/icon color */
    color: var(--color-light); 
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    /* Keep shadow for depth */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.slider-arrow:hover {
    /* CHANGED: On hover, reverse colors for visual feedback */
    background: var(--color-primary-dark);
    color: var(--color-light);
}
.slider-arrow.prev-arrow {
    left: -20px;
}
.slider-arrow.next-arrow {
    right: -20px;
}

.contact-section {
    background-color: var(--color-light);
    color: var(--color-text-dark);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.contact-image img {
    border-radius: 8px;
    height: 100%;
    object-fit: cover;
}
.contact-form-container {
    position: relative; /* Needed for success/error message layout */
}
.contact-form-container h3 {
    margin-top: 0;
}
.contact-form .form-group {
    margin-bottom: 1.5rem;
}
.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
}
.contact-form button[type="submit"] {
    width: 100%;
    font-size: 1rem;
}

/* ======== SERVICES SECTION (NEW) ======== */
.services-section {
    background-color: var(--color-light);
    color: var(--color-text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: #f9f9f9;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: var(--color-accent-red);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
}
/* ============================================== */

/* ======== TEXT PAGE (Privacy) (NEW) ======== */
.text-page-container {
    max-width: 900px;
    margin: 0 auto;
    /* Using rems for padding and margin */
    padding: 4rem 3rem;
    background-color: var(--color-light);
    color: var(--color-text-dark);
    border-radius: 8px;
    margin-top: 5rem;
    margin-bottom: 5rem;
}
.text-page-container h1 {
    color: var(--color-accent-red);
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}
.text-page-container h2 {
    color: var(--color-primary-dark);
    font-size: 1.75rem;
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.text-page-container p,
.text-page-container li {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.text-page-container ul {
    list-style-position: inside;
    padding-left: 1rem;
}
/* This re-uses the style from success.html */
.text-page-container .btn-home {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    background-color: var(--color-accent-red);
    color: var(--color-light);
    border: 2px solid var(--color-accent-red);
    transition: all 0.3s ease;
    margin-top: 2rem;
}
.text-page-container .btn-home:hover {
    background-color: transparent;
    color: var(--color-accent-red);
}
/* ========================================= */

/* ======== CASE STUDY PAGES (NEW) ======== */

/* This re-uses the .text-page-container but makes it full width */
.text-page-container {
    max-width: 1200px; /* Use the full .container width */
}

.case-study-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

/* === UPDATED: Added separator for H1 === */
.case-study-content h1 {
    text-align: left; /* Override default centered h1 */
    padding-bottom: 1rem; /* Add space below */
    border-bottom: 2px solid #eee; /* Add a subtle separator */
    margin-bottom: 2rem; /* Add space above the content */
}

.case-study-content h2 {
    text-align: left; /* Override default centered h2 */
    color: var(--color-primary-dark);
    margin-top: 2rem;
}

.case-study-content ul {
    list-style-position: inside;
    padding-left: 1rem;
}
.case-study-content ul li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* === NEW: Styles to unify the sidebar into a single card === */
.case-study-sidebar {
    background: #f8f8f8; /* Light grey card background */
    border-radius: 8px; /* Rounded corners for the card */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07); /* Softer shadow */
    overflow: hidden; /* Clips the image corners */
}

/* === UPDATED: Image fits cleanly at the top of the card === */
.case-study-sidebar .case-study-image {
    width: 100%;
    border-radius: 0; /* Remove individual radius */
    box-shadow: none; /* Remove individual shadow */
    margin-bottom: 0; /* Remove bottom margin */
}

/* === UPDATED: Project details now sit inside the card === */
.case-study-sidebar .project-details {
    background: none; /* Remove redundant background */
    padding: 2rem 2rem 1.5rem 2rem; /* Add padding */
    border-radius: 0; /* Remove individual radius */
    margin-bottom: 1.5rem; /* Space before quote */
}

.case-study-sidebar .project-details h3 {
    color: var(--color-accent-red);
    margin-top: 0;
    margin-bottom: 1.5rem;
}
.case-study-sidebar .project-details p {
    margin-bottom: 0.5rem;
}

/* === UPDATED: Quote now sits inside the card === */
.case-study-sidebar .portfolio-quote {
    font-size: 1.1rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--color-accent-red);
    color: var(--color-text-dark);
    /* Add margin to pad it inside the card */
    margin: 0 2rem 2rem 2rem; 
}
.case-study-sidebar .portfolio-quote footer {
    font-size: 1rem;
    color: var(--color-accent-red);
    background: none;
    padding: 0;
    margin-top: 0.5rem;
}

/* Responsive styles for case study pages */
@media (max-width: 900px) {
    .case-study-grid {
        grid-template-columns: 1fr;
    }
    .case-study-sidebar {
        /* Move sidebar to top on mobile */
        grid-row: 1; 
    }
}

/* ======== TESTIMONIALS SECTION (NEW) ======== */
.testimonials-section {
    background-color: var(--color-primary-dark); /* Match the hero section bg */
    color: var(--color-text-light); /* Light text on dark background */
}

.testimonials-section h2 {
    color: var(--color-light); /* Make H2 light */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: #f8f8f8; /* Light card background */
    color: var(--color-text-dark); /* Dark text on light card */
    padding: 2.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card .testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--color-accent-red);
}

.testimonial-card .testimonial-author {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-accent-red);
    text-align: right;
    
    /* === FIX: Reset inherited footer styles === */
    background-color: transparent;
}

/* ======== FOOTER SECTION ======== */
footer {
    background-color: var(--color-footer-bg);
    color: var(--color-text-light);
    padding: 4rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}
.footer-col {
    padding: 1rem;
}
.footer-left {
    text-align: left;
}
.footer-left p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.footer-left a {
    color: var(--color-light);
    transition: color 0.3s ease;
}
.footer-left a:hover {
    color: var(--color-accent-red);
}
.footer-middle {
    text-align: center;
}
.footer-logo {
    max-width: 180px;
    margin: 0 auto;
}
.footer-right {
    text-align: right;
}
.footer-right ul {
    list-style: none;
}
.footer-right ul li {
    margin-bottom: 0.5rem;
}
.footer-right ul li a {
    color: var(--color-light);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-right ul li a:hover {
    color: var(--color-accent-red);
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #aaa;
}


/* ======== RESPONSIVE DESIGN ======== */
@media (max-width: 900px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .about-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-row:nth-child(even) .about-text,
    .about-row:nth-child(even) .about-image {
        order: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item {
        grid-template-columns: 1fr; /* Stack image and text inside slide */
        padding: 2rem;
        gap: 2rem;
    }
    .portfolio-image {
        max-width: 200px; /* Make logo smaller on mobile */
    }
    
    /* Re-add arrow positioning */
    .slider-arrow {
        top: auto;
        bottom: -60px; /* Position below the slider */
        transform: translateY(0);
    }
    .slider-arrow.prev-arrow { left: 35%; }
    .slider-arrow.next-arrow { right: 35%; }
    
    /* Add padding to the section to make room for arrows */
    .portfolio-section {
        padding-bottom: 10rem; 
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .text-page-container {
        padding: 2.5rem 1.5rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .text-page-container h1 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-left, .footer-right {
        text-align: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Hide desktop nav, show mobile toggle */
    header nav ul.desktop-nav {
        display: none;
    }
    .mobile-nav-toggle {
        display: block;
    }

    /* Remove stacked nav from header */
    header nav {
        flex-direction: row; /* Ensure it stays a row */
        height: 80px;
        padding: 0;
    }

    /* Adjust padding for fixed header */
    .hero-section {
        padding-top: 80px; /* Only the header height */
    }
}

/* ======== SCROLL ANIMATION ======== */

/* 1. This is the initial "hidden" state for our elements */
.fade-in-element {
    opacity: 0;
    /* You can also make it slide in from below */
    transform: translateY(30px);
    /* This is the animation part */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* 2. This is the "visible" state that we'll add with JavaScript */
.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======== COOKIE CONSENT BANNER (NEW) ======== */
.cookie-banner {
    position: fixed;
    bottom: -100%; /* Start hidden off-screen */
    left: 0;
    width: 100%;
    background-color: var(--color-footer-bg); /* Matches your footer */
    color: var(--color-text-light);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 5000;
    transition: bottom 0.5s ease-in-out;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-banner.visible {
    bottom: 0; /* Slides in */
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: #f0f0f0;
}

.cookie-banner .btn {
    margin: 0; /* Override default button margin */
    flex-shrink: 0; /* Prevent button from shrinking */
}

.cookie-banner .cookie-link {
    color: var(--color-light);
    font-weight: 700;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}
.cookie-banner .cookie-link:hover {
    opacity: 0.8;
}

/* Responsive styles for the banner */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 1.5rem 1rem;
        gap: 1rem;
    }
    .cookie-banner p {
        text-align: center;
        font-size: 0.85rem;
    }
}

/* ======== AJAX FORM STYLES (NEW) ======== */

/* This is the error message that appears above the button */
.form-error-message {
    background-color: #ffebe9;
    color: #c0392b;
    border: 1px solid #c0392b;
    padding: 0.75rem 1.0rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

/* This is the checkmark icon that appears on success */
.form-success-icon {
    font-size: 4rem;
    color: var(--color-accent-red);
    text-align: center;
    margin-top: 1.5rem;
}

/* This is the "Sending..." state for the button */
.contact-form button[type="submit"]:disabled {
    background-color: #ccc;
    border-color: #ccc;
    color: #666;
    cursor: not-allowed;
    opacity: 0.7;
}