.elementor-436 .elementor-element.elementor-element-a6f2d30{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;--background-transition:0.3s;}.elementor-436 .elementor-element.elementor-element-e9295cc{width:100%;max-width:100%;}.elementor-436 .elementor-element.elementor-element-e9295cc.elementor-element{--align-self:center;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-e9295cc *//* Define CSS Variables for easy customization based on theme */
:root {
    /* Colors derived from your header image gradient */
    --header-gradient-start: #3182CE; /* A vibrant blue from the left of your header */
    --header-gradient-end: #805AD5;   /* A vibrant purple from the right of your header */

    /* Footer specific colors, designed for a dark gradient background */
    --footer-background-start: var(--header-gradient-start); /* Use header blue */
    --footer-background-end: var(--header-gradient-end);   /* Use header purple */
    --footer-text-light: #ffffff;    /* White text for contrast on dark gradient */
    --footer-accent: #63b3ed;        /* A lighter blue accent for links/buttons */
    --footer-text-on-accent: #ffffff; /* White text for elements with accent background */
    --footer-bottom-border: rgba(255, 255, 255, 0.15); /* Subtle white border for dark mode */
}

/* Base Body Layout */
.body-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #F8F5F1; /* Your provided body background color */
    color: #3C4257; /* Your provided body text color */
    font-family: 'Inter', sans-serif; /* Apply Inter font globally */
}

/* Main Content Section (if present in your main site) */
.main-section {
    flex-grow: 1; /* Makes the main content area expand to fill available space */
}

/* Main Content Placeholder Styling (if used for testing) */
.main-content-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3C4257;
    text-align: center;
}

/* Footer Layout */
.footer-layout {
    background-image: linear-gradient(to right, var(--footer-background-start), var(--footer-background-end));
    box-shadow: none !important; /* Removed the box-shadow */
    color: var(--footer-text-light); /* Default text color for the footer */
    padding-top: 4rem; /* Equivalent to py-16 */
    padding-bottom: 0 !important; /* Removed padding-bottom to reduce gap above copyright */
}

/* Footer Container */
.footer-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 640px) { /* sm breakpoint */
    .footer-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
@media (min-width: 1024px) { /* lg breakpoint */
    .footer-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Footer Grid - Main content grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr; /* Stacks columns by default on small screens */
    gap: 3rem;
}

@media (min-width: 768px) { /* md breakpoint */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

@media (min-width: 1024px) { /* lg breakpoint */
    .footer-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }
}

/* Common column styling */
.footer-column {
    display: flex; /* Make columns flex containers */
    flex-direction: column; /* Stack items vertically within the column */
    justify-content: flex-start; /* **Align content to the start (top) of the column** */
    align-items: flex-start; /* Align items to the start (left) within the column */
}

/* Footer Heading */
.footer-heading {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--footer-accent);
    text-align: left;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

/* Footer List */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    margin-bottom: 0;
}
.footer-list li {
    margin-bottom: 0.75rem;
}
.footer-list li:last-child {
    margin-bottom: 0;
}

/* Footer Link Style */
html body .footer-link-style {
    color: var(--footer-text-light) !important;
    text-decoration: none !important;
    transition: color 0.3s ease-in-out !important;
    font-weight: 400 !important;
    display: block !important;
    white-space: nowrap !important; /* Force text to stay on one line */
    overflow: hidden !important;     /* Hide overflowing content */
    text-overflow: ellipsis !important; /* Add ellipsis for overflow */
    max-width: 100%; /* Ensure it respects its container width */
}
html body .footer-link-style:hover,
html body .footer-link-style:focus {
    color: var(--footer-accent) !important;
    background: none !important;
    box-shadow: none !important;
    outline: none !important;
    text-decoration: none !important;
    transform: none !important;
    filter: none !important;
    backdrop-filter: none !important;
    background-image: none !important;
    background-blend-mode: normal !important;
}

/* Contact Address */
.footer-address {
    font-style: normal;
    font-size: 1rem;
    margin-bottom: 0;
}
.footer-address p {
    margin-bottom: 0.75rem;
    color: var(--footer-text-light);
}
.footer-address p:last-child {
    margin-bottom: 0;
}

/* Contact Text - Ensures text stays on one line */
.contact-text {
    color: var(--footer-text-light);
    opacity: 0.9;
    white-space: nowrap !important; /* Force text to stay on one line */
    overflow: hidden !important;     /* Hide overflowing content */
    text-overflow: ellipsis !important; /* Add ellipsis for overflow */
    max-width: 100%; /* Ensure it respects its container width */
}

/* Contact Buttons Container - Now only contains one button in HTML structure */
.contact-buttons-container {
    margin-top: 1.25rem; /* Standard spacing */
}
.contact-buttons-container .secondary-contact-btn {
    margin-bottom: 0; /* Ensure no extra margin if it's the only one */
    display: block;
    width: 100%; /* Ensure it takes full width on mobile */
}


/* Secondary Contact Button - Re-enabled hover effects (now primarily used in footer-actions-row) */
html body a.secondary-contact-btn {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: var(--footer-text-light) !important;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease-in-out !important;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer !important;

    /* Aggressive resets for initial state */
    box-shadow: none !important;
    outline: none !important;
    filter: none !important;
    backdrop-filter: none !important;
    background-image: none !important;
    background-blend-mode: normal !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}
html body a.secondary-contact-btn:hover,
html body a.secondary-contact-btn:focus {
    background: var(--footer-accent) !important;
    background-color: var(--footer-accent) !important;
    background-image: none !important;
    box-shadow: none !important;
    outline: none !important;
    border-color: var(--footer-accent) !important;
    color: var(--footer-text-on-accent) !important;
    transform: translateY(-2px) !important;
    filter: none !important;
    backdrop-filter: none !important;
    transition: all 0.3s ease-in-out !important;
    background-blend-mode: normal !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    content: none !important;
    background-clip: padding-box !important;
}


/* Footer Social Icon (used inside social-icons-container) */
html body .social-icon-item { /* Adjusted to target .social-icon-item specifically */
    color: var(--footer-text-light) !important;
    font-size: 1.5rem !important; /* Icon size */
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
html body .social-icon-item:hover,
html body .social-icon-item:focus {
    color: var(--footer-accent) !important;
    transform: translateY(-2px) !important;
    background: none !important;
    box-shadow: none !important;
    outline: none !important;
    filter: none !important;
    backdrop-filter: none !important;
    background-image: none !important;
    background-blend-mode: normal !important;
}


/* Newsletter Description */
.newsletter-description {
    font-size: 0.875rem;
    color: var(--footer-text-light);
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* Newsletter Form */
.newsletter-form {
    margin-bottom: 0; /* Remove bottom margin to align with the bottom of the column */
    margin-top: auto; /* Push the form to the top of its available space if needed */
    width: 100%; /* Ensure form takes full width on mobile */
}
.newsletter-form input,
.newsletter-form button {
    margin-bottom: 0.75rem;
}
.newsletter-form input:last-child,
.newsletter-form button:last-child {
    margin-bottom: 0;
}

/* Newsletter Input - No unwanted focus effects */
html body .newsletter-input {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--footer-text-light) !important;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    width: 100%; /* Ensure input takes full width on mobile */
    outline: none !important;
    transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out !important;
    margin-bottom: 0.75rem;
    /* Aggressive resets for initial state */
    box-shadow: none !important;
    filter: none !important;
    backdrop-filter: none !important;
    background-image: none !important;
    background-blend-mode: normal !important;
}
html body .newsletter-input:focus {
    border-color: var(--footer-accent) !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: none !important;
    outline: none !important;
    filter: none !important;
    backdrop-filter: none !important;
    transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out !important;
    background-blend-mode: normal !important;
}

/* Newsletter Button - No unwanted hover effects */
html body .newsletter-btn {
    background-color: var(--footer-accent) !important;
    color: var(--footer-text-on-accent) !important;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease-in-out !important;
    text-align: center;
    width: 100%; /* Ensure button takes full width on mobile */
    border: none !important;
    cursor: pointer !important;

    /* Aggressive resets for initial state */
    box-shadow: none !important;
    outline: none !important;
    filter: none !important;
    backdrop-filter: none !important;
    background-image: none !important;
    background-blend-mode: normal !important;
}
html body .newsletter-btn:hover,
html body .newsletter-btn:focus {
    background-color: #3498db !important;
    background-image: none !important;
    box-shadow: none !important;
    outline: none !important;
    transform: translateY(-2px) !important;
    filter: none !important;
    backdrop-filter: none !important;
    transition: all 0.3s ease-in-out !important;
    background-blend-mode: normal !important;
    color: var(--footer-text-on-accent) !important;
}

/* New: Action Buttons & Social Media Icons Row */
.footer-actions-row {
    display: flex; /* Use flexbox for horizontal alignment */
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    justify-content: space-between; /* Distribute items with space between them */
    align-items: center; /* Center items vertically within the row */
    gap: 1.5rem; /* Space between the two main groups (buttons and social icons) */
    margin-top: 2rem; /* Space above this row from the main grid */
    padding-top: 1.5rem; /* Padding inside this row */
    padding-bottom: 1.5rem; /* Padding inside this row */
    border-top: 1px solid var(--footer-bottom-border); /* Separator line */
    color: var(--footer-text-light); /* Ensure text color is light */
}

/* Container for the two action buttons */
.footer-buttons-group {
    display: flex;
    gap: 1rem; /* Space between the two buttons */
    flex-wrap: wrap; /* Allow buttons to wrap if needed */
    justify-content: center; /* Center buttons within their group on smaller screens */
    flex-grow: 1; /* Allow button group to take available space */
}

/* Specific styling for individual buttons within the group */
.footer-actions-row .action-button {
    flex-shrink: 0; /* Prevent buttons from shrinking too much */
    width: auto; /* Allow width to be determined by content + padding */
    min-width: 160px; /* Minimum width for buttons */
    max-width: 200px; /* Maximum width for buttons */
    /* All other secondary-contact-btn styles apply */
}

/* Social media icons container within the action row */
.social-icons-container.footer-actions-social { /* Added .footer-actions-social to reinforce specificity */
    display: flex;
    gap: 1rem; /* Space between social icons */
    flex-shrink: 0; /* Prevent icons from shrinking too much */
    margin-left: auto; /* Pushes social icons to the right on larger screens */
}

@media (max-width: 767px) { /* On small screens, stack everything */
    .footer-container {
        padding-left: 1rem; /* Consistent padding for very small screens */
        padding-right: 1rem;
    }
    .footer-grid {
        gap: 2rem; /* Reduce gap between stacked columns on mobile */
    }
    .footer-column {
        align-items: center; /* Center content within each stacked column on mobile */
        text-align: center; /* Center text for lists/addresses */
    }
    .footer-list, .footer-address {
        width: 100%; /* Ensure lists and addresses take full width */
        text-align: center; /* Center text within lists/addresses */
        margin-bottom: 1rem; /* Add some space below lists/addresses */
    }
    .footer-list li {
        width: 100%; /* Ensure list items take full width */
        text-align: center;
    }
    .footer-heading {
        text-align: center; /* Center headings on mobile */
        width: 100%; /* Ensure heading takes full width */
        margin-bottom: 1rem; /* Reduce heading margin */
    }

    .footer-actions-row {
        flex-direction: column;
        gap: 1rem; /* Adjust gap for vertical stacking */
        justify-content: center;
        align-items: center;
    }
    .footer-buttons-group {
        flex-direction: column; /* Stack buttons vertically on small screens */
        width: 100%; /* Make button group take full width */
        gap: 0.75rem; /* Adjust gap for stacked buttons */
    }
    .footer-actions-row .action-button {
        width: 100%; /* Buttons take full width on small screens */
        max-width: 280px; /* Limit max width even when full width */
    }
    .social-icons-container.footer-actions-social { /* Target with full specificity */
        margin-left: 0; /* Remove auto margin on small screens */
        margin-top: 1rem; /* Add space above social icons when stacked */
        justify-content: center; /* Center social icons when stacked */
        width: 100%; /* Ensure social icons container takes full width */
    }
}


/* Styles for the bottom copyright row */
.footer-bottom-row {
    border-top: 1px solid var(--footer-bottom-border);
    margin-top: 0 !important; /* Ensure margin-top is 0 */
    padding-top: 1rem !important; /* Added padding-top for visual space */
    padding-bottom: 1rem; /* Kept padding-bottom for space below text */
    background-color: rgba(0, 0, 0, 0.2) !important; /* Added subtle dark background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--footer-text-light) !important;
    opacity: 0.8;
    text-align: center;
}

.footer-bottom-row p {
    margin: 0 !important;
    padding: 0 !important;
    color: inherit !important;
}

@media (min-width: 768px) {
    .footer-bottom-row {
        flex-direction: row;
    }
}/* End custom CSS */