:root {
    --primary-color: #0A4F70; /* Deep Corporate Blue */
    --primary-color-darker: #073b55;
    --primary-color-rgb: 10, 79, 112;
    --secondary-color: #F9A825; /* Bright Gold/Orange Accent */
    --secondary-color-darker: #e09400;
    --secondary-color-rgb: 249, 168, 37;
    --accent-color-light: #FFCA2C; /* Lighter Gold */

    --dark-color: #222831;
    --light-color: #F8F9FA;
    --white-color: #FFFFFF;
    --off-white-color: #FDFDFD;

    --text-color-dark: #333333;
    --text-color-headings: #222222;
    --text-color-light: var(--white-color);
    --text-color-muted: #6c757d;

    --font-family-headings: 'Roboto', sans-serif;
    --font-family-base: 'Lato', sans-serif;

    --border-radius-sm: 0.25rem;
    --border-radius-main: 0.5rem;
    --border-radius-lg: 0.8rem;
    --border-radius-pill: 50px;

    --box-shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.08);
    --box-shadow-volumetric: 0 8px 16px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.08);
    --box-shadow-volumetric-hover: 0 12px 24px rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.1);
    --box-shadow-inset: inset 0 2px 4px rgba(0,0,0,0.06);

    --transition-speed: 0.3s;
}

/* Global Styles */
body {
    font-family: var(--font-family-base);
    color: var(--text-color-dark);
    background-color: var(--white-color);
    line-height: 1.7;
    font-size: 1rem;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-headings);
    font-weight: 700;
    color: var(--text-color-headings);
    margin-bottom: 0.75em;
    line-height: 1.3;
}

h1 { font-size: 2.8rem; font-weight: 900;}
h2 { font-size: 2.2rem; } /* Section titles */
h3 { font-size: 1.7rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-color-dark);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease, background-color var(--transition-speed) ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

section {
    padding: 4rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    color: var(--text-color-headings);
    margin-bottom: 3rem;
    font-weight: 900;
}

.section-bg-light {
    background-color: var(--light-color);
}

.section-bg-dark {
    background-color: var(--dark-color);
    color: var(--text-color-light);
}
.section-bg-dark .section-title,
.section-bg-dark h1, .section-bg-dark h2, .section-bg-dark h3, .section-bg-dark h4, .section-bg-dark h5, .section-bg-dark h6,
.section-bg-dark p,
.section-bg-dark .lead {
    color: var(--text-color-light);
}
.section-bg-dark p:not(.lead) {
    color: rgba(255,255,255,0.8);
}
.section-bg-dark a {
    color: var(--secondary-color);
}
.section-bg-dark a:hover {
    color: var(--accent-color-light);
}


.parallax-bg {
    background-attachment: fixed; /* Basic parallax, JS can enhance */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Buttons - Global styling */
.btn, button, input[type="submit"], input[type="button"] {
    padding: 0.75rem 1.75rem;
    font-family: var(--font-family-headings);
    font-weight: 700;
    border-radius: var(--border-radius-pill);
    transition: all var(--transition-speed) ease;
    box-shadow: var(--box-shadow-soft);
    border: none;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-volumetric);
}
.btn:focus, button:focus, input[type="submit"]:focus, input[type="button"]:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb), 0.3), var(--box-shadow-volumetric);
}

.btn-primary, .voluminous-button { /* .voluminous-button acts as primary */
    background-color: var(--primary-color);
    color: var(--text-color-light) !important; /* Important to override bootstrap defaults if needed */
}
.btn-primary:hover, .voluminous-button:hover {
    background-color: var(--primary-color-darker);
    color: var(--text-color-light) !important;
}

.btn-secondary, .voluminous-button-secondary { /* .voluminous-button-secondary acts as secondary */
    background-color: var(--secondary-color);
    color: var(--dark-color) !important;
}
.btn-secondary:hover, .voluminous-button-secondary:hover {
    background-color: var(--secondary-color-darker);
    color: var(--dark-color) !important;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--text-color-light);
}


/* Forms - Volumetric Inputs */
.voluminous-input {
    border-radius: var(--border-radius-main);
    box-shadow: var(--box-shadow-inset);
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
    transition: border-color var(--transition-speed) ease-in-out, box-shadow var(--transition-speed) ease-in-out;
    font-size: 1rem;
    width: 100%;
}
.voluminous-input:focus {
    border-color: var(--primary-color);
    box-shadow: var(--box-shadow-inset), 0 0 0 0.2rem rgba(var(--primary-color-rgb), 0.25);
    outline: 0;
}
.form-label {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color-dark);
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.navbar-brand {
    font-family: var(--font-family-headings);
    font-weight: 900 !important;
    font-size: 1.8rem !important;
    color: var(--primary-color) !important;
}
.header .nav-link {
    font-family: var(--font-family-headings);
    font-weight: 500;
    color: var(--text-color-dark) !important;
    margin: 0 0.3rem;
    padding: 0.6rem 1rem !important;
    border-radius: var(--border-radius-pill);
    font-size: 0.9rem;
    text-transform: uppercase;
}
.header .nav-link:hover,
.header .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(var(--primary-color-rgb), 0.08);
}
.navbar-toggler {
    border: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(var(--primary-color-rgb),1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* Hero Section */
.hero-section {
    padding: 6rem 0; /* Adjusted from 8rem for balance */
    color: var(--text-color-light);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-section h1 {
    color: var(--text-color-light) !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    font-size: 3.5rem;
}
.hero-section .lead {
    color: var(--text-color-light) !important;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
    font-size: 1.3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.hero-section .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Cards - General Volumetric Style */
.voluminous-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-volumetric);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%; /* For consistent height in rows */
}
.voluminous-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--box-shadow-volumetric-hover);
}
.card-image { /* General container for images in cards */
    width: 100%;
    text-align: center; /* Center inline-block or block images with margin auto */
    position: relative; /* For overlays or absolute positioned elements */
    overflow: hidden; /* Crucial for object-fit */
}
.card-image img {
    display: block; /* Remove extra space below image */
    max-width: 100%;
    height: auto;
    margin-left: auto; /* Center block images if width is less than container */
    margin-right: auto;
}
.card-content, .card-body { /* Standard Bootstrap .card-body will also pick this up */
    padding: 1.75rem;
    flex-grow: 1; /* Allows card body to fill space in flex column */
    display: flex;
    flex-direction: column;
    text-align: left; /* Default text align */
}
.card-title { /* Standard Bootstrap .card-title */
    font-family: var(--font-family-headings);
    color: var(--primary-color);
    font-weight: 700;
}

/* Specific Card Types */

/* Our Process Section */
.process-card {
    text-align: center;
    align-items: center; /* Center content for flex column */
}
.process-card .card-image { /* For the icon image */
    padding-top: 1rem; /* Space above icon */
    height: auto; /* Natural height for icon container */
}
.process-card .process-icon {
    width: 80px; /* As per HTML example width, adjust if needed */
    height: 80px;
    object-fit: contain; /* Ensure icon is not distorted */
    margin-bottom: 1rem;
}
.process-card .card-title {
    margin-top: 0.5rem;
    font-size: 1.3rem;
}
.progress {
    height: 12px;
    border-radius: var(--border-radius-pill);
    background-color: #e9ecef;
}
.progress-bar {
    border-radius: var(--border-radius-pill);
}

/* Portfolio Section */
.portfolio-card .card-image { /* Container for the slider image */
    height: 280px; /* Fixed height for uniform slider items */
}
.portfolio-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers the area, cropping if necessary */
}
.portfolio-card .card-img-overlay { /* Style the overlay */
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg); /* Match card bottom radius */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}
.portfolio-card .card-img-overlay .card-title {
    color: var(--text-color-light);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}
.portfolio-card .card-img-overlay .card-text {
    color: rgba(255,255,255,0.85);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    font-size: 0.9rem;
}
#portfolioSlider .carousel-indicators button {
    background-color: var(--primary-color);
    opacity: 0.7;
}
#portfolioSlider .carousel-indicators button.active {
    opacity: 1;
    background-color: var(--secondary-color);
}
#portfolioSlider .carousel-control-prev-icon,
#portfolioSlider .carousel-control-next-icon {
    background-color: rgba(var(--dark-color-rgb, 0,0,0), 0.5); /* dark-color-rgb needs to be defined if not already */
    border-radius: 50%;
    padding: 1.2rem; /* Increase clickable area and visual size */
    background-size: 50% 50%;
}


/* Pricing Section */
.pricing-card {
    text-align: center;
    align-items: center;
}
.pricing-card .card-header {
    font-family: var(--font-family-headings);
    font-weight: 900;
    font-size: 1.4rem;
    padding: 1.2rem 1rem;
    width: 100%;
    border-bottom: 1px solid #eee;
}
.pricing-card .price {
    font-family: var(--font-family-headings);
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 900;
    margin: 1rem 0;
}
.pricing-card .price .fs-6 {
    font-size: 1rem !important;
    color: var(--text-color-muted);
    font-weight: normal;
}
.pricing-card ul {
    padding-left: 0;
    margin-bottom: 1.5rem;
}
.pricing-card ul li {
    padding: 0.6rem 0;
    color: var(--text-color-dark);
    font-size: 0.95rem;
}
.pricing-card.shadow-lg { /* Emphasize popular plan */
    border: 2px solid var(--primary-color);
}


/* Customer Stories (Testimonials) Section */
.testimonial-card {
    background-color: var(--off-white-color); /* Slightly different bg */
}
.testimonial-card .card-image img { /* Avatar */
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin: 0 auto; /* Center if col-md-3 is text-center */
}
.testimonial-card .card-text {
    font-style: italic;
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}
.testimonial-card .blockquote-footer {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: bold;
}
.testimonial-card .blockquote-footer cite {
    font-style: normal;
    color: var(--text-color-muted);
    font-weight: normal;
}
#customerStoriesSlider .carousel-control-prev-icon,
#customerStoriesSlider .carousel-control-next-icon {
    filter: invert(1) grayscale(100) brightness(1.5); /* Make arrows dark on light bg */
}


/* Accolades Section */
.accolade-card {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
}
.accolade-card .card-image {
    height: 80px; /* Fixed height for logo container */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.accolade-card .card-image img {
    max-height: 100%; /* Logo scales within container */
    max-width: 100%;
    width: auto;
    object-fit: contain;
}
.accolade-card .card-content p {
    font-weight: bold;
    color: var(--text-color-dark);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Events Section */
.event-card .card-image { /* This applies to the img.card-img-top parent if it were .card-image */
    height: 220px;
    overflow: hidden;
}
.event-card img.card-img-top { /* Directly style the image as per HTML */
    height: 220px;
    object-fit: cover;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0; /* Match card top radius */
}
.event-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.event-card .card-title {
    font-size: 1.35rem;
}
.event-card .card-text small {
    color: var(--text-color-muted);
    font-weight: bold;
}

/* Sustainability Section */
#sustainability .image-container img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-soft);
}
#sustainability ul { padding-left: 0.5rem; }
#sustainability ul li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
}
#sustainability ul li i { /* If FontAwesome or similar icons are used */
    margin-right: 0.75rem;
    color: var(--secondary-color); /* Or a green like #28a745 */
    font-size: 1.2em;
}

/* External Resources Section */
.resource-card .card-body {
    text-align: left;
}
.resource-card .card-title a {
    color: var(--primary-color);
    font-size: 1.15rem;
}
.resource-card .card-title a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}
.resource-card .card-text {
    font-size: 0.9rem;
    color: var(--text-color-muted);
}

/* Contact Section */
#contact {
    color: var(--text-color-light); /* For text not in form */
}
#contact .form-label {
    color: var(--text-color-light);
}
.contact-form { /* Glassmorphism for the form container */
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem !important; /* Override Bootstrap padding */
}
#contact .voluminous-input {
    background-color: rgba(255,255,255,0.1);
    color: var(--text-color-light);
    border: 1px solid rgba(255,255,255,0.3);
}
#contact .voluminous-input::placeholder {
    color: rgba(255,255,255,0.6);
}
#contact .voluminous-input:focus {
    background-color: rgba(255,255,255,0.15);
    border-color: var(--secondary-color);
    box-shadow: var(--box-shadow-inset), 0 0 0 0.2rem rgba(var(--secondary-color-rgb), 0.3);
    color: var(--text-color-light);
}
#contact .text-white-50 a {
    color: var(--accent-color-light) !important;
}
#contact .text-white-50 a:hover {
    color: var(--text-color-light) !important;
}


/* Footer */
.footer {
    background-color: var(--dark-color);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}
.footer h5 {
    font-family: var(--font-family-headings);
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.footer .footer-link {
    color: rgba(255,255,255,0.6);
    display: inline-block;
    padding: 0.25rem 0;
    text-decoration: none;
}
.footer .footer-link:hover {
    color: var(--text-color-light);
    text-decoration: underline;
}
.footer hr {
    border-color: rgba(255,255,255,0.15);
}
.footer .small {
    font-size: 0.85rem;
}

/* Specific Page Styles */
/* Success Page */
body.success-page { /* Add this class to body tag of success.html */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    background-color: var(--light-color); /* Or a gradient */
    padding: 1rem;
}
.success-container {
    padding: 3rem;
    background-color: var(--white-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-volumetric);
    max-width: 600px;
}
.success-container h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
}
.success-container p {
    font-size: 1.1rem;
    margin: 1rem 0 2rem 0;
}

/* Privacy & Terms Pages */
body.legal-page .main-content-area { /* Add class to body & wrap content */
    padding-top: 120px; /* Ensure content is below fixed header */
    padding-bottom: 4rem;
}
body.legal-page .main-content-area h1 {
    margin-bottom: 2rem;
    text-align: center;
}
body.legal-page .main-content-area h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}


/* Scroll Reveal base (JS adds .is-visible or handles directly) */
.scroll-reveal-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.scroll-reveal-element.is-visible { /* If ScrollReveal adds this class */
    opacity: 1;
    transform: translateY(0);
}


/* Cookie Consent Popup */
#cookieConsentPopup { /* Styles provided in HTML, but can be enhanced here */
    box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
    font-family: var(--font-family-base);
}
#cookieConsentPopup p {
    color: var(--text-color-light);
}
#acceptCookieButton {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    font-weight: bold;
    border-radius: var(--border-radius-pill);
}
#cookieConsentPopup a {
    color: #bbb;
}
#cookieConsentPopup a:hover {
    color: var(--white-color);
}


/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
    .hero-section .lead {
        font-size: 1.15rem;
    }
    .section-title {
        font-size: 1.9rem;
    }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .header .nav-link {
        margin: 0.3rem 0;
        display: block;
        width: fit-content;
    }
    .navbar-collapse {
        padding: 1rem 0;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 3rem 0;
    }
    .hero-section {
        padding: 4rem 0;
        min-height: 70vh;
    }
    .hero-section h1 {
        font-size: 2.2rem;
    }
     .hero-section .lead {
        font-size: 1rem;
    }
    .pricing-card .price {
        font-size: 2.5rem;
    }
    .contact-form {
        padding: 1.5rem !important;
    }
    .footer {
        text-align: center;
    }
    .footer .col-md-4, .footer .col-md-2, .footer .col-md-3 {
        margin-bottom: 2rem;
    }
    .footer .list-unstyled {
        padding-left: 0;
    }
}

@media (max-width: 575.98px) {
    .btn, button, input[type="submit"], input[type="button"] {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    .hero-section .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
}

nav ul{
    flex-wrap: wrap;
}