/* Variables */
:root {
    --bg-color: #2E2A3B;
    --accent-color: #FF5C57;
    --light-bg: #D3E7EE;
    --text-bg: #F4F7FA;
    --text-color: #1C1B29;
    --max-width: 1200px;
    --header-height: 80px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    --radius: 6px;
}

/* Reset & Base */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--text-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 80px 0;
}

ul {
    list-style: none;
}

/* Utility classes */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
}

.btn-outline {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
}

/* Header */
.site-header {
    background-color: var(--bg-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: white;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.main-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
}

.menu-checkbox {
    display: none;
}

.menu-button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.menu-icon {
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
    background-color: white;
    transition: var(--transition);
}

.menu-icon:before,
.menu-icon:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: var(--transition);
}

.menu-icon:before {
    top: -8px;
}

.menu-icon:after {
    top: 8px;
}

.menu-checkbox:checked ~ .menu-button .menu-icon {
    background-color: transparent;
}

.menu-checkbox:checked ~ .menu-button .menu-icon:before {
    top: 0;
    transform: rotate(45deg);
}

.menu-checkbox:checked ~ .menu-button .menu-icon:after {
    top: 0;
    transform: rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-color);
    transition: var(--transition);
    overflow-y: auto;
    padding: 20px;
    box-shadow: var(--shadow);
    z-index: 101;
}

.menu-checkbox:checked ~ .mobile-nav {
    right: 0;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav a {
    color: white;
    font-weight: 600;
    display: block;
    padding: 12px;
    border-radius: var(--radius);
}

.mobile-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--bg-color);
    color: white;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    z-index: 999;
    max-width: 500px;
    margin: 0 auto;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Hero Section */
.hero {
    background-image: url('./img/gaHWJ.jpg');
    background-size: cover;
    background-position: center center;
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero .btn {
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

/* About Section */
.about {
    background-color: var(--text-bg);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Benefits Section */
.benefits {
    background-color: var(--bg-color);
    color: white;
}

.benefits h2:after {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--radius);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: var(--radius);
}

.benefit-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 0.75;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-image {
    transform: scale(1.05);
}

/* Services Section */
.services {
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-card p {
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Audit Steps */
.audit-steps {
    background-color: var(--text-bg);
}

.steps-list {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    padding-top: 5px;
}

/* FAQ Section */
.faq {
    background-color: var(--light-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    margin-bottom: 15px;
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-right: 40px;
}

.faq-item summary:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-item[open] summary:after {
    content: '−';
}

.faq-answer {
    padding: 0 20px 20px;
}

/* Testimonials */
.testimonials {
    background-color: var(--bg-color);
    color: white;
}

.testimonials h2:after {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--radius);
    position: relative;
}

.testimonial blockquote {
    position: relative;
    padding-left: 25px;
}

.testimonial blockquote:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 2rem;
    color: var(--accent-color);
}

.testimonial cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: var(--accent-color);
}

/* Contact Section */
.contact {
    background-color: var(--text-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item svg {
    margin-right: 15px;
    flex-shrink: 0;
}

.map-container {
    margin-top: 30px;
    border-radius: var(--radius);
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
}

.contact-form h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 92, 87, 0.2);
}

.checkbox {
    display: flex;
    align-items: center;
}

.checkbox input {
    width: auto;
    margin-right: 10px;
}

.checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

/* Footer */
.site-footer {
    background-color: var(--bg-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info {
    max-width: 400px;
}

.footer-info h3,
.footer-links h3,
.footer-legal h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 15px;
}

.footer-links ul,
.footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-legal a {
    color: white;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    opacity: 1;
    color: var(--accent-color);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Policy Pages */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 0;
}

.policy-content h1 {
    margin-bottom: 30px;
}

.policy-content h2 {
    text-align: left;
    margin-top: 40px;
}

.policy-content h2:after {
    left: 0;
    transform: none;
}

.policy-content section {
    padding: 20px 0;
}

/* Media Queries */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .benefits-grid,
    .services-grid,
    .testimonials-grid,
    .contact-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-info,
    .footer-links,
    .footer-legal {
        text-align: center;
    }
    
    .footer-links ul,
    .footer-legal ul {
        align-items: center;
    }
} 