:root {
    --primary-color: #2C3E50;
    --secondary-color: #3498DB;
    --accent-color: #E74C3C;
    --light-bg: #F8F9FA;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
}

.hero-section {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.7)), url('../img/hero.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
}

.service-card {
    border: none;
    transition: transform 0.3s;
    background: var(--light-bg);
    border-radius: 10px;
    padding: 20px;
}

.service-card:hover {
    transform: translateY(-5px);
}

.custom-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.contact-section {
    background-color: var(--light-bg);
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-section {
    background-color: var(--secondary-color);
    color: white;
}

.btn-custom {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-custom:hover {
    background-color: #c0392b;
    color: white;
    transform: scale(1.05);
}


/* Success Steps Section Styles */
.success-steps-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.success-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.step-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    width: 280px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-connector {
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    margin-top: 100px;
}

.step-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.step-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step-hover-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.step-card:hover .step-hover-content {
    max-height: 200px;
}

.step-hover-content ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.step-hover-content li {
    padding: 5px 0;
    color: var(--secondary-color);
}

/* Coaching Areas Section Styles */
.coaching-areas-section {
    background: white;
    padding: 80px 0;
}

.coaching-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.coaching-area {
    perspective: 1000px;
    height: 300px;
}

.area-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.coaching-area:hover .area-inner {
    transform: rotateY(180deg);
}

.area-front, .area-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.area-front {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.area-back {
    background: white;
    transform: rotateY(180deg);
    border: 2px solid var(--secondary-color);
}

.area-front i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.area-back ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.area-back li {
    padding: 5px 0;
    color: var(--secondary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .step-connector {
        display: none;
    }

    .step-card {
        width: 100%;
        max-width: 280px;
        margin-bottom: 40px;
    }

    .coaching-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* Success Steps Section Styles */
.success-steps-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.success-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.step-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    width: 280px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-connector {
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    margin-top: 100px;
}

.step-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.step-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step-hover-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.step-card:hover .step-hover-content {
    max-height: 200px;
}

.step-hover-content ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.step-hover-content li {
    padding: 5px 0;
    color: var(--secondary-color);
}

/* Coaching Areas Section Styles */
.coaching-areas-section {
    background: white;
    padding: 80px 0;
}

.coaching-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.coaching-area {
    perspective: 1000px;
    height: 300px;
}

.area-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.coaching-area:hover .area-inner {
    transform: rotateY(180deg);
}

.area-front, .area-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.area-front {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.area-back {
    background: white;
    transform: rotateY(180deg);
    border: 2px solid var(--secondary-color);
}

.area-front i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.area-back ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.area-back li {
    padding: 5px 0;
    color: var(--secondary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .step-connector {
        display: none;
    }

    .step-card {
        width: 100%;
        max-width: 280px;
        margin-bottom: 40px;
    }

    .coaching-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
/* Contact Section Styles */
.contact-section {
    background-color: #f8f9fa;
}

/* Contact Info Card */
.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-item p {
    margin-bottom: 0;
    color: #6c757d;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
    color: white;
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form label {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-custom {
    background: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-info-card,
    .contact-form-card {
        margin-bottom: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* Form Validation Styles */
.contact-form .form-control:invalid {
    border-color: #dc3545;
}

.contact-form .form-control:valid {
    border-color: #28a745;
}

/* Loading State for Submit Button */
.btn-custom.loading {
    opacity: 0.8;
    cursor: wait;
}

/* Custom Select Styling */
select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.me-2 {
    height: 40px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(33, 37, 41, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 0;
    z-index: 1000;
    transform: translateY(100%);
    animation: slideCookieBanner 0.5s forwards;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
}

.btn-accept {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    background: white;
    color: #212529;
    transform: translateY(-2px);
}

@keyframes slideCookieBanner {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .cookie-banner p {
        margin-bottom: 1rem;
    }

    .cookie-banner .text-md-end {
        text-align: center !important;
    }
}