/* Variables */
:root {
    --color-indigo: #3a1e5c;
    --color-mandarin: #ff7e00;
    --color-cream: #fff8f0;
    --color-charcoal: #2f2f2f;
    --color-purple-light: #e7d8f4;
    --color-error: #e74c3c;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --border-radius: 8px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-charcoal);
    background-color: var(--color-cream);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-indigo);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--color-mandarin);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--color-indigo);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-mandarin);
}

.highlight {
    color: var(--color-mandarin);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    text-align: center;
}

.btn-primary {
    background-color: var(--color-mandarin);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-indigo);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-indigo);
    color: var(--color-indigo);
}

.btn-secondary:hover {
    background-color: var(--color-indigo);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
}

.logo span {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-left: 10px;
    color: var(--color-indigo);
}

.nav-toggle {
    display: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-mandarin);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

/* Main Sections */
section {
    padding: 100px 0;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
}

.hero .container {
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    margin-bottom: 30px;
    color: white;
    font-size: 3.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: white;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
    background-color: var(--color-cream);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transform: rotate(2deg);
}

.about-image::before {
    content: "";
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-mandarin);
    border-radius: var(--border-radius);
    z-index: -1;
}

/* Advantages Section */
.advantages {
    background-color: white;
    position: relative;
}

.advantages::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: var(--color-cream);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.advantage-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.advantage-icon {
    margin-bottom: 20px;
}

/* Services Section */
.services {
    background-color: var(--color-purple-light);
    position: relative;
}

.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: white;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 50%);
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-image {
    flex: 1;
    max-width: 40%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    flex: 1.5;
    padding: 30px;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card:last-child .service-content {
    background: linear-gradient(135deg, var(--color-indigo) 0%, #6642a0 100%);
    color: white;
}

.service-card:last-child h3 {
    color: white;
}

.service-card:last-child .btn-secondary {
    border-color: white;
    color: white;
}

.service-card:last-child .btn-secondary:hover {
    background-color: white;
    color: var(--color-indigo);
}

/* Testimonials Section */
.testimonials {
    background-color: white;
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    background-color: var(--color-cream);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.testimonial-rating {
    color: var(--color-mandarin);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.author-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.author-position {
    font-size: 0.9rem;
    color: #666;
}

/* Partners Section */
.partners {
    background-color: var(--color-cream);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    transition: var(--transition);
}

.partner-logo:hover {
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    background-color: white;
    position: relative;
}

.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: var(--color-cream);
    clip-path: polygon(0 0, 100% 0, 50% 100%, 0 0);
}

.contact-container {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-form {
    flex: 1;
    background: linear-gradient(to right, white, var(--color-purple-light));
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--color-indigo), var(--color-mandarin));
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--color-mandarin);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 126, 0, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
}

/* Form Error Styles */
.form-error-message {
    background-color: rgba(231, 76, 60, 0.1);
    border-left: 4px solid var(--color-error);
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: var(--border-radius);
}

.form-error-message p {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-error);
}

.form-error-message ul {
    margin-left: 20px;
}

.form-error-message li {
    margin-bottom: 5px;
    color: var(--color-error);
}

.form-group.has-error label {
    color: var(--color-error);
}

.form-group.has-error input,
.form-group.has-error select {
    border-color: var(--color-error);
    background-color: rgba(231, 76, 60, 0.05);
}

.form-group.has-error input:focus,
.form-group.has-error select:focus {
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

/* Footer */
footer {
    background-color: var(--color-indigo);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
}

.footer-column a:hover {
    color: var(--color-mandarin);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #999;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 9999;
    transition: var(--transition);
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content button {
    background-color: var(--color-mandarin);
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    margin-left: 20px;
    font-weight: 600;
}

.cookie-content button:hover {
    background-color: var(--color-indigo);
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .hero p {
        font-size: 1.3rem;
    }
    .service-card {
        flex-direction: column !important;
    }
    .service-image {
        max-width: 100%;
        height: 250px;
    }
    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    .hero {
        height: 100vh;
    }
    .hero h1 {
        font-size: 2.3rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .about-content {
        flex-direction: column;
    }
    .about-image {
        order: -1;
    }
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.8rem;
        cursor: pointer;
        color: var(--color-indigo);
    }
    nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        height: 0;
        overflow: hidden;
        transition: var(--transition);
    }
    nav.active {
        height: auto;
        padding: 20px 0;
    }
    nav ul {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    .testimonial-container {
        flex-direction: column;
        align-items: center;
    }
    .testimonial-card {
        max-width: 100%;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-content button {
        margin: 15px 0 0 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.7rem;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .contact-form {
        padding: 20px;
    }
} 