/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.6;
    color: #1A1A2E;
    background-color: #F5F7FA;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(46, 134, 171, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #2E86AB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #A23B72;
}

.mobile-menu-toggle {
    display: none;
}

.mobile-menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-icon span {
    width: 25px;
    height: 3px;
    background: #2E86AB;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #1A1A2E;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2E86AB;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2E86AB, #A23B72);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .mobile-menu-icon {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(46, 134, 171, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle:checked ~ .main-nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-toggle:checked ~ .mobile-menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle:checked ~ .mobile-menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle:checked ~ .mobile-menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('./img/1D8LIx.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.85), rgba(162, 59, 114, 0.85));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #F18F01, #E67E22);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.125rem);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(241, 143, 1, 0.3);
    animation: pulse 2s infinite;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(241, 143, 1, 0.4);
}

.btn:active {
    transform: translateY(-1px);
}

/* Sections */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    color: #2E86AB;
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    color: #4A5568;
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Section 2: About Company */
.about-section {
    background-color: #F5F7FA;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(46, 134, 171, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 134, 171, 0.25);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #2E86AB, #A23B72);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FFFFFF;
}

.feature-card h3 {
    color: #2E86AB;
    margin-bottom: 1rem;
}

/* Section 3: Services Overview */
.services-section {
    background: #FFFFFF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #F5F7FA, #FFFFFF);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #2E86AB;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 134, 171, 0.2);
}

/* Section 4: Three Types of Audits */
.audits-section {
    background: linear-gradient(135deg, #F5F7FA, #FFFFFF);
    position: relative;
    overflow: hidden;
}

.audits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23F5F7FA' d='M0,50 Q360,0 720,50 T1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    opacity: 0.5;
}

.audits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.audit-card {
    background: #FFFFFF;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(46, 134, 171, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.audit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2E86AB, #A23B72, #F18F01);
    z-index: 2;
}

.audit-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.audit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.audit-card:hover .audit-image img {
    transform: scale(1.1);
}

.audit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 134, 171, 0.3);
}

.audit-card > .audit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2E86AB, #A23B72);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FFFFFF;
    margin: -35px auto 1.5rem auto;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(46, 134, 171, 0.3);
}

.audit-card h3,
.audit-card p {
    padding: 0 2.5rem;
}

.audit-card h3 {
    margin-top: 0;
}

.audit-card p {
    padding-bottom: 2.5rem;
}

.audit-card:hover .audit-icon {
    transform: rotate(0deg) scale(1.1);
}

.audit-card h3 {
    color: #2E86AB;
    margin-bottom: 1rem;
}

.audit-card p {
    color: #4A5568;
    line-height: 1.8;
}

/* Section 5: Benefits */
.benefits-section {
    background: #FFFFFF;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    min-width: 50px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F18F01, #E67E22);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    color: #1A1A2E;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #4A5568;
}

/* Section 6: Process */
.process-section {
    background: linear-gradient(135deg, #2E86AB, #A23B72);
    color: #FFFFFF;
}

.process-section .section-title {
    color: #FFFFFF;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    color: #2E86AB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.process-step h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.9);
}

/* Section 7: Trust */
.trust-section {
    background: #F5F7FA;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(46, 134, 171, 0.15);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #2E86AB;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #4A5568;
    font-weight: 600;
}

/* Section 8: Order Form */
.order-form-section {
    background: linear-gradient(135deg, #2E86AB, #A23B72);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.order-form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}

.order-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.form-title {
    text-align: center;
    color: #2E86AB;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1A1A2E;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    background-color: #FFFFFF;
    color: #1A1A2E;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2E86AB;
    box-shadow: 0 0 0 3px rgba(46, 134, 171, 0.1);
}

.form-group select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group a {
    color: #2E86AB;
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: #A23B72;
}

.form-submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, #F18F01, #E67E22);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 143, 1, 0.3);
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(241, 143, 1, 0.4);
}

/* Section 9: Contact & Footer */
.contact-section {
    background: #FFFFFF;
    padding: 60px 0 0;
}

.contact-info {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info h2 {
    color: #2E86AB;
    margin-bottom: 2rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    padding: 1.5rem;
}

.contact-item h4 {
    color: #2E86AB;
    margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
    color: #4A5568;
    text-decoration: none;
}

.contact-item a:hover {
    color: #2E86AB;
    text-decoration: underline;
}

/* Footer */
.main-footer {
    background: #1A1A2E;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #F18F01;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    color: #FFFFFF;
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-content a {
    color: #F18F01;
    text-decoration: underline;
}

.cookie-accept-btn {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #F18F01, #E67E22);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(241, 143, 1, 0.4);
}

/* Policy Pages */
.policy-page {
    padding: 60px 20px;
    background: #F5F7FA;
    min-height: 70vh;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(46, 134, 171, 0.15);
    border: 2px solid rgba(46, 134, 171, 0.1);
}

.policy-container h1 {
    color: #2E86AB;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-container h2 {
    color: #2E86AB;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-container h3 {
    color: #1A1A2E;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-container p {
    margin-bottom: 1rem;
    color: #4A5568;
    line-height: 1.8;
}

.policy-container ul,
.policy-container ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #4A5568;
}

.policy-container li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.policy-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #E2E8F0;
}

.policy-contact h3 {
    color: #2E86AB;
    margin-bottom: 1rem;
}

.policy-contact p {
    margin-bottom: 0.5rem;
}

/* Extra Pages (About, Blog, Tips, FAQ) */
.content-page {
    padding: 60px 20px;
    background: #F5F7FA;
    min-height: 70vh;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(46, 134, 171, 0.15);
}

.content-container h1 {
    color: #2E86AB;
    margin-bottom: 2rem;
    text-align: center;
}

.content-container h2 {
    color: #2E86AB;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-container p {
    margin-bottom: 1.5rem;
    color: #4A5568;
    line-height: 1.8;
    font-size: clamp(1rem, 2vw, 1.125rem);
}

.content-container ul,
.content-container ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: #4A5568;
}

.content-container li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

/* FAQ */
.faq-section {
    background: #FFFFFF;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: #F5F7FA;
    border-radius: 10px;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 700;
    color: #2E86AB;
    list-style: none;
    transition: background 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before {
    content: '+';
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::before {
    content: '−';
    transform: rotate(180deg);
}

.faq-item summary:hover {
    background: rgba(46, 134, 171, 0.1);
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
    color: #4A5568;
    line-height: 1.8;
}

/* Thank You Page */
.thank-you-page {
    padding: 60px 20px;
    background: linear-gradient(135deg, #2E86AB, #A23B72);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-container {
    max-width: 600px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.thank-you-container h1 {
    color: #2E86AB;
    margin-bottom: 1.5rem;
}

.thank-you-container p {
    color: #4A5568;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    section {
        padding: 50px 0;
    }
    
    .hero-section {
        min-height: 70vh;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
    
    .hero-section {
        min-height: 60vh;
        background-attachment: scroll;
    }
    
    .order-form-container {
        padding: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-accept-btn {
        width: 100%;
    }
    
    .policy-container,
    .content-container {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .features-grid,
    .services-grid,
    .audits-grid,
    .benefits-grid,
    .process-steps,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
}

