@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Italianno&display=swap');

:root {
    /* --primary-color: #3b88c3; */
    --primary-color: #68D9D0;
    --primary-dark: #2d6a9f;
    --primary-light: #e8f4fc;
    --text-dark: #343A40;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gradient: linear-gradient(135deg, #3b88c3 0%, #2d6a9f 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}


.container{
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

@media screen and (max-width: 1600px){
    .container{
        max-width: 1320px;
    }
}

@media screen and (max-width: 1400px){
    .container{
        max-width: 1180px;
    }
}

@media screen and (max-width: 1200px){
    .container{
        max-width: 1020px;
    }
}

.section-pt{
    padding-top: 120px;
}

.section-pb{
    padding-bottom: 120px;
}

@media screen and (max-width: 992px) {
    .section-pt{
        padding-top: 80px;
    }

    .section-pb{
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 768px) {
    .section-pt{
        padding-top: 60px;
    }

    .section-pb{
        padding-bottom: 60px;
    }
}

/* ============================================
   ANIMATED CIRCLES
   ============================================ */
.hero-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

.hero-circle-1 {
    width: 350px;
    height: 350px;
    border: 1px solid rgba(59, 136, 195, 0.15);
    top: 10%;
    right: -100px;
    animation: spinCircle 25s linear infinite;
}

.hero-circle-1::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.hero-circle-2 {
    width: 200px;
    height: 200px;
    border: 1px dashed rgba(59, 136, 195, 0.2);
    bottom: 15%;
    left: -2%;
    animation: spinCircleReverse 20s linear infinite;
}

.hero-circle-2::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(59, 136, 195, 0.4);
    border-radius: 50%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Services Section Circles */
.services-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.services-circle-1 {
    width: 280px;
    height: 280px;
    border: 1px solid rgba(59, 136, 195, 0.12);
    top: 20%;
    left: -80px;
    animation: spinCircle 22s linear infinite;
}

.services-circle-1::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(59, 136, 195, 0.3);
    border-radius: 50%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.services-circle-2 {
    width: 150px;
    height: 150px;
    border: 1px dashed rgba(59, 136, 195, 0.18);
    bottom: 10%;
    right: 8%;
    animation: spinCircleReverse 18s linear infinite;
}

.services-circle-2::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Section Journey Circle Position */
.section-journey .hero-circle {
    top: -100px;
    left: -60px;
}

/* ============================================
   ANIMATED CIRCLE WITH TEXT
   ============================================ */
.hero-circle-text {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 2px solid rgba(59, 136, 195, 0.25);
    border-radius: 50%;
    bottom: 25%;
    right: 15%;
    animation: spinCircle 30s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
}

.hero-circle-text img {
    width: 250px;
    opacity: 0.5;
}

@keyframes spinCircle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinCircleReverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

/* Circle positions for different sections */
.circle-journey {
    top: 50px;
    left: 10%;
    right: auto;
    bottom: auto;
}

.circle-culture {
    top: 50%;
    right: 5%;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
    animation: spinCircleCulture 30s linear infinite;
}


@keyframes spinCircleCulture {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

@keyframes spinCircleCultureReverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

.circle-footer {
    top: 20px;
    left: 5%;
    right: auto;
    bottom: auto;
}

@media (max-width: 1024px) {
    .hero-circle-1 {
        width: 250px;
        height: 250px;
        right: -80px;
        top: 5%;
    }

    .services-circle-1 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 992px) {
    .hero-circle {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-circle-1,
    .hero-circle-2,
    .services-circle-1 {
        display: none;
    }

    .services-circle-2 {
        width: 100px;
        height: 100px;
        opacity: 0.5;
    }
}

/* ============================================
   FOOTER - Minimal design
   ============================================ */
.footer {
    text-align: center;
    background: var(--white);
    position: relative;
}

.footer 
.hero-circle{
    top: -180px;
    left: -60px;
}

.footer-contact-title {
    font-size: 34px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: 'Italianno', cursive;
}

.footer-email{
    margin-bottom: 40px;
}

.footer-email a{
    font-size: 18px;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid #eee;
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-light);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: var(--text-dark);
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}