/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2B3A67;     /* Deep navy blue - professional and elegant */
    --secondary-color: #5C7AEA;   /* Modern bright blue */
    --accent-color: #E63946;      /* Modern red for CTAs */
    --text-color: #2C3E50;        /* Softer dark blue for text */
    --light-gray: #F8FAFC;        /* Very light blue-gray */
    --white: #ffffff;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --base-font-size: 16px;
    --h1-size: clamp(2rem, 5vw, 3rem);
    --h2-size: clamp(1.5rem, 4vw, 2.5rem);
    --h3-size: clamp(1.2rem, 3vw, 1.8rem);
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    width: min(95%, 1200px);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(43, 58, 103, 0.95), rgba(92, 122, 234, 0.9)),
                url('../images/hero-bg.jpg') center/cover;
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
}

.hero h1 {
    font-size: var(--h1-size);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.3s ease;
    font-weight: 600;
    box-shadow: var(--box-shadow);
}

.cta-button:hover {
    background: #d63442;
    transform: translateY(-2px);
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
    background: var(--light-gray);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Process Section */
.process {
    padding: 4rem 0;
}

.process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--box-shadow);
}

/* CTA Section */
.cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta h2 {
    margin-bottom: 1rem;
}

.cta p {
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: linear-gradient(to bottom right, var(--primary-color), #1a2749);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: var(--h1-size);
    margin-bottom: 1rem;
}

/* Services Grid */
.services-grid {
    padding: 4rem 0;
    background: var(--light-gray);
}

.services-grid .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-card h2 {
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.price-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.price-card.featured {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(to bottom, var(--white), var(--light-gray));
}

.price-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-card .price {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.price-card .price span {
    font-size: 1rem;
    color: var(--text-color);
}

.price-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.price-card ul li {
    margin: 0.5rem 0;
}

/* About Page Styles */
.about-content {
    padding: 4rem 0;
}

.about-grid {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    margin: 2rem 0 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    margin-top: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 1rem;
}

.team-culture {
    background: var(--light-gray);
    padding: 4rem 0;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.culture-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.culture-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.info-item h3 {
    margin-bottom: 0.5rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.map-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        margin: 5px 0;
        transition: 0.3s;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .page-header {
        padding: 6rem 0 3rem;
    }

    .cta {
        padding: 3rem 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }

    .logo-img {
        height: 32px;
    }
}

/* Add to the existing CSS */
.logo-img {
    height: 40px;
    width: auto;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .logo-img {
        height: 32px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: var(--light-gray);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin: 0;
    color: var(--primary-color);
}

.testimonial-author p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
}

.cookie-banner p {
    margin: 0;
}

.cookie-banner button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: var(--white);
}

.social-links i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .social-links {
        justify-content: center;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 2rem;
}

.whatsapp-text {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    font-weight: 500;
}

.whatsapp-float a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-float a {
        padding: 0.8rem;
        border-radius: 50%;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}

/* Trust Indicators */
.trust-indicators {
    padding: 4rem 0;
    background: var(--light-gray);
}

.trust-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    margin-top: 3rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: var(--text-color);
    font-weight: 500;
}

/* Trial CTA */
.trial-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.trial-content {
    max-width: 600px;
    margin: 0 auto;
}

.trial-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.trial-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trial-feature i {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .trial-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trial-feature {
        justify-content: center;
    }
}

/* Samples Page Styles */
.samples-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.samples-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.samples-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.sample-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.sample-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.sample-preview {
    margin-bottom: 1.5rem;
    border-radius: 5px;
    overflow: hidden;
}

.sample-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.download-options {
    border-top: 1px solid var(--light-gray);
    padding-top: 1.5rem;
}

.original-cv,
.formatted-versions {
    margin-bottom: 1.5rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-btn i {
    margin-right: 0.5rem;
}

.download-btn.pdf {
    background: #dc3545;
}

.download-btn.word {
    background: #0d6efd;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.template-downloads {
    display: grid;
    gap: 1rem;
}

.template {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: var(--light-gray);
    border-radius: 5px;
}

.template span {
    font-weight: 500;
}

@media (max-width: 768px) {
    .sample-card {
        padding: 1.5rem;
    }
    
    .template {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

.notice {
    background: #f8f9fa;
    border-left: 4px solid var(--secondary-color);
    padding: 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.notice i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

/* Add loading state styles */
.download-btn {
    position: relative;
    transition: all 0.3s ease;
}

.download-btn.loading {
    opacity: 0.7;
    cursor: wait;
}

.download-btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Typography */
h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }

/* Container responsive width */
.container {
    width: min(95%, 1200px);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Grid Systems */
.benefits-grid,
.services-grid,
.pricing-grid,
.samples-grid,
.testimonials-grid,
.values-grid,
.trust-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

/* Responsive Spacing */
@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .page-header {
        padding: 6rem 0 3rem;
    }

    .cta {
        padding: 3rem 0;
    }
}

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Responsive Cards */
@media (max-width: 576px) {
    .service-card,
    .benefit-card,
    .price-card,
    .sample-card,
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Form Responsiveness */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Sample CV Section Responsiveness */
@media (max-width: 576px) {
    .template {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .download-buttons {
        justify-content: center;
    }
}

/* Footer Responsiveness */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-section {
        padding: 0 1rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* WhatsApp Float Button Responsiveness */
@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }

    .whatsapp-float a {
        padding: 0.8rem;
    }

    .whatsapp-text {
        display: none;
    }
}

/* Pricing Section Responsiveness */
@media (max-width: 992px) {
    .price-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Trust Indicators Responsiveness */
@media (max-width: 576px) {
    .trust-number {
        font-size: 2rem;
    }
}

/* Hero Section Responsiveness */
@media (max-width: 576px) {
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Image Responsiveness */
img {
    max-width: 100%;
    height: auto;
}

/* Map Responsiveness */
.map-container iframe {
    height: 300px;
}

/* Table Responsiveness */
@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Cookie Banner Responsiveness */
@media (max-width: 576px) {
    .cookie-banner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
    }
} 