/* Global Styles */
:root {
    --primary-color: #F6B21A;
    /* Yellow/Orange */
    --secondary-color: #2D8A84;
    /* Teal */
    --bg-dark: #1F6F6B;
    /* Darker Teal */
    --bg-light: #BFE8DD;
    /* Mint Light */
    --text-dark: #184B47;
    --text-light: #FFFFFF;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);

    --font-main: 'Poppins', sans-serif;

    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.full-width {
    width: 100%;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
    /* Dark text on yellow is usually better */
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background-color: #e5a518;
}

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

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background-color: #257570;
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    text-transform: uppercase;
}

h2 {
    font-size: clamp(2rem, 4vw + 1rem, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--secondary-color);
    text-transform: uppercase;
}

.section-title.text-white {
    color: var(--white);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.hero-text {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
}

.highlight {
    color: var(--primary-color);
    /* Yellow text highlight */
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-sm) 0;
    transition: all 0.3s ease;
}

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

.logo img {
    height: 60px;
    /* Adjust size based on logo aspect ratio */
    width: auto;
    border-radius: 0;
}

.nav-menu ul {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
}

.nav-menu .btn-primary {
    padding: 8px 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    position: relative;
    transition: background 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    transition: transform 0.3s, top 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Hamburger Animation (Active State) */
.menu-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}


/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 140px;
    /* Header space + logo margin */
    background: var(--secondary-color);
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-color) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-logo-circle {
    position: absolute;
    top: -150px;
    /* Adjusted to see more of the circle */
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 30px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-logo-circle img {
    width: 320px;
    /* Larger logo inside circle */
    height: auto;
    border-radius: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 5;
    width: 100%;
}

.hero-content {
    padding-bottom: 0;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
}

.hero-content h1 .highlight {
    color: var(--white);
}

.hero-text {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
}

.hero-image {
    position: relative;
}

.white-arc-bg {
    position: absolute;
    top: 0%;
    right: -100px;
    width: 600px;
    /* Smaller arc */
    height: 600px;
    background: var(--white);
    border-radius: 50%;
    z-index: -1;
}

.white-line-arc {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

/* Decorative Circles in Hero */
.circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.circle-1 {
    width: 80px;
    height: 80px;
    background: #BFE8DD;
    top: 15%;
    left: 10%;
    opacity: 0.6;
}

.circle-2 {
    width: 50px;
    height: 50px;
    background: var(--white);
    bottom: 15%;
    right: 15%;
    z-index: 10;
    opacity: 1;
}

/* Bottom SVG Shape */
.custom-shape-divider-bottom-1698075344 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1698075344 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 78px;
}

.custom-shape-divider-bottom-1698075344 .shape-fill {
    fill: #FFFFFF;
}

/* Problems / Icons Section */
.problems-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

.grid-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    text-align: center;
}

.icon-card {
    padding: var(--spacing-md);
    transition: transform 0.3s;
}

.icon-card:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 120px;
    /* Large circle from icons */
    height: 120px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--white);
    /* Assuming icons have their own background or are PNGs with circles */
}

/* Services Section */
.services-section {
    padding: var(--spacing-xl) 0;
    background-color: #f9f9f9;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    grid-auto-rows: minmax(250px, auto);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--white);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-card.large {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.service-content {
    padding: var(--spacing-md);
}

.service-img img,
.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* About Section */
.about-section {
    padding: var(--spacing-xl) 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.partner-logo {
    max-width: 200px;
    margin-top: var(--spacing-md);
}

.rounded-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--white);
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.contact-info-card,
.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-lg);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--white);
}

.glass {
    backdrop-filter: blur(10px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    gap: var(--spacing-sm);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-item a {
    display: block;
    color: var(--text-dark);
    font-weight: 500;
}

/* Form */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: var(--spacing-lg) 0;
    text-align: center;
    border-top: 5px solid var(--primary-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-links a {
    margin: 0 var(--spacing-sm);
    color: #ccc;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
}

/* Animation Classes */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    color: var(--white);
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-text {
    font-size: 0.9rem;
    margin-right: var(--spacing-md);
}

.cookie-btn {
    white-space: nowrap;
}


/* Media Queries (Mobile First approach means we built for mobile/flex mostly, but handled desktop via grid) */
/* Mobile overrides (Max width) */
@media (max-width: 991px) {

    /* Header */
    .menu-toggle {
        display: block;
        z-index: 1001;
        /* Above mobile menu */
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #eee;
        padding: 15px 0;
    }

    .nav-menu a {
        display: block;
        font-size: 1.2rem;
    }

    .nav-menu .btn-primary {
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    /* Hero */
    .hero {
        padding-top: 180px;
        min-height: auto;
        padding-bottom: 50px;
    }

    .hero-logo-circle {
        width: 320px;
        height: 320px;
        padding-bottom: 25px;
        top: -40px;
    }

    .hero-logo-circle img {
        width: 180px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .hero-content {
        order: 1;
        padding-bottom: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .hero-content {
        order: 1;
        padding-bottom: 0;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: 2;
        max-width: 90%;
        margin: 0 auto;
    }

    .white-arc-bg {
        width: 400px;
        height: 400px;
        top: 20px;
        right: -50px;
    }

    .white-line-arc {
        display: none;
    }

    .circle-1 {
        left: 20px;
        top: 200px;
        width: 60px;
        height: 60px;
    }

    /* Services */
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .service-card.large {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .service-img {
        height: 200px;
        margin-top: var(--spacing-md);
        order: -1;
    }

    .service-card.large .service-img {
        order: -1;
    }

    /* About & Contact Split Layouts */
    .split-layout,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        gap: var(--spacing-md);
    }

    .contact-info-card,
    .contact-form-card {
        padding: var(--spacing-md);
    }

    /* Cookie Banner Mobile */
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }

    .cookie-text {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.25rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}