/* -------------------------------------------------------------------------- */
/*                                  VARIABLES                                 */
/* -------------------------------------------------------------------------- */
:root {
    --color-primary: #B8860B; /* DarkGoldenrod - main actions, accents */
    --color-primary-darker: #936A09;
    --color-secondary: #D2B48C; /* Tan - lighter backgrounds, secondary elements */
    --color-accent: #556B2F;  /* DarkOliveGreen - links, highlights */
    --color-accent-lighter: #6B8E23; /* OliveDrab */
    --color-text: #3A3B3C; /* Dark grey for body text */
    --color-text-light: #FDFBF5; /* For text on dark backgrounds */
    --color-heading: #2c3e50; /* Dark blue/grey for headings */
    --color-light-bg: #FDFBF5; /* Very light beige/off-white */
    --color-dark-bg: #282c34; /* Darker, sophisticated grey for footer */
    --color-border: #e0e0e0;
    --color-success: #28a745;
    --color-error: #dc3545;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;

    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);

    --header-height: 80px; /* Adjust as needed */
    --transition-speed-fast: 0.2s;
    --transition-speed-normal: 0.4s;
    --transition-speed-slow: 0.6s;
}

/* -------------------------------------------------------------------------- */
/*                                 RESET & BASE                               */
/* -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Accessibility: Skip Navigation Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: white;
    padding: 8px;
    z-index: 2000;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}

html {
    scroll-behavior: smooth; /* Handled by JS for wider browser support and offset */
    font-size: 100%; /* 16px */
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll from animations */
}

/* Custom Scrollbar (WebKit browsers) */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-light-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* -------------------------------------------------------------------------- */
/*                                TYPOGRAPHY                                  */
/* -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-heading);
    line-height: 1.3;
    margin-bottom: 0.75em; /* More spacing after headings */
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem); /* Responsive font size */
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    font-weight: 600;
}

p {
    margin-bottom: 1.25rem;
    max-width: 70ch; /* Improve readability */
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-speed-fast) ease-in-out;
}
a:hover, a:focus {
    color: var(--color-accent-lighter);
    text-decoration: underline;
}

.section-title span, .hero-content h1 span {
    color: var(--color-primary);
}

.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }


/* -------------------------------------------------------------------------- */
/*                                  LAYOUT                                    */
/* -------------------------------------------------------------------------- */
.container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.section-padding {
    padding: 80px 0;
}
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.bg-light {
    background-color: var(--color-light-bg);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.bg-dark {
    background-color: var(--color-dark-bg);
    color: var(--color-text-light);
}

.grid-layout {
    display: grid;
    gap: 40px;
}
@media (min-width: 768px) {
    .grid-layout--about {
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
    }
}

/* -------------------------------------------------------------------------- */
/*                                  HEADER                                    */
/* -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    transition: padding var(--transition-speed-normal) ease, background-color var(--transition-speed-normal) ease, box-shadow var(--transition-speed-normal) ease;
}

.site-header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: block;
}

.logo img {
    max-height: 50px;
    width: auto;
    vertical-align: middle;
    transition: transform var(--transition-speed-fast) ease;
}

.site-header.scrolled .logo img {
    max-height: 40px; /* Slightly smaller when header is scrolled */
}

.main-nav .nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}
.main-nav .nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-heading);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
}
.main-nav .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-speed-fast) ease-in-out;
}
.main-nav .nav-links a:hover::after,
.main-nav .nav-links a:focus::after,
.main-nav .nav-links li.active a::after { /* For active link styling (JS needed) */
    width: 100%;
}
.main-nav .nav-links a:hover,
.main-nav .nav-links a:focus {
    color: var(--color-primary);
}


/* Hamburger Menu */
.menu-toggle {
    display: none; /* Hidden by default, shown on smaller screens */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001; /* Above nav links when they fly out */
}
.hamburger-line {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--color-heading);
    margin: 5px 0;
    border-radius: 3px;
    transition: transform var(--transition-speed-normal) ease-in-out, opacity var(--transition-speed-normal) ease-in-out;
}

/* Mobile Menu Styles */
@media (max-width: 850px) {
    .menu-toggle {
        display: block;
    }
    .main-nav .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen */
        width: min(70vw, 300px); /* Responsive width */
        height: 100vh;
        background-color: var(--color-light-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 20px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right var(--transition-speed-normal) ease-in-out;
    }
    .main-nav .nav-links.active {
        right: 0; /* Slide in */
    }
    .main-nav .nav-links a {
        font-size: 1.2rem;
    }

    /* Hamburger to X animation */
    .menu-toggle.active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* -------------------------------------------------------------------------- */
/*                                 HERO SECTION                               */
/* -------------------------------------------------------------------------- */
.hero-section {
    min-height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: var(--header-height); /* Account for fixed header */
    background-image: url('images/hero-background.webp'); /* REPLACE with your actual hero image */
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; /* Simple parallax effect */
    color: var(--color-text-light); /* Assuming dark image */
}

.hero-section::before { /* Darker overlay for text readability */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
    z-index: 1;
}

.hero-content {
    position: relative; /* To sit above the overlay */
    z-index: 2;
    max-width: 800px;
}
.hero-content h1 {
    color: #FFFFFF;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}
.hero-content .tagline {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 35px;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
    transition: background-color var(--transition-speed-fast) ease, transform var(--transition-speed-fast) ease, box-shadow var(--transition-speed-fast) ease;
}
.cta-button:hover, .cta-button:focus {
    background-color: var(--color-primary-darker);
    color: var(--color-text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.scroll-down-link {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 2.5rem;
    color: var(--color-text-light);
    text-decoration: none;
    opacity: 0.8;
    animation: bounce 2s infinite;
}
.scroll-down-link:hover {
    opacity: 1;
    color: var(--color-text-light);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* -------------------------------------------------------------------------- */
/*                                ABOUT SECTION                               */
/* -------------------------------------------------------------------------- */
.about-image-container img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    max-height: 450px;
}
.about-content .section-subtitle {
    font-size: 1.15rem;
    color: var(--color-text);
    font-weight: 400;
    margin-bottom: 1.5rem;
}
.link-arrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-accent);
    margin-top: 1.5rem;
    padding: 8px 0;
    position: relative;
}
.link-arrow .arrow-icon {
    margin-left: 8px;
    transition: transform var(--transition-speed-fast) ease;
}
.link-arrow:hover .arrow-icon, .link-arrow:focus .arrow-icon {
    transform: translateX(5px);
}
.link-arrow:hover {
    color: var(--color-accent-lighter);
}

/* -------------------------------------------------------------------------- */
/*                                VALUES SECTION                              */
/* -------------------------------------------------------------------------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}
.value-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-speed-normal) ease, box-shadow var(--transition-speed-normal) ease;
}
.value-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--color-primary); /* Assuming SVGs can take color */
}
.value-item h3 {
    margin-bottom: 0.5rem;
}

/* -------------------------------------------------------------------------- */
/*                               SERVICES SECTION                             */
/* -------------------------------------------------------------------------- */
.services-section .section-subtitle {
    margin-bottom: 3rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.service-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-speed-normal) ease, box-shadow var(--transition-speed-normal) ease;
}
.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}
.service-card-image-wrapper {
    height: 250px; /* Fixed height for consistency */
    overflow: hidden;
}
.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed-slow) ease;
}
.service-card:hover .service-card-image {
    transform: scale(1.1);
}
.service-card-content {
    padding: 25px;
}
.service-card h3 {
    margin-bottom: 0.75rem;
}

/* -------------------------------------------------------------------------- */
/*                               PROCESS SECTION                              */
/* -------------------------------------------------------------------------- */
.process-steps {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: space-between;
    align-items: flex-start; /* Align items to the top */
    margin-top: 3rem;
    gap: 20px; /* Gap for wrapping */
}
.step {
    flex: 1;
    min-width: 250px; /* Minimum width before wrapping */
    text-align: center;
    padding: 20px;
    position: relative;
}
.step-icon-wrapper {
    background-color: var(--color-primary);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 0 0 8px rgba(var(--color-primary-rgb, 184,134,11), 0.2); /* Define --color-primary-rgb if using rgba */
}
.step-icon {
    width: 40px;
    height: 40px;
    /* Assuming icons are white or will be styled via SVG */
    filter: brightness(0) invert(1); /* Makes black SVGs white */
}
.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-accent);
    color: var(--color-text-light);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    border: 3px solid var(--color-light-bg);
}
.step-content h3 {
    margin-bottom: 0.5rem;
}
.step-arrow {
    display: none; /* Hidden on mobile */
}

@media (min-width: 992px) {
    .process-steps {
        flex-wrap: nowrap; /* No wrapping on larger screens */
        gap: 0; /* Remove gap, arrows will space */
    }
    .step-arrow {
        flex-basis: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        color: var(--color-secondary);
        align-self: center; /* Vertically center arrow */
        padding-top: 60px; /* Align with step content roughly */
    }
    .step-arrow .arrow-visual {
        transition: transform var(--transition-speed-fast) ease;
    }
    .step-arrow:hover .arrow-visual {
        transform: scale(1.2);
    }
}


/* -------------------------------------------------------------------------- */
/*                               GALLERY SECTION                              */
/* -------------------------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 3rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    aspect-ratio: 1 / 1; /* Square items */
}
.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed-normal) ease, filter var(--transition-speed-normal) ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.8) saturate(1.2);
}
.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--color-primary-rgb, 184,134,11), 0.7); /* Define --color-primary-rgb */
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed-normal) ease;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}
.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* -------------------------------------------------------------------------- */
/*                               CONTACT SECTION                              */
/* -------------------------------------------------------------------------- */
.contact-section .section-subtitle {
    margin-bottom: 3rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 2rem;
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}
@media (min-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1.5fr;
    }
}

.contact-wrapper p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.contact-info h3, .contact-form-container h3 {
    margin-bottom: 2rem;
    color: var(--color-primary);
}
.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}
.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
}
.contact-socials { margin-top: 2rem; }
.contact-socials h4 { font-size: 1.1rem; margin-bottom: 1rem; }


/* Form Styling */
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.form-group .required {
    color: var(--color-primary);
    margin-left: 2px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-speed-fast) ease, box-shadow var(--transition-speed-fast) ease;
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb, 184,134,11), 0.25); /* Define --color-primary-rgb */
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
#contact-form button.cta-button { width: 100%; }

.form-message {
    margin-top: 1.5rem;
    padding: 15px;
    border-radius: var(--border-radius-sm);
    text-align: center;
}
.form-message.success {
    background-color: rgba(var(--color-success-rgb, 40,167,69), 0.1); /* Define --color-success-rgb */
    color: var(--color-success);
    border: 1px solid var(--color-success);
}
.form-message.error {
    background-color: rgba(var(--color-error-rgb, 220,53,69), 0.1); /* Define --color-error-rgb */
    color: var(--color-error);
    border: 1px solid var(--color-error);
}
.form-message h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}


/* -------------------------------------------------------------------------- */
/*                                   FOOTER                                   */
/* -------------------------------------------------------------------------- */
.site-footer {
    padding: 60px 0 0 0;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.footer-tagline {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-tagline h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.footer-tagline h3 span {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 800;
    vertical-align: baseline;
}

.footer-tagline p {
    font-size: 1.1rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-weight: 500;
}
.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-primary);
}
.footer-links ul {
    list-style: none;
}
.footer-links ul li {
    margin-bottom: 0.8rem;
}
.footer-links ul a, .footer-contact p a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color var(--transition-speed-fast) ease, padding-left var(--transition-speed-fast) ease;
}
.footer-links ul a:hover, .footer-links ul a:focus,
.footer-contact p a:hover, .footer-contact p a:focus {
    color: var(--color-text-light);
    padding-left: 5px;
    text-decoration: underline;
    text-decoration-color: var(--color-primary);
}
.footer-contact p {
    margin-bottom: 0.8rem;
    color: rgba(255,255,255,0.8);
}
.social-links {
    list-style: none;
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}
.social-links img {
    width: 24px;
    height: 24px;
    opacity: 0.8;
    transition: opacity var(--transition-speed-fast) ease, transform var(--transition-speed-fast) ease;
}
.social-links a:hover img, .social-links a:focus img {
    opacity: 1;
    transform: scale(1.1);
}
.footer-bottom {
    text-align: center;
    padding: 25px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}
.footer-bottom p {
    margin-bottom: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}


/* -------------------------------------------------------------------------- */
/*                                ANIMATIONS                                  */
/* -------------------------------------------------------------------------- */
[data-animate] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.8s; /* Slower for more graceful appearance */
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Playful ease */
}

[data-animate].is-visible {
    opacity: 1;
    transform: none !important; /* Override initial transform */
}

[data-animate="fade-in"] { transform: none; } /* No transform, just fade */
[data-animate="fade-in-up"] { transform: translateY(40px); }
[data-animate="fade-in-down"] { transform: translateY(-40px); }
[data-animate="fade-in-left"] { transform: translateX(-40px); }
[data-animate="fade-in-right"] { transform: translateX(40px); }
[data-animate="zoom-in"] { transform: scale(0.8); }

/* Add --color-*-rgb variables for rgba() usage if not already defined, e.g., */
/* For JS to use, or for direct rgba values in CSS: */
/* --color-primary-rgb: 184,134,11; */
/* --color-success-rgb: 40,167,69; */
/* --color-error-rgb: 220,53,69; */

/* Example for primary color if you need its RGB values for rgba() */
/* This isn't dynamically set by CSS, you'd have to hardcode it or use JS to parse it */
/*
:root {
    --color-primary-rgb-val: 184,134,11;
    --color-primary-rgba-20: rgba(var(--color-primary-rgb-val), 0.2);
    --color-primary-rgba-70: rgba(var(--color-primary-rgb-val), 0.7);
}
.step-icon-wrapper {
    box-shadow: 0 0 0 8px var(--color-primary-rgba-20);
}
.gallery-item-overlay {
    background-color: var(--color-primary-rgba-70);
}
*/
/* For simplicity, I've used explicit rgba values above, but using CSS vars for RGB components is cleaner if you do it consistently. */