:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --bg-color: #ffffff;
    --bg-gradient: #ffffff;
    --text-color: #000000;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --nav-text: #000000;
    --font-primary: 'League Spartan', sans-serif;
    --font-secondary: 'Quicksand', sans-serif;
    --transition-speed: 0.3s;
}

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

body {
    font-family: var(--font-secondary);
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: all var(--transition-speed) ease;
}

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

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-primary);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    background-color: #fff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--nav-text);
    transition: color var(--transition-speed);
    position: relative;
    letter-spacing: 0.5px;
}

.nav-item:hover {
    color: #ffffff;
}

/* Dropdown */
.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown .arrow {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform var(--transition-speed);
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--nav-text);
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu li a:hover {
    background: #ffffff;
    color: #000;
}

/* Button Style for Conact */
.btn-primary {
    padding: 0.6rem 1.5rem;
    background: #000000;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    transition: transform 0.2s, background 0.2s;
}

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

/* Mobile Icon */
.mobile-menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        /* Navbar height approx */
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .mobile-menu-icon {
        display: flex;
    }

    .mobile-menu-icon.open .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-menu-icon.open .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-icon.open .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* Dropdown on mobile */
    .dropdown {
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        /* Hidden by default strictly for mobile layout flow */
        padding-top: 10px;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
        /* Simple toggle on hover */
    }
}

/* Hero Section Placeholder */
.hero {
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero h1 {
    font-family: var(--font-primary);
    font-size: 3rem;
    margin-bottom: 20px;
    color: #000;
    font-weight: 700;
}



.hero h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000;
    font-weight: 400;
}

.hero p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #000000;
    font-weight: 350;
}

/* Partners Section */
.partners {
    padding: 2rem 0 4rem;
    text-align: center;
    background-color: #fff;
}

.partners h3 {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 500;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .partners-grid {
        gap: 2rem;
    }

    .partner-logo {
        height: 25px;
    }
}

/* Dark Section Common */
.dark-section {
    background-color: #000000;
    color: #ffffff;
    padding: 5rem 0;
}

/* Services Section */
.services-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    /* 3 Columns Layout */
    gap: 4rem;
    align-items: flex-start;
}

.section-tag {
    display: block;
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.services-header h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 700;
}

.services-header p {
    font-family: var(--font-secondary);
    color: #ffffff;
    margin-bottom: 1.5rem;
    max-width: 400px;
    font-weight: 300;
}

.case-link {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    /* Lilac */
    margin-top: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.case-link .arrow {
    margin-left: 5px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    cursor: pointer;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

.service-item.active {
    background-color: #ffffff;
    /* Lilac Background for Active */
    color: #000000;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    border-bottom: none;
    font-weight: 600;
}

.service-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.services-details h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.services-details p {
    font-family: var(--font-secondary);
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 300;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    font-family: var(--font-primary);
    font-size: 3rem;
    margin-bottom: 4rem;
    line-height: 1.1;
    font-weight: 700;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-block h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-family: var(--font-primary);
    font-weight: 600;
}

.info-block p {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.6;
    font-family: var(--font-secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    color: #fff;
    font-family: var(--font-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: transparent;
    border: 1px solid #333;
    padding: 1rem;
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    width: 100%;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #fff;
    font-size: 0.8rem;
    max-width: 60%;
}

.checkbox-wrapper input {
    margin-top: 4px;
}

.btn-submit {
    background-color: #222;
    /* Disabled look initially or dark accent */
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
    font-family: var(--font-primary);
}

.btn-submit:hover {
    background-color: #ffffff;
    /* Lilac hover */
}

/* Mobile Responsive New Sections */
@media (max-width: 900px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .checkbox-wrapper {
        max-width: 100%;
    }
}

/* Light Section (About) */
.light-section {
    background-color: #ffffff;
    padding: 6rem 0;
    color: #000;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.about-text h2 {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 3rem;
    color: #000;
}

.about-block {
    margin-bottom: 2.5rem;
}

.about-block h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.about-block p {
    font-family: var(--font-secondary);
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
}

.link-lilac {
    color: #767474;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.5s;
}

.link-lilac:hover {
    color: #000000;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.info-card h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #222;
}

.mini-logo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.mini-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }
}

/* Sub-Footer */
.sub-footer {
    background-color: #1a1a1a;
    padding: 1.5rem 0;
    color: #fff;
    font-size: 0.8rem;
    position: relative;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left,
.footer-center,
.footer-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #fff;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
}

.social-icons a:hover {
    opacity: 0.7;
}

.footer-link {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
    font-family: var(--font-secondary);
}

.footer-link:hover {
    color: #fff;
}

.footer-right {
    gap: 1rem;
}

.footer-logo {
    height: 20px;
    width: auto;
    /* If logo is black, invert it to white for dark footer */
    filter: brightness(0) invert(1);
}

.wpp-text {
    color: #666;
    font-size: 0.75rem;
    font-family: var(--font-secondary);
}

/* Floating Chat */
.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #ffffff;
    /* Green from the sample image, or Lilac if preferred */
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    z-index: 1000;
}

.floating-chat:hover {
    transform: scale(1.1);
    background-color: #246655;
    /* Darker green hover */
}

@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-logo {
        width: 30px;
    }
}

/* Form Notification */
.form-notification {
    display: none;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    animation: fadeIn 0.5s ease;
}

.g-recaptcha {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    /* Center on mobile/desktop appropriately */
}

.form-notification.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-notification.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-submit:disabled {
    background-color: #555;
    cursor: not-allowed;
    opacity: 0.7;
}