/* 
Main Color Palette:
- Background: #1E1F26 (deep coal-purple)
- Main accent: #F2C94C (golden yellow)
- Secondary elements: #23B5D3 (turquoise), #CBF3F0 (ice blue)
- Text: #FFFFFF and #E0E0E0
*/

:root {
    --color-bg: #1E1F26;
    --color-accent: #F2C94C;
    --color-secondary: #23B5D3;
    --color-secondary-light: #CBF3F0;
    --color-text: #FFFFFF;
    --color-text-light: #E0E0E0;
    --container-width: 1200px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Fix horizontal scrolling */
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden; /* Fix horizontal scrolling */
    width: 100%; /* Ensure content doesn't extend beyond viewport */
    max-width: 100%; /* Fix horizontal scrolling */
    position: relative; /* Fix horizontal scrolling */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background-color: var(--color-accent);
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

a {
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-accent);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 5rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-bg);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--color-accent);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: transparent;
    color: var(--color-accent);
}

.btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn--outline {
    background-color: transparent;
    color: var(--color-accent);
}

.btn--outline:hover {
    background-color: var(--color-accent);
    color: var(--color-bg);
}

.btn--glass {
    background-color: rgba(242, 201, 76, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(242, 201, 76, 0.3);
    color: var(--color-text);
}

.btn--glass:hover {
    background-color: rgba(242, 201, 76, 0.3);
    color: var(--color-text);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(30, 31, 38, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text);
}

.header__logo span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
}

.nav__menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(30, 31, 38, 0.7), rgba(30, 31, 38, 0.85)),
                url('./img/WPTumQ.jpg') center/cover no-repeat;
    text-align: center; /* Center hero content */
}

.hero__content {
    max-width: 700px;
    margin: 0 auto; /* Center hero content */
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.hero__title span {
    color: var(--color-accent);
}

.hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* About Section */
.about {
    position: relative;
    overflow: hidden;
}

.about__title {
    text-align: center;
    margin-bottom: 3rem;
}

.about__title::after {
    left: 50%;
    transform: translateX(-50%);
}

.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about__image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 20px; /* Add top margin to move image lower */
}

.about__image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--color-accent);
    opacity: 0.2;
    border-radius: 50%;
    z-index: -1;
}

.about__image::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background-color: var(--color-secondary);
    opacity: 0.15;
    border-radius: 50%;
    z-index: -1;
}

.about__content {
    padding: 2rem;
    text-align: center; /* Center the text */
}

/* Services Section */
.services {
    background-color: rgba(35, 181, 211, 0.05);
    position: relative;
}

.services__title {
    text-align: center;
    margin-bottom: 3rem;
}

.services__title::after {
    left: 50%;
    transform: translateX(-50%);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: rgba(30, 31, 38, 0.7);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 3px solid var(--color-accent);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card__image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card__image img {
    transform: scale(1.05);
}

.service-card__content {
    padding: 2rem;
}

/* Why Us Section */
.why-us__title {
    text-align: center;
    margin-bottom: 3rem;
}

.why-us__title::after {
    left: 50%;
    transform: translateX(-50%);
}

.why-us__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-us-card {
    background-color: rgba(35, 181, 211, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.why-us-card__number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(242, 201, 76, 0.2);
    margin-bottom: 1rem;
}

/* Process Section */
.process {
    position: relative;
}

.process__title {
    text-align: center;
    margin-bottom: 4rem;
}

.process__title::after {
    left: 50%;
    transform: translateX(-50%);
}

.process__steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.process__steps::before {
    content: '';
    position: absolute;
    left: 2.5rem;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: rgba(242, 201, 76, 0.3);
}

.process-step {
    display: flex;
    gap: 2rem;
    position: relative;
}

.process-step__number {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: var(--color-bg);
    border: 2px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    flex-shrink: 0;
    z-index: 1;
}

.process-step__content {
    padding: 1.5rem;
    background-color: rgba(35, 181, 211, 0.05);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    flex-grow: 1;
}

/* Testimonials Section */
.testimonials {
    background-color: rgba(203, 243, 240, 0.02);
}

.testimonials__title {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials__title::after {
    left: 50%;
    transform: translateX(-50%);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: rgba(30, 31, 38, 0.7);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    height: 100%; /* Ensure same height for all cards */
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    font-family: 'Georgia', serif;
    color: rgba(242, 201, 76, 0.2);
    line-height: 1;
}

.testimonial-card__content {
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Allow content to expand */
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card__author-image {
    width: 60px;
    height: 60px;
    min-width: 60px; /* Ensure fixed width */
    min-height: 60px; /* Ensure fixed height */
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-accent);
    position: relative;
}

.testimonial-card__author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.testimonial-card__author-name {
    font-weight: 600;
    color: var(--color-text);
}

.testimonial-card__author-title {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Contact Form Section */
.contact {
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--color-accent);
    opacity: 0.05;
    border-radius: 50%;
    z-index: -1;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background-color: var(--color-secondary);
    opacity: 0.05;
    border-radius: 50%;
    z-index: -1;
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact__content {
    padding: 2rem;
}

.contact__form {
    background-color: rgba(30, 31, 38, 0.7);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.contact__form::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: var(--color-secondary);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    font-family: 'Open Sans', sans-serif;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(242, 201, 76, 0.1);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23F2C94C' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.5rem;
    border: 2px solid var(--color-accent);
    font-weight: 600;
    cursor: pointer;
}

select.form-control option {
    background-color: var(--color-bg);
    color: var(--color-text);
    padding: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.checkbox-group a {
    color: var(--color-accent);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(35, 181, 211, 0.1), rgba(30, 31, 38, 0.95), rgba(242, 201, 76, 0.1));
    padding-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(242, 201, 76, 0.05);
    z-index: 0;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(35, 181, 211, 0.05);
    z-index: 0;
}

.footer__container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer__logo span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--color-text);
}

.footer__description {
    max-width: 300px;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer__col h4 {
    color: var(--color-text);
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer__col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-accent);
}

.footer__col ul li {
    margin-bottom: 0.75rem;
}

.footer__contact address {
    font-style: normal;
    color: var(--color-text-light);
}

.footer__contact address p {
    margin-bottom: 0.75rem;
}

.footer__bottom {
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-light);
    position: relative;
    z-index: 1;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(30, 31, 38, 0.95);
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: bottom 0.5s ease;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    margin-bottom: 0;
}

/* Policy Pages */
.policy-page {
    padding: 8rem 0 5rem;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.policy-content ul, .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

/* Thank You Page */
.thank-you {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px; /* Add padding for header */
}

.thank-you__content {
    max-width: 600px;
    width: 90%;
    padding: 3rem;
    background-color: rgba(30, 31, 38, 0.7);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--color-accent); /* Add border */
    margin: 0 auto; /* Ensure proper centering */
}

.thank-you__content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background-color: var(--color-accent);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.thank-you__content::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: var(--color-secondary);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.thank-you__icon {
    width: 80px;
    height: 80px;
    background-color: rgba(242, 201, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thank-you__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about__container,
    .contact__container {
        grid-template-columns: 1fr;
    }
    
    .about__image {
        margin: 0 auto;
        max-width: 80%;
        margin-bottom: 2rem;
    }
    
    .footer__container {
        grid-template-columns: 1fr;
    }
    
    .footer__links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    .about__image {
        max-width: 100%;
    }
    
    .menu-icon {
        display: block;
    }
    
    .nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--color-bg);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    
    .menu-toggle:checked ~ .nav__menu {
        left: 0;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer__links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process__steps {
        padding-left: 0.5rem;
    }
    
    .process__steps::before {
        left: 1.75rem;
    }
    
    .process-step {
        gap: 1.5rem;
    }
    
    .process-step__number {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.3rem;
    }
    
    .process-step__content {
        padding: 1.25rem;
    }
}

@media (max-width: 576px) {
    html, body {
        overflow-x: hidden;
    }

    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .footer__links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process__steps {
        padding-left: 0;
    }
    
    .process__steps::before {
        left: 1.5rem;
    }
    
    .process-step {
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .process-step__number {
        width: 3rem;
        height: 3rem;
        font-size: 1.2rem;
        margin-bottom: -1.5rem;
        margin-left: 0;
        z-index: 2;
    }
    
    .process-step__content {
        width: 100%;
        margin-left: 1rem;
        padding-top: 2rem;
    }
    
    .process-step__content h3 {
        font-size: 1.4rem;
    }
} 