:root {
    --primary-teal: #3AB0B9;
    --primary-dark: #1A548E;
    --secondary-dark: #333D52;
    --text-grey: #4D6275;
    --text-light-grey: #6E7788;
    --bg-light: #F9F9F9;
    --white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-grey);
    line-height: 1.6;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-dark);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-teal);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #2a8f96;
    transform: translateY(-2px);
}

/* Header */
.site-header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo img {
    height: 60px;
    /* Adjust based on actual logo ratio */
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-weight: 600;
    font-size: 15px;
    color: var(--secondary-dark);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-teal);
}

.header-contact {
    display: flex;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--secondary-dark);
}

.icon-circle {
    width: 35px;
    height: 35px;
    background-color: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--secondary-dark);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    background-color: #333;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay for text readability */
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.slide-content h1 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 700;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 3px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 100%;
    /* Hit area */
}

.dot.active {
    background-color: var(--white);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sub-heading {
    text-transform: uppercase;
    color: var(--primary-dark);
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    padding-left: 60px;
}

.sub-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 50px;
    height: 2px;
    background-color: var(--primary-dark);
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-light-grey);
}

.about-text .lead {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-dark);
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Stats Section */
.stats-section {
    background-color: var(--bg-light);
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column-reverse;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-dark);
    font-family: var(--font-heading);
}

.stat-title {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    color: var(--text-grey);
    margin-top: 5px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--white);
}

.center {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: transparent;
}

.service-icon {
    font-size: 40px;
    color: var(--primary-teal);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Footer */
.site-footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-teal);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #accfe3;
    /* Lighter blue for better contrast on dark bg */
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-col p {
    color: #accfe3;
    font-size: 15px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary-teal);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #accfe3;
    font-size: 14px;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-list {
        display: none;
        /* Hide nav for now on smaller screens for simplicity */
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-section {
        height: 60vh;
    }

    .slide-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .header-contact {
        display: none;
        /* Hide contact on very small screens or stack it */
    }

    .stats-grid {
        flex-direction: column;
        gap: 20px;
    }
}

/* Elementor Form Styles for Feedback Modal */
.elementor-field-group {
    margin-bottom: 15px;
}

.elementor-field-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

.elementor-field-subgroup {
    display: flex;
    flex-wrap: wrap;
    /* Adjust if vertical is preferred, layout looked horizontal in simple flex but source structure implies block */
    gap: 15px;
}

/* Force vertical for Radio/Checkboxes if needed, but horizontal looks cleaner. Source layout check: Elementor default is usually vertical. */
/* Let's make it responsive: stacked on mobile, inline on desktop if 'inline' class, but here no inline class. */

.elementor-field-option {
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #555;
    gap: 5px;
}

.elementor-field-textual {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #666;
    background-color: #fff;
}

.elementor-field-textual:focus {
    border-color: var(--primary-teal);
    outline: none;
}

.elementor-button {
    background-color: var(--primary-teal);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 3px;
    width: auto;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.elementor-button:hover {
    background-color: #2a8f96;
}

/* Modal Specifics */
.modal-content {
    font-family: 'Roboto', sans-serif;
}