/* Main Stylesheet */
:root {
    --primary: #008B8B;      /* Deep Cyan */
    --accent: #FF7043;       /* Tangerine Orange */
    --background: #FFF8E1;   /* Soft Ivory */
    --text: #333333;         /* Graphite Gray */
    --highlight: #00BFFF;    /* Electric Blue */
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #DDDDDD;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

h1 {
    font-size: 3rem;
    margin-bottom: 30px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-align: center;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-accent {
    background-color: var(--accent);
}

.btn-accent:hover {
    background-color: var(--primary);
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.logo span {
    color: var(--accent);
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 30px;
}

nav a {
    font-weight: 600;
}

.mobile-menu-form {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--highlight) 100%);
    color: var(--white);
    padding: 180px 0 100px;
    text-align: center;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Us */
.about {
    background-color: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us */
.why-choose {
    background-color: var(--light-gray);
}

.reasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reason {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.reason:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.reason h3 {
    color: var(--accent);
}

/* Services */
.services {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service {
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.service:hover {
    background-color: var(--primary);
    color: var(--white);
}

.service:hover h3 {
    color: var(--white);
}

/* Audit Types */
.audit-types {
    background-color: var(--primary);
    color: var(--white);
}

.audit-types h2 {
    color: var(--white);
    text-align: center;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.type {
    background-color: var(--white);
    color: var(--text);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.type:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.type h3 {
    color: var(--primary);
}

/* Type icons replaced with images */

/* Testimonials */
.testimonials {
    background-color: var(--light-gray);
}

.testimonials h2 {
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-name {
    font-weight: 700;
    color: var(--primary);
}

.client-position {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.8;
}

/* Order Form */
.order-form-section {
    background-color: var(--white);
}

.order-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary) 0%, var(--highlight) 100%);
    padding: 40px;
    border-radius: 10px;
    color: var(--white);
}

.order-form-container h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-group input {
    margin-right: 10px;
}

.checkbox-group label a {
    color: var(--white);
    text-decoration: underline;
}

.checkbox-group label a:hover {
    color: var(--accent);
}

/* FAQ Section */
.faq {
    background-color: var(--light-gray);
    padding-bottom: 60px;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--white);
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    margin: 0;
    position: relative;
}

.accordion-content {
    padding: 20px;
    background-color: var(--white);
    color: var(--text);
    border-top: 1px solid rgba(0,0,0,0.1);
}

.accordion-content p {
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: var(--text);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--medium-gray);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-popup p {
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Legal Pages */
.legal-page {
    padding-top: 150px;
    padding-bottom: 80px;
}

.legal-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.legal-container h1 {
    margin-bottom: 30px;
}

.legal-container h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Thank you page */
.thank-you {
    text-align: center;
    padding-top: 150px;
    padding-bottom: 80px;
}

.thank-you-container {
    background-color: var(--white);
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.thank-you h1 {
    color: var(--primary);
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .reasons,
    .services-grid,
    .types-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .mobile-menu-form {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        display: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px 0;
    }
    
    nav li {
        margin-left: 0;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .reasons,
    .services-grid,
    .types-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .order-form-container {
        padding: 20px;
    }
}