:root {
    --primary-blue: #0f8fee;
    --secondary-green: #32b048;
    --dark-blue: #0367a6;
    --light-blue: #e6f4ff;
    --light-green: #e6ffe6;
    --white: #ffffff;
    --black: #333333;
    --gray: #f5f5f5;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: var(--black);
    line-height: 1.6;
    min-height: 100vh;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%230095ff' fill-opacity='0.05' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/svg%3E"),
        linear-gradient(to bottom, rgba(230, 245, 255, 0.3), rgba(255, 255, 255, 0.8));
    background-attachment: fixed;
}

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

.logo-containerr {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.logo-containerr img {
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}

.logo-containerr img:hover {
    transform: scale(1.05);
}

.logo-containerr::after {
    content: "Contact Us";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(to right, var(--primary-blue), var(--dark-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cloud-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(15, 143, 238, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(15, 143, 238, 0.4);
}

.contact-info::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.contact-info::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    color: var(--white);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--secondary-green);
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(50, 176, 72, 0.5);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
}

.info-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-item:hover .info-icon {
    background-color: var(--secondary-green);
    transform: rotate(360deg);
}

.info-icon i {
    font-size: 20px;
    color: white;
}

.info-item .content {
    flex: 1;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 600;
}

.info-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.nature-badge {
    background-color: var(--secondary-green);
    color: white;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(50, 176, 72, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nature-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.nature-badge:hover::before {
    left: 100%;
}

.nature-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 7px 20px rgba(50, 176, 72, 0.4);
}

.nature-badge i {
    margin-right: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
    position: relative;
    z-index: 1;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: var(--white);
    text-decoration: none;
    position: relative;
}

.social-links a:hover {
    background-color: var(--white);
    transform: translateY(-10px) rotate(360deg);
}

.social-links a:hover i {
    color: var(--primary-blue);
}

.social-links a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: var(--secondary-green);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-links a:hover::before {
    opacity: 0.2;
}

.social-links a i {
    margin: 0;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.social-tooltip::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px 5px 0;
    border-style: solid;
    border-color: var(--white) transparent transparent;
}

.social-links a:hover .social-tooltip {
    opacity: 1;
    top: -50px;
}

.map-form-container {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-container {
    width: 100%;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--white);
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
}

.map-overlay i {
    color: var(--primary-blue);
    font-size: 18px;
}

.map-overlay span {
    font-weight: 600;
    font-size: 14px;
    color: var(--black);
}

.form-container {
    background-color: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.form-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-blue), var(--secondary-green));
}

.form-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-blue);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.form-container h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-green), transparent);
    border-radius: 2px;
}

.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    pointer-events: none;
    transition: all 0.3s ease;
    color: #888;
    font-weight: 500;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group input:valid,
.input-group textarea:valid {
    border-color: var(--primary-blue);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(15, 143, 238, 0.1);
    outline: none;
}

.input-group input:focus+label,
.input-group textarea:focus+label,
.input-group input:valid+label,
.input-group textarea:valid+label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background-color: var(--white);
    padding: 0 5px;
    color: var(--primary-blue);
}

.input-group textarea {
    resize: vertical;
    min-height: 120px;
}

.input-group .input-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #888;
    transition: all 0.3s ease;
}

.input-group input:focus~.input-icon,
.input-group input:valid~.input-icon {
    color: var(--primary-blue);
}

.textarea-group .input-icon {
    top: 15px;
}

.submit-btn {
    background: linear-gradient(to right, var(--primary-blue), var(--dark-blue));
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(15, 143, 238, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(15, 143, 238, 0.4);
    background: linear-gradient(to right, var(--dark-blue), var(--primary-blue));
}

.submit-btn i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.thank-you-message {
    display: none;
    background-color: var(--light-green);
    color: var(--secondary-green);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(50, 176, 72, 0.2);
    animation: slideInUp 0.5s ease forwards;
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.thank-you-message i {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
    animation: scaleIn 0.5s ease forwards;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.quick-contact {
    background: linear-gradient(135deg, var(--light-blue), #d7e6ff);
    border-radius: 20px;
    padding: 25px;
    margin-top: 30px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 10px 20px rgba(15, 143, 238, 0.1);
    transition: all 0.3s ease;
}

.quick-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 143, 238, 0.15);
}

.quick-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.5);
}

.quick-item:hover {
    background-color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.quick-item i {
    font-size: 25px;
    color: var(--primary-blue);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(15, 143, 238, 0.1);
    transition: all 0.3s ease;
}

.quick-item:hover i {
    background: var(--primary-blue);
    color: white;
    transform: rotateY(360deg);
}

.quick-item span {
    font-weight: 600;
    color: var(--dark-blue);
}

.cloud {
    position: absolute;
    opacity: 0.7;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-10px) translateX(10px);
    }

    50% {
        transform: translateY(0) translateX(20px);
    }

    75% {
        transform: translateY(10px) translateX(10px);
    }

    100% {
        transform: translateY(0) translateX(0);
    }
}

.typing-indicator {
    display: flex;
    gap: 5px;
    margin-top: 10px;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.typing-indicator.active {
    opacity: 1;
    height: 20px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: inline-block;
    animation: typing 1.5s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.form-progress {
    width: 100%;
    height: 5px;
    background-color: #eee;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(to right, var(--primary-blue), var(--secondary-green));
    border-radius: 10px;
    transition: width 0.3s ease;
}


/* Media Queries */
@media (max-width: 1024px) {
    .container {
        padding: 30px 15px;
    }

    .contact-wrapper {
        gap: 20px;
    }

    .contact-info,
    .map-form-container {
        padding: 25px;
    }

    .quick-item {
        width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {

    .contact-info,
    .map-form-container {
        flex: 100%;
    }

    .quick-contact {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .quick-item {
        width: 100%;
    }

    .form-container {
        padding: 25px;
    }

    .contact-info h2,
    .form-container h2 {
        font-size: 24px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 10px;
    }

    .logo-containerr img {
        max-width: 250px;
    }

    .logo-containerr::after {
        font-size: 20px;
        bottom: -20px;
    }

    .contact-info {
        padding: 20px;
    }

    .info-item {
        margin-bottom: 20px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .form-container {
        padding: 20px;
    }

    .input-group {
        margin-bottom: 20px;
    }

    .submit-btn {
        padding: 12px 20px;
    }

    .map-container {
        height: 250px;
    }
}