* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

.olimpic-homepage {
    width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #05051F;
    color: #b8b8b8;
    line-height: 1.6;
    overflow-x: hidden;
}

:root {
    --color-primary: #FFD717;
    --color-accent: #d4af37;
    --color-dark: #05051F;
    --color-darker: #03030f;
    --color-btn: #152537;
    --color-text: #b8b8b8;
    --color-text-light: #a8b8d8;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.olimpic-homepage .hero {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    background: linear-gradient(135deg, rgba(5, 5, 31, 0.6) 0%, rgba(21, 37, 55, 0.6) 100%), url('../../images/Hero-Olimpicclub-polopeapa-inot.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.olimpic-homepage .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 215, 23, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.olimpic-homepage .hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
    padding: 20px;
}

.olimpic-homepage .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.olimpic-homepage .hero p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.olimpic-homepage .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.olimpic-homepage .btn {
    padding: 15px 35px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.olimpic-homepage .btn-primary {
    background: var(--color-primary);
    color: var(--color-dark);
}

.olimpic-homepage .btn-primary:hover {
    background: transparent;
    color: var(--color-primary);
    box-shadow: 0 0 20px rgba(255, 215, 23, 0.3);
    transform: translateY(-3px);
}

.olimpic-homepage .btn-secondary {
    background: transparent;
    color: var(--color-primary);
}

.olimpic-homepage .btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-dark);
    box-shadow: 0 0 20px rgba(255, 215, 23, 0.3);
    transform: translateY(-3px);
}

.olimpic-homepage .services {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.olimpic-homepage .section-title {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.olimpic-homepage .section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.olimpic-homepage .section-title p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.olimpic-homepage .services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    align-items: stretch;
}

.olimpic-homepage .service-card {
    background: linear-gradient(160deg, rgba(255, 215, 23, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(15px);
}

.olimpic-homepage .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.olimpic-homepage .service-card:hover {
    border-color: var(--color-primary);
    background: linear-gradient(160deg, rgba(255, 215, 23, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    box-shadow: 0 15px 45px rgba(255, 215, 23, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-12px) scale(1.02);
}

.olimpic-homepage .service-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(21, 37, 55, 0.8) 0%, rgba(5, 5, 31, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    position: relative;
    overflow: hidden;
}

.olimpic-homepage .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.olimpic-homepage .service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 215, 23, 0.1) 0%, transparent 70%);
}

.olimpic-homepage .service-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.olimpic-homepage .service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.olimpic-homepage .service-card p {
    color: var(--color-text);
    margin-bottom: 25px;
    line-height: 1.8;
    flex: 1;
}

.olimpic-homepage .service-card ul {
    text-align: left;
    margin-bottom: 30px;
    list-style: none;
}

.olimpic-homepage .service-card ul li {
    color: var(--color-text-light);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.olimpic-homepage .service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 20px;
}

.olimpic-homepage .service-card .btn {
    margin-top: auto;
}

.olimpic-homepage .why-us {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(21, 37, 55, 0.4) 0%, rgba(5, 5, 31, 0.8) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.olimpic-homepage .why-us-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.olimpic-homepage .why-us-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 215, 23, 0.15);
    animation: fadeInLeft 0.8s ease-out;
    height: 700px;
    background: linear-gradient(135deg, rgba(21, 37, 55, 0.8) 0%, rgba(5, 5, 31, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    position: relative;
}

.olimpic-homepage .why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.olimpic-homepage .why-us-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 215, 23, 0.1) 0%, transparent 70%);
}

.olimpic-homepage .why-us-content {
    animation: fadeInRight 0.8s ease-out;
}

.olimpic-homepage .why-us-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.olimpic-homepage .why-us-content ul {
    list-style: none;
}

.olimpic-homepage .why-us-content ul li {
    margin-bottom: 25px;
    padding-left: 40px;
    position: relative;
    color: var(--color-text);
    line-height: 1.8;
    font-size: 1.05rem;
}

.olimpic-homepage .why-us-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 28px;
    height: 28px;
    background-image: url('../../images/wpballIcon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position:
}
.olimpic-homepage .contact {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.olimpic-homepage .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.olimpic-homepage .contact-form {
    animation: fadeInLeft 0.8s ease-out;
}

.olimpic-homepage .contact-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.olimpic-homepage .contact-form p {
    color: var(--color-text);
    margin-bottom: 30px;
    line-height: 1.8;
}

.olimpic-homepage .contact-info {
    animation: fadeInRight 0.8s ease-out;
}

.olimpic-homepage .info-item {
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.olimpic-homepage .contact-info .info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.olimpic-homepage .info-item:hover {
    transform: translateX(5px);
}

.olimpic-homepage .info-item h3 {
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.olimpic-homepage .info-item p {
    color: var(--color-text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.olimpic-homepage .info-item a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
}

.olimpic-homepage .info-item a:hover {
    color: var(--color-primary);
}

.olimpic-homepage .map-container {
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(255, 215, 23, 0.1);
    height: 400px;
    background: linear-gradient(135deg, rgba(21, 37, 55, 0.8) 0%, rgba(5, 5, 31, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.olimpic-homepage .map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.olimpic-homepage .contact-social {
    display: flex;
    gap: 25px;
    margin-top: 15px;
}

.olimpic-homepage .contact-social a {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212,175,55,0.1);
    overflow: hidden;
    transition: var(--transition);
}

.olimpic-homepage .contact-social img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.2);
}

/* Contact Form 7 styling */
.olimpic-homepage .wpcf7 {
    width: 100%;
}

.olimpic-homepage .wpcf7 form p {
    margin-bottom: 20px;
}

.olimpic-homepage .wpcf7 label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.olimpic-homepage .wpcf7 input[type="text"],
.olimpic-homepage .wpcf7 input[type="email"],
.olimpic-homepage .wpcf7 select,
.olimpic-homepage .wpcf7 textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(21, 37, 55, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--color-text);
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.olimpic-homepage .wpcf7 input[type="text"]:focus,
.olimpic-homepage .wpcf7 input[type="email"]:focus,
.olimpic-homepage .wpcf7 select:focus,
.olimpic-homepage .wpcf7 textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(21, 37, 55, 0.8);
    box-shadow: 0 0 10px rgba(255, 215, 23, 0.2);
}

.olimpic-homepage .wpcf7 textarea {
    resize: vertical;
    min-height: 120px;
}

.olimpic-homepage .wpcf7 .wpcf7-submit {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    padding: 15px 35px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    background: var(--color-primary);
    color: var(--color-dark);
}

.olimpic-homepage .wpcf7 .wpcf7-submit:hover {
    background: transparent;
    color: var(--color-primary);
    box-shadow: 0 0 20px rgba(255, 215, 23, 0.3);
    transform: translateY(-3px);
}

.olimpic-homepage .wpcf7-list-item {
    margin: 0;
}

.olimpic-homepage .wpcf7-acceptance label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-transform: none;
    font-size: 13px;
    color: var(--color-text);
    line-height: 1.6;
}

.olimpic-homepage .wpcf7-acceptance input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--color-primary);
    flex-shrink: 0;
}

.olimpic-homepage .wpcf7-acceptance a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
}

.olimpic-homepage .wpcf7-acceptance a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@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);
    }
}

@media (max-width: 768px) {
    .olimpic-homepage .hero h1 {
        font-size: 2.5rem;
    }

    .olimpic-homepage .hero p {
        font-size: 1rem;
    }

    .olimpic-homepage .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .olimpic-homepage .btn {
        width: 100%;
    }

    .olimpic-homepage .section-title h2 {
        font-size: 1.8rem;
    }

    .olimpic-homepage .why-us-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .olimpic-homepage .why-us-image {
        height: 300px;
        font-size: 80px;
    }

    .olimpic-homepage .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .olimpic-homepage .contact-info {
        display: flex;
        flex-direction: column;
    }

    .olimpic-homepage .map-container {
        order: 1;
    }

    .olimpic-homepage .info-location {
        order: 2;
    }

    .olimpic-homepage .info-contact {
        order: 3;
    }

    .olimpic-homepage .info-social {
        order: 4;
    }
}

@media (max-width: 480px) {
    .olimpic-homepage .hero {
        margin-top: 50px;
        min-height: calc(100vh - 50px);
    }

    .olimpic-homepage .hero h1 {
        font-size: 1.8rem;
    }

    .olimpic-homepage .hero p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .olimpic-homepage .section-title h2 {
        font-size: 1.5rem;
    }

    .olimpic-homepage .service-content {
        padding: 25px;
    }

    .olimpic-homepage .services-grid {
        grid-template-columns: 1fr;
    }

    .olimpic-homepage .service-card h3 {
        font-size: 1.3rem;
    }

    .olimpic-homepage .why-us-content h2 {
        font-size: 1.8rem;
    }

    .olimpic-homepage .contact-form h2 {
        font-size: 1.5rem;
    }

    .olimpic-homepage .services,
    .olimpic-homepage .why-us,
    .olimpic-homepage .contact {
        padding: 50px 15px;
    }

    .olimpic-homepage .map-container {
        height: 250px;
        font-size: 40px;
    }
    
    .olimpic-homepage .service-card ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0 !important;
    }
    
    .olimpic-homepage .service-card ul li {
        position: relative;
        display: block;
        margin-bottom: 12px;
        padding: 0 0 0 18px !important;
        font-size: 0.92rem;
        line-height: 1.55;
    }
    
    .olimpic-homepage .service-card ul li::before {
        content: '✓';
        position: absolute;
        left: 0;
        top: 0;
        font-size: 13px;
        line-height: 1.55;
        color: var(--color-primary);
    }

    .olimpic-homepage .why-us-content ul {
        margin: 0;
        padding: 0 !important;
    }
    
    .olimpic-homepage .why-us-content ul li {
        position: relative;
        margin-bottom: 18px;
        padding: 0 0 0 26px !important;
        font-size: 0.98rem;
        line-height: 1.6;
    }
    
    .olimpic-homepage .why-us-content ul li::before {
        width: 18px;
        height: 18px;
        left: 0;
        top: 3px;
    }
}


