/* 
 * Main stylesheet for domain.com
 * Author: Professional Web Designer
 * Color palette:
 * - Main background: #f1f7ed (light green)
 * - Main accent: #2c2a4a (deep plum purple)
 * - Secondary accent: #ff8360 (coral orange)
 * - UI elements: #33658a (steel blue), #86bbd8 (light blue)
 * - Text: #1a1a1a (primary), #666 (secondary)
 */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #f1f7ed;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: #33658a;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff8360;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: #2c2a4a;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #2c2a4a, #ff8360);
    margin: 15px auto 0;
    border-radius: 2px;
}

p {
    margin-bottom: 20px;
}

section {
    padding: 80px 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #2c2a4a, #33658a);
    color: white;
    box-shadow: 0 4px 15px rgba(44, 42, 74, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #33658a, #2c2a4a);
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(44, 42, 74, 0.4);
    color: white;
}

/* Header Styles */
header {
    background-color: #f1f7ed;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2c2a4a, #ff8360);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    line-height: 1;
    margin-right: 30px;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
}

nav li {
    margin-left: 25px;
    display: flex;
    align-items: center;
}

nav a {
    font-weight: 600;
    position: relative;
    line-height: 1;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ff8360;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Mobile Menu Styles (PHP-based) - moved to header.php inline styles */

#mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 42, 74, 0.98);
    z-index: 2000;
}

#mobile-menu.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#mobile-menu ul {
    list-style: none;
}

#mobile-menu li {
    margin: 20px 0;
    text-align: center;
}

#mobile-menu a {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(241, 247, 237, 0.9), rgba(134, 187, 216, 0.9)), url('../img/05nove.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 120px 0;
    position: relative;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 1.2s ease;
}

.hero-section .btn {
    animation: fadeInUp 1.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.benefits-list {
    list-style: none;
    margin-top: 20px;
}

.benefits-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff8360;
    font-weight: bold;
}

/* Services Section */
.services-section {
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(145deg, #ffffff, #f1f7ed);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 42, 74, 0.05), rgba(255, 131, 96, 0.05));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    box-shadow: 0 0 25px rgba(51, 101, 138, 0.4), 0 0 5px rgba(255, 131, 96, 0.5);
}

.card-icon {
    width: 100%;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid #f1f7ed;
    position: relative;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-icon img {
    transform: scale(1.05);
}

.service-card h3 {
    margin-bottom: 15px;
}

/* Trust Section */
.certifications {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cert-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-icon svg {
    width: 100%;
    height: 100%;
    color: #33658a;
}

.cert-item span {
    font-weight: 600;
    color: #2c2a4a;
}

.clients {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    opacity: 0.7;
}

/* Process Section */
.process-section {
    background-color: #f9fafb;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -15px;
    width: 30px;
    height: 2px;
    background-color: #33658a;
    display: none;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2c2a4a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 100%;
    height: 100%;
    color: #33658a;
}

.step h3 {
    margin-bottom: 10px;
}

/* Contact Form Section */
.contact-section {
    position: relative;
    background: linear-gradient(135deg, rgba(241, 247, 237, 0.9), rgba(134, 187, 216, 0.9)), url('../img/6bTY7t.jpg');
    background-size: cover;
    background-position: center;
    color: #1a1a1a;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-2deg);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-check {
    margin-bottom: 15px;
}

.form-check input {
    margin-right: 10px;
}

/* FAQ Section */
.faq-section {
    background-color: #fff;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: #f5f8f9;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #2c2a4a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* Footer Styles */
footer {
    background-color: #2c2a4a;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: #ff8360;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color: #86bbd8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: white;
    max-width: 350px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 1000;
    transform: rotate(-2deg);
    border: 2px solid #ff8360;
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.5s ease forwards;
}

.cookie-popup h3 {
    margin-bottom: 10px;
}

.cookie-popup p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    justify-content: space-between;
}

.cookie-btn {
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
}

.accept-cookies {
    background-color: #33658a;
    color: white;
}

.decline-cookies {
    background-color: #f1f1f1;
    color: #1a1a1a;
}

@keyframes slideUp {
    from {
        transform: translateY(100px) rotate(-2deg);
        opacity: 0;
    }
    to {
        transform: translateY(0) rotate(-2deg);
        opacity: 1;
    }
}

/* Policy Pages */
.policy-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background-color: #f1f7ed;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-container h1 {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #2c2a4a;
}

.policy-container h2 {
    margin-top: 40px;
    text-align: left;
}

.policy-container h2::after {
    margin-left: 0;
}

.policy-container p {
    margin-bottom: 20px;
}

.policy-container ul, .policy-container ol {
    margin: 20px 0;
    padding-left: 25px;
}

.policy-container li {
    margin-bottom: 10px;
}

/* Thank You Page */
.thank-you-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 300px);
    padding: 60px 0;
}

.thank-you-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    border: 2px solid #33658a;
    border-radius: 15px;
    padding: 50px 40px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.check-icon {
    width: 80px;
    height: 80px;
    background-color: #33658a;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon svg {
    width: 60%;
    height: 60%;
}

/* Responsive Styles */
@media (min-width: 992px) {
    .step:not(:last-child)::after {
        display: block;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 30px;
        transform: none;
    }

    .thank-you-container {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 40px 0;
    }
    
    h2 {
        margin-bottom: 30px;
    }
    
    .service-card {
        padding: 20px;
    }

    .card-icon {
        height: 160px;
    }
}

/* Animations */
.fadeIn {
    animation: fadeIn 1s ease;
}

.fadeInUp {
    animation: fadeInUp 1s ease;
}

.fadeInLeft {
    animation: fadeInLeft 1s ease;
}

.fadeInRight {
    animation: fadeInRight 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
} 