/* 
   Domain - Financial Auditing Services
   Main Stylesheet
   Colors:
   - Dark purple (#2B0A3D) - background
   - Cyan (#00F5D4) - accents and buttons
   - Coral (#FF006E) - links and highlights
   - Lime (#BBF146) - interactive elements
   - Deep black (#0F0F0F) - text
*/

/* Base Styles */
:root {
    --dark-purple: #2B0A3D;
    --dark-purple-alt: #340d4a; /* Slightly lighter for footer */
    --cyan: #00F5D4;
    --coral: #FF006E;
    --lime: #BBF146;
    --black: #0F0F0F;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, var(--cyan), var(--coral));
}

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

@font-face {
    font-family: 'Icon Font';
    src: url('data:font/woff2;charset=utf-8;base64,d09GMgABAAAAAAKIAA0AAAAABpQAAAIxAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP0ZGVE0cGh4GYACCZhEICoIUgRQLDAABNgIkAxYEIAWDGwcVG7MFyC6Bi3mTKgKpUaCLA0SBeD6u9ffk7rtJVVVVjagqxgITI8LkIeLh//1+2zOz+y+vThRNEh5PJBKRSFQiCYl4JOHRaIQFH9/HlTKPXfij9AKtKrCwIOgJzv9/ZdUJMDQ2MnQ0NTOtAlQ2KryKMv5XVk8LqJxZvS5QOCrK356Z+v8F0ASowt4mAwbMlUsWLpyz8RRQq8BmM6BsZR3TgK3MpTpAAxRQAQV0A9yGNmAN8IPICY6JZ5MTPNM/5/KMhk/O/LT5jS3vjn2xJ/bd7/UJUZgs9D3Yu3X7HCC/tjlQcDgF2Q6AbYvMAIwAAlQAdgGgldlBOCWZnVLZSQnCYZLlUg6A/QrQugQxhMtqWUP9mvUbn3n12vxPW4KGlQHABTD/9w54pwb4A73AvxnmagBAxkTyf+MoDn5pQf7PIjczMxfgHU0KFBgwMYNwCrPo7p1W3MrVUsbv/+/ow62A/+43IFHUbZxMSZDUdR9lzfRQ0DMERWvHULK2omXLDGEHFosDqHVdQ9LEB0hdT1HW9xM1Qx9QtO4nlGwG+pQdm2OPmmBQVEbcsKbFnZrODXMM05l6OCta2OWhPgy0GFNnZCYUfe+oJkuONyUMM8xo0eJ4ByE70MLmeuia1bTEWCTpWFfoSSI5VlPLYdDlSi1pzGFdRTZY0zc5zjKag55bCkUW5uJBfVBAE2NUTRRTENEv96hMJhnPJMGgGYxoYgu7gwh1o3qWa0N6TFMtxkQiOUx3jLzsGFKTrBqcMmGrVjStTGOubZ0qa0LDPZyrKJUlAAAA') format('woff2');
    font-weight: normal;
    font-style: normal;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--dark-purple);
    overflow-x: hidden;
}

a {
    color: var(--coral);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
    color: var(--lime);
    transform: translateY(-2px);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

h1 {
    font-size: 4.8rem;
    margin-bottom: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 3.6rem;
    position: relative;
    margin-bottom: 4rem;
    text-align: center; /* Center all h2 */
}

h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%; /* Center the underline */
    transform: translateX(-50%);
    width: 6rem;
    height: 0.4rem;
    background: var(--lime);
    border-radius: 0.2rem;
}

h3 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 2rem;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Header & Navigation */
header {
    padding: 1.2rem 0; /* Reduced padding to make header smaller */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(43, 10, 61, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: padding 0.3s ease;
}

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

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 40px; /* Reduced size */
    height: 20px; /* Reduced size */
    margin-right: 1rem;
    filter: drop-shadow(0 0 5px rgba(0, 245, 212, 0.5));
}

.logo-text {
    font-size: 2.2rem; /* Slightly reduced */
    font-weight: 700;
    color: var(--white);
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    align-items: center; /* Ensures alignment with logo */
}

.desktop-nav li {
    margin-left: 3rem;
    display: flex;
    align-items: center; /* Vertical alignment */
    height: 40px; /* Match height with logo container */
}

.desktop-nav a {
    color: var(--white);
    font-weight: 600;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--cyan);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient);
    color: var(--white) !important;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 245, 212, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 110, 0.4);
}

.cta-button::after {
    display: none;
}

.mobile-menu-button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--dark-purple);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-nav li {
    margin: 1rem 0;
    text-align: center;
}

.mobile-nav a {
    color: var(--white);
    font-weight: 600;
    display: block;
    padding: 1rem;
}

/* Hero Section */
.hero {
    padding: 20rem 0 10rem;
    background: linear-gradient(to bottom right, rgba(43, 10, 61, 0.9), rgba(43, 10, 61, 1));
    position: relative;
    overflow: hidden;
    text-align: center; /* Center align text */
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.2) 0%, rgba(43, 10, 61, 0) 70%);
    border-radius: 50%;
    animation: pulse 8s infinite alternate;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.2) 0%, rgba(43, 10, 61, 0) 70%);
    border-radius: 50%;
    animation: pulse 6s infinite alternate-reverse;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 60rem;
    color: var(--white);
    margin: 0 auto; /* Center content */
}

.hero h1 {
    font-size: 5.6rem;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 4rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* About Section */
.about {
    background-color: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--dark-purple);
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0% 100%);
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(43, 10, 61, 0.2);
}

.about-image img {
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content h2 {
    color: var(--dark-purple);
}

.about-content p {
    color: #666;
}

.section-title {
    text-align: center; /* Center align section titles */
    position: relative;
    margin-bottom: 4rem;
    display: block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%; /* Center the underline */
    transform: translateX(-50%);
    width: 6rem;
    height: 0.4rem;
    background: var(--lime);
    border-radius: 0.2rem;
}

/* Services Section */
.services {
    background-color: var(--white);
    position: relative;
}

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

.service-card {
    background: white;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(43, 10, 61, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(43, 10, 61, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.1), rgba(255, 0, 110, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    fill: url(#service-gradient);
}

/* Process Section */
.process {
    background-color: var(--dark-purple);
    color: var(--white);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100px;
    background-color: var(--white);
    clip-path: polygon(0 0, 100% 30%, 100% 0, 0 0);
    z-index: 1;
}

.process .container {
    position: relative;
    z-index: 2;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 6rem;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 6rem;
    height: 6rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    box-shadow: 0 5px 15px rgba(0, 245, 212, 0.3);
    position: relative;
    z-index: 3;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 20%;
    width: 60%;
    height: 2px;
    background: linear-gradient(to right, var(--cyan), var(--coral));
    z-index: 1;
}

.step-title {
    color: var(--lime);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--dark-purple);
    clip-path: polygon(0 0, 0 30%, 100% 0);
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(43, 10, 61, 0.1);
    position: relative;
}

.testimonial-quote {
    font-size: 2rem;
    color: var(--coral);
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.5rem;
    border: 2px solid var(--cyan);
    position: relative;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Make sure image covers the entire area */
    object-position: center; /* Center the image within the container */
}

.author-name {
    font-weight: 700;
    color: var(--dark-purple);
}

.author-company {
    font-size: 1.4rem;
    color: #888;
}

/* Contact Section */
.contact {
    background-color: var(--dark-purple);
    color: var(--white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100px;
    background-color: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 30%);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
}

.contact-info {
    color: var(--white);
}

.contact-info h3 {
    color: var(--lime);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.info-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.1), rgba(255, 0, 110, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 2rem;
    color: var(--cyan);
}

.info-content h4 {
    color: var(--cyan);
    margin-bottom: 0.5rem;
}

/* Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.1) 0%, rgba(43, 10, 61, 0) 70%);
    z-index: -1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.form-group {
    margin-bottom: 2.5rem;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--cyan);
    font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1.5rem;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--white);
    font-size: 1.6rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px var(--cyan);
}

.form-textarea {
    min-height: 12rem;
    resize: vertical;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300F5D4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1.5rem;
    cursor: pointer; /* Add pointer cursor */
}

/* Custom select styling */
.form-select {
    position: relative;
    z-index: 1;
}

.form-select:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2); /* Brighter background on focus */
    box-shadow: 0 0 0 2px var(--cyan);
}

.form-select option {
    background-color: var(--dark-purple);
    color: var(--white);
    padding: 1rem;
}

.form-select option:hover,
.form-select option:focus,
.form-select option:checked {
    background-color: var(--cyan);
    color: var(--dark-purple);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.form-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 2.2rem;
    height: 2.2rem;
    border: 2px solid var(--cyan);
    border-radius: 4px;
    margin-right: 1rem;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.form-checkbox:checked {
    background-color: var(--cyan);
}

.form-checkbox:checked::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--dark-purple);
    font-weight: 700;
}

.checkbox-label {
    font-size: 1.4rem;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--cyan);
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 1.5rem;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Footer Styles */
footer {
    background-color: var(--dark-purple-alt); /* Slightly different color */
    color: var(--white);
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.footer-section h3 {
    color: var(--cyan);
    margin-bottom: 2rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 3rem;
    height: 2px;
    background: var(--coral);
}

.footer-description {
    color: #CCCCCC;
    margin-top: 1.5rem;
}

.footer-links,
.contact-info {
    list-style: none;
}

.footer-links li,
.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-links a {
    color: #CCCCCC;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--lime);
}

.contact-info li i {
    margin-right: 1rem;
    color: var(--cyan);
    font-size: 1.8rem;
}

.contact-info a {
    color: #CCCCCC;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

/* Cookie Popup */
#cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid var(--cyan);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 300px;
    backdrop-filter: blur(10px);
    animation: slideIn 0.5s forwards;
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    display: flex;
    flex-direction: column;
}

.cookie-content p {
    color: var(--white);
    margin-bottom: 15px;
}

#accept-cookies {
    background: var(--gradient);
    border: none;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.3s ease;
}

#accept-cookies:hover {
    transform: translateY(-3px);
}

/* Legal Pages Styling */
.legal-page {
    background-color: var(--white);
    padding: 15rem 0 8rem;
}

.legal-container {
    max-width: 80rem;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.legal-content {
    background-color: white;
    padding: 4rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(43, 10, 61, 0.1);
    border: 1px solid #EEE;
}

.legal-content h3 {
    color: var(--dark-purple);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content p, .legal-content ul {
    color: #666;
    margin-bottom: 1.5rem;
}

.legal-content ul {
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Thank You Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-purple);
    padding: 6rem 0;
}

.thanks-container {
    text-align: center;
    max-width: 60rem;
    padding: 5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.thanks-container h1 {
    color: var(--white);
    margin-bottom: 3rem;
}

.thanks-container p {
    color: #CCC;
    font-size: 1.8rem;
    margin-bottom: 4rem;
}

.back-home {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.back-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Icon styles */
.icon-address:before {
    font-family: 'Icon Font';
    content: '\f3c5';
}

.icon-phone:before {
    font-family: 'Icon Font';
    content: '\f095';
}

.icon-email:before {
    font-family: 'Icon Font';
    content: '\f0e0';
}

/* Responsive Styles */
@media (max-width: 1200px) {
    html {
        font-size: 58%;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 56%;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 70%;
        margin: 0 auto;
    }
    
    .process-steps::before {
        left: 10%;
        width: 80%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 54%;
    }
    
    h1 {
        font-size: 4rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-button {
        display: flex;
    }
    
    .hero {
        padding: 18rem 0 8rem;
    }
    
    .hero::before {
        top: -25%;
        height: 100%;
        width: 100%;
    }
    
    .hero::after {
        bottom: -15%;
        width: 80%;
        height: 80%;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-step {
        margin-bottom: 5rem;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .contact-form {
        padding: 3rem;
    }
    
    .about::before {
        height: 70px;
        clip-path: polygon(0 0, 100% 0, 100% 15%, 0% 100%);
    }
    
    .process::before {
        height: 70px;
        clip-path: polygon(0 0, 100% 15%, 100% 0, 0 0);
    }
    
    .testimonials::before {
        height: 70px;
        clip-path: polygon(0 0, 0 15%, 100% 0);
    }
    
    .contact::before {
        height: 70px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 15%);
    }
    
    .section {
        padding-top: 8rem;
    }
    
    .section-title {
        margin-top: 1rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 52%;
    }
    
    h1 {
        font-size: 3.6rem;
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    .section {
        padding: 6rem 0;
    }
    
    .legal-content {
        padding: 3rem;
    }
    
    .hero::before {
        top: -30%;
    }
    
    .about::before {
        height: 60px;
        clip-path: polygon(0 0, 100% 0, 100% 10%, 0% 100%);
    }
    
    .process::before {
        height: 60px;
        clip-path: polygon(0 0, 100% 10%, 100% 0, 0 0);
    }
    
    .testimonials::before {
        height: 60px;
        clip-path: polygon(0 0, 0 10%, 100% 0);
    }
    
    .contact::before {
        height: 60px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 10%);
    }
}

/* PHP-handled mobile menu toggle style */
.mobile-nav.active {
    display: block;
}

/* PHP-handled FAQ style */
.faq-item {
    margin-bottom: 2rem;
}

.faq-question {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 1.5rem 2rem;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question.active {
    background-color: rgba(255, 255, 255, 0.1);
}

.faq-toggle {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    position: relative;
    flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--cyan);
    transition: all 0.3s ease;
}

.faq-toggle::before {
    width: 2rem;
    height: 2px;
}

.faq-toggle::after {
    width: 2px;
    height: 2rem;
}

.faq-question.active .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem 2rem;
    max-height: 500px;
} 