/* General Styles */
:root {
    --primary-color: #39FF14; /* Lime Green */
    --secondary-color: #000000; /* Black */
    --text-color-light: #FFFFFF;
    --text-color-dark: #CCCCCC;
    --bg-dark-light: #1a1a1a;
    --bg-dark-medium: #0f0f0f;
    --border-color: #2a2a2a;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition-speed: 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color-light);
    background-color: var(--secondary-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-color-light);
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

p {
    font-size: 1.1rem;
    color: var(--text-color-dark);
    margin-bottom: 15px;
}

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

a:hover {
    color: #5eff3a; /* Slightly lighter lime green */
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed);
    border: none;
    text-decoration: none; /* Remove underline for buttons */
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.4);
}

.btn-primary:hover {
    background-color: #5eff3a; /* Slightly lighter lime green */
    box-shadow: 0 6px 20px rgba(57, 255, 20, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-color-dark);
    margin-bottom: 60px;
}

/* Header */
.header {
    background-color: var(--bg-dark-medium);
    padding: 20px 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color-light);
    text-decoration: none;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-list {
    list-style: none;
    display: flex;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    color: var(--text-color-light);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color var(--transition-speed);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform var(--transition-speed);
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 2.5rem;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
}

.mobile-nav-list li {
    margin: 25px 0;
}

.mobile-nav-link {
    color: var(--text-color-light);
    font-size: 2rem;
    font-weight: 600;
    transition: color var(--transition-speed);
}

.mobile-nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    color: var(--text-color-light);
    text-align: center;
    display: flex;
    align-items: center;
    min-height: 80vh;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    background: linear-gradient(90deg, var(--primary-color), #8bff7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: var(--text-color-dark);
}

/* About Us Section */
.about-section {
    background-color: var(--bg-dark-light);
    padding: 120px 0;
}

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

.about-content h2 {
    text-align: left;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 1.15rem;
    color: var(--text-color-dark);
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services-section {
    background-color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-dark-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Ensure equal height */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-color-dark);
    flex-grow: 1;
    margin-bottom: 25px;
}

/* Why Choose Us Section */
.why-us-section {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    position: relative;
    color: var(--text-color-light);
}

.why-us-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.why-us-section .container {
    position: relative;
    z-index: 2;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-us-item {
    background-color: var(--bg-dark-light);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    height: 100%; /* Ensure equal height */
}

.why-us-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.why-us-icon {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-us-item h3 {
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.why-us-item p {
    font-size: 1rem;
    color: var(--text-color-dark);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-dark-medium);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-dark-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Ensure equal height */
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary-color);
}

.testimonial-card h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.testimonial-date {
    font-size: 0.9rem;
    color: var(--text-color-dark);
}

.testimonial-card p {
    font-size: 1.05rem;
    color: var(--text-color-dark);
}

/* Call to Action Section */
.cta-section {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    position: relative;
    color: var(--text-color-light);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--text-color-dark);
}

/* Contact Form Section */
.contact-form-section {
    background-color: var(--secondary-color);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-dark-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.main-form .form-group {
    margin-bottom: 25px;
}

.main-form label {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-color-light);
    font-weight: 500;
}

.main-form input[type="text"],
.main-form input[type="tel"],
.main-form input[type="email"],
.main-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-dark-medium);
    color: var(--text-color-light);
    font-size: 1rem;
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.main-form input:focus,
.main-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.2);
}

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

.main-form input::placeholder,
.main-form textarea::placeholder {
    color: #777;
}

.main-form button[type="submit"] {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    margin-top: 20px;
}

.error-message {
    color: #ff4d4d; /* Red for errors */
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

/* Footer */
.footer {
    background-color: var(--bg-dark-medium);
    padding: 50px 0 20px;
    color: var(--text-color-dark);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo {
    font-size: 1.6rem;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    gap: 25px;
}

.footer-nav-link {
    color: var(--text-color-dark);
    font-weight: 400;
    font-size: 1rem;
}

.footer-nav-link:hover {
    color: var(--primary-color);
}

.footer-bottom p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.policy-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.policy-links li a {
    color: var(--text-color-dark);
    font-size: 0.9rem;
}

.policy-links li a:hover {
    color: var(--primary-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark-light);
    color: var(--text-color-light);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none; /* Hidden by default */
    border-top: 1px solid var(--border-color);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-banner p {
    margin: 0;
    flex-grow: 1;
    font-size: 0.95rem;
    color: var(--text-color-dark);
}

.cookie-banner p a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-banner .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 5px;
}

/* Modal */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10001; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding-top: 60px;
}

.modal-content {
    background-color: var(--bg-dark-medium);
    margin: 5% auto;
    padding: 30px;
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.modal-content h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.modal-content p {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color-dark);
}

.close-button {
    color: var(--text-color-dark);
    font-size: 2.5rem;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    transition: color var(--transition-speed);
}

.close-button:hover,
.close-button:focus {
    color: var(--primary-color);
}

.cookie-category {
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--bg-dark-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.cookie-category input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
    accent-color: var(--primary-color);
}

.cookie-category label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color-light);
    cursor: pointer;
}

.cookie-category .category-desc {
    font-size: 0.9rem;
    color: var(--text-color-dark);
    margin-top: 10px;
    margin-bottom: 0;
    padding-left: 30px; /* Align with checkbox */
    text-align: left;
}

#save-cookie-settings {
    width: 100%;
    margin-top: 20px;
    padding: 12px 25px;
    border-radius: 8px;
}

/* Toaster */
.toaster {
    visibility: hidden;
    min-width: 250px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-align: center;
    border-radius: 5px;
    padding: 16px;
    position: fixed;
    z-index: 10002;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.4);
    opacity: 0;
    transition: opacity 0.5s, visibility 0.5s;
}

.toaster.show {
    visibility: visible;
    opacity: 1;
}

.toaster.error {
    background-color: #ff4d4d; /* Red for error messages */
    color: var(--text-color-light);
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav {
        display: none;
    }

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

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content h2 {
        text-align: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .hero-content h1{
        font-size: 2.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

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

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-banner .btn {
        flex-grow: 1;
    }
}

@media (max-width: 480px) {
    .logo span {
        display: none;
    }

    .logo img {
        margin-right: 0;
    }

    h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .mobile-nav-link {
        font-size: 1.5rem;
    }

    .footer-nav-list {
        gap: 15px;
    }

    .policy-links {
        flex-direction: column;
        gap: 10px;
    }
}
/* Trust Pillar Unit specific styles for standard content */
.trustPillarUnit {
    padding: 60px 20px; /* Top/bottom and side padding for the unit */
    /* You might want to add background-color or other styling here if this unit is a distinct block */
    /* background-color: var(--bg-dark-light); */
    /* border-radius: 10px; */
}

.trustPillarUnit h1 {
    font-size: 2.2rem; /* Moderate font size for h1 */
    margin-top: 0; /* Remove default top margin */
    margin-bottom: 1.2em; /* Spacing below h1 */
    color: var(--text-color-light); /* Ensure text color consistency */
    font-weight: 700; /* Bold font weight */
    line-height: 1.2; /* Line height for readability */
}

.trustPillarUnit h2 {
    font-size: 1.8rem; /* Moderate font size for h2 */
    margin-top: 0;
    margin-bottom: 1em; /* Spacing below h2 */
    color: var(--text-color-light);
    font-weight: 600;
    line-height: 1.3;
}

.trustPillarUnit h3 {
    font-size: 1.5rem; /* Moderate font size for h3 */
    margin-top: 0;
    margin-bottom: 0.8em; /* Spacing below h3 */
    color: var(--text-color-light);
    font-weight: 500;
    line-height: 1.4;
}

.trustPillarUnit h4 {
    font-size: 1.3rem; /* Moderate font size for h4 */
    margin-top: 0;
    margin-bottom: 0.6em; /* Spacing below h4 */
    color: var(--text-color-light);
    font-weight: 500;
    line-height: 1.5;
}

.trustPillarUnit h5 {
    font-size: 1.1rem; /* Moderate font size for h5 */
    margin-top: 0;
    margin-bottom: 0.5em; /* Spacing below h5 */
    color: var(--text-color-light);
    font-weight: 400;
    line-height: 1.6;
}

.trustPillarUnit p {
    font-size: 1rem; /* Standard paragraph font size */
    margin-top: 0;
    margin-bottom: 1em; /* Spacing below paragraphs */
    color: var(--text-color-dark); /* Default text color for paragraphs */
    line-height: 1.6; /* Line height for readability */
}

.trustPillarUnit ul {
    list-style: disc; /* Default disc bullet for unordered lists */
    margin-top: 1em; /* Spacing above the list */
    margin-bottom: 1em; /* Spacing below the list */
    padding-left: 2em; /* Indentation for list items */
    color: var(--text-color-dark); /* Default text color for list items */
}

.trustPillarUnit ol {
    list-style: decimal; /* Default decimal numbering for ordered lists */
    margin-top: 1em; /* Spacing above the list */
    margin-bottom: 1em; /* Spacing below the list */
    padding-left: 2em; /* Indentation for list items */
    color: var(--text-color-dark); /* Default text color for list items */
}

.trustPillarUnit li {
    font-size: 1rem; /* Standard list item font size */
    margin-bottom: 0.5em; /* Spacing between list items */
    color: var(--text-color-dark); /* Default text color for list items */
    line-height: 1.5; /* Line height for readability */
}

.trustPillarUnit li:last-child {
    margin-bottom: 0; /* No bottom margin for the last list item */
}
