/* 
* Main Styles for ConsultPro
* Color Palette:
* - Background: Gradient from #014F86 to #FF6B6B
* - Accents: #FFA41B (mandarin), #C8FF00 (neon lime)
* - Text: #1C1C1C (graphite black), #FFFFFF (white)
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1C1C1C;
    background: linear-gradient(135deg, #014F86 0%, #FF6B6B 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #014F86;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFA41B;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: #014F86;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(1, 79, 134, 0.3);
}

.btn-primary:hover {
    background-color: #013a63;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(1, 79, 134, 0.4);
    color: #FFFFFF;
}

.btn-secondary {
    background-color: #FFA41B;
    color: #1C1C1C;
    box-shadow: 0 4px 12px rgba(255, 164, 27, 0.3);
}

.btn-secondary:hover {
    background-color: #ff9500;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 164, 27, 0.4);
}

/* Header */
.main-header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(1, 79, 134, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.8rem;
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: #FFFFFF;
    font-weight: 500;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #C8FF00;
    transition: width 0.3s ease;
}

.main-nav ul li a:hover {
    color: #C8FF00;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 2;
}

.menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #FFFFFF;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.menu-icon span:nth-child(1) {
    top: 0px;
}

.menu-icon span:nth-child(2) {
    top: 8px;
}

.menu-icon span:nth-child(3) {
    top: 16px;
}

/* Main Content */
main {
    padding: 120px 0 80px;
    min-height: calc(100vh - 300px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(1, 79, 134, 0.95);
    color: #FFFFFF;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
}

.cookie-banner p {
    margin-bottom: 0;
    margin-right: 20px;
    flex: 1;
}

.cookie-banner a {
    color: #C8FF00;
    text-decoration: underline;
}

/* Sections */
.section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: #014F86;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 80px;
    height: 3px;
    background: #FFA41B;
    transform: translateX(-50%);
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 50px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    margin-bottom: 30px;
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card-img {
    height: 200px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 20px;
}

.service-card h3 {
    color: #014F86;
    margin-bottom: 15px;
}

.service-card-content .btn {
    margin-top: 15px;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.feature {
    flex: 0 0 calc(25% - 30px);
    margin-bottom: 40px;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(1, 79, 134, 0.1);
    color: #014F86;
    font-size: 30px;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #014F86;
}

/* Process Section */
.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 50px 0;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #E0E0E0;
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #014F86;
    color: #FFFFFF;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    font-size: 1.3rem;
    font-weight: 600;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #014F86;
}

/* Testimonials Section */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonial {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    margin: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #014F86;
    outline: none;
    box-shadow: 0 0 0 3px rgba(1, 79, 134, 0.1);
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.form-check-input {
    margin-right: 10px;
    margin-top: 5px;
}

.form-errors {
    color: #FF6B6B;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Footer */
.main-footer {
    background: rgba(1, 79, 134, 0.95);
    color: #FFFFFF;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    margin-right: 30px;
    margin-bottom: 30px;
}

.footer-section:last-child {
    margin-right: 0;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #C8FF00;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFA41B;
}

.footer-section address p {
    margin-bottom: 10px;
}

.footer-section address p a {
    color: #FFFFFF;
}

.footer-section address p a:hover {
    color: #FFA41B;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Thank You Page */
.thank-you {
    text-align: center;
    padding: 100px 0;
}

.thank-you h1 {
    color: #FFFFFF;
    margin-bottom: 30px;
}

.thank-you p {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Policy Pages */
.policy-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-content h2 {
    color: #014F86;
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content ul, 
.policy-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content ul li, 
.policy-content ol li {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.7rem;
    }
    
    .service-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .feature {
        flex: 0 0 calc(50% - 20px);
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100vh;
        background: #014F86;
        z-index: 1;
        transition: left 0.3s ease;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .menu-toggle:checked ~ .main-nav {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 80px 0 0;
    }
    
    .main-nav ul li {
        margin: 0;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-nav ul li a::after {
        display: none;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        top: 8px;
        transform: rotate(135deg);
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
        left: -60px;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        top: 8px;
        transform: rotate(-135deg);
    }
    
    .service-card {
        flex: 0 0 100%;
    }
    
    .feature {
        flex: 0 0 100%;
    }
    
    .footer-section {
        flex: 0 0 100%;
        margin-right: 0;
    }
    
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner p {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 50px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 20px;
    }
} 