
/* ================================
   CONTACT CONTENT SECTION STYLES
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #e8e2f5 0%, #f5f0ff 30%, #fff5e6 70%, #ffe0e6 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.video-container {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    background: #000000;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* DARK CONTACT FORM SECTION - Updated to WHITE */
.dark-contact-section {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.dark-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.dark-contact-intro {
    text-align: left;
    max-width: 600px;
    line-height: 1.4;
}

.dark-small-heading {
    font-size: 0.9rem;
    font-weight: 300;
    color: #666666;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.dark-big-heading {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: #000000;
}

.dark-big-heading span {
    color: #ff6600;
    font-weight: 600;
}

.dark-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dark-form-row {
    display: flex;
    gap: 20px;
}

.dark-form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dark-form-group label {
    font-size: 0.8rem;
    font-weight: 300;
    color: #333333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dark-form-group input,
.dark-form-group textarea {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ff6600;
    padding: 12px;
    font-size: 0.95rem;
    border-radius: 4px;
    outline: none;
    transition: all 0.3s ease;
}

.dark-form-group input:focus,
.dark-form-group textarea:focus {
    border-color: #ff6600;
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.2);
}

.dark-form-group input::placeholder,
.dark-form-group textarea::placeholder {
    color: #999999;
}

.dark-attach-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dark-attach-label {
    font-size: 0.8rem;
    font-weight: 300;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dark-dropzone {
    background-color: #ffffff;
    border: 2px dashed #cccccc;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.dark-dropzone.dragover,
.dark-dropzone:hover {
    background-color: #f8f8f8;
    border-color: #ff6600;
    color: #ff6600;
}

.dark-dropzone input[type="file"] {
    display: none;
}

.dark-budget-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.dark-budget-options label {
    font-size: 0.8rem;
    font-weight: 300;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dark-budget-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dark-budget-buttons button {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ff6600;
    padding: 10px 16px;
    font-size: 0.85rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dark-budget-buttons button:hover,
.dark-budget-buttons button.selected {
    background-color: #ff6600;
    color: #ffffff;
    border-color: #ff6600;
}

.dark-submit-btn {
    background-color: #ff6600;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.dark-submit-btn:hover {
    background-color: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 102, 0, 0.4);
}

.dark-terms-text {
    font-size: 0.7rem;
    color: #666666;
    margin-top: 10px;
}

.dark-terms-text a {
    color: #ff6600;
    text-decoration: none;
}

.dark-terms-text a:hover {
    text-decoration: underline;
    color: #ff8533;
}

/* FAQ SECTION */
.faq-section {
    background: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.faq-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-left {
    width: 100%;
}

.faq-header {
    text-align: left;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    font-family: 'Volkhov', serif;
}

.faq-header p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 2px solid #ff6600;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.08);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.15);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 22px;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 102, 0, 0.05);
}

.faq-question.active {
    background: rgba(255, 102, 0, 0.1);
    color: #ff6600;
}

.faq-icon {
    font-size: 1.1rem;
    color: #ff6600;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(255, 102, 0, 0.02);
}

.faq-answer.active {
    max-height: 300px;
    padding: 0 22px 20px 22px;
}

.faq-answer-content {
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.7;
    padding-top: 8px;
}

/* FAQ RIGHT SIDE */
.faq-right {
    width: 100%;
    position: sticky;
    top: 100px;
}

.approach-card {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    position: relative;
}

.approach-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    font-family: 'Volkhov', serif;
    line-height: 1.3;
}

.approach-subtitle {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 50px;
}

.bubble-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    padding: 20px 0;
}

.speech-bubble {
    background: #ff6600;
    color: #ffffff;
    padding: 25px 32px;
    border-radius: 35px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 500;
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
    animation: bubbleFloat 3s ease-in-out infinite;
    transform-origin: center;
}

.bubble-content {
    position: relative;
    z-index: 2;
    font-style: italic;
}

.bubble-1 {
    align-self: flex-start;
    max-width: 88%;
    border-radius: 35px 35px 35px 10px;
    transform: rotate(-2deg);
    animation-delay: 0s;
}

.bubble-tail-1 {
    position: absolute;
    bottom: -10px;
    left: 25px;
    width: 22px;
    height: 22px;
    background: #ff6600;
    border-radius: 50% 0 50% 50%;
    transform: rotate(-48deg);
    box-shadow: -2px 2px 4px rgba(255, 102, 0, 0.2);
}

.bubble-2 {
    align-self: flex-end;
    max-width: 88%;
    border-radius: 35px 35px 10px 35px;
    transform: rotate(2deg);
    animation-delay: 1.5s;
}

.bubble-tail-2 {
    position: absolute;
    bottom: -10px;
    right: 25px;
    width: 22px;
    height: 22px;
    background: #ff6600;
    border-radius: 50% 50% 0 50%;
    transform: rotate(48deg);
    box-shadow: 2px 2px 4px rgba(255, 102, 0, 0.2);
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(-2deg);
    }
    50% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

.bubble-2 {
    animation-name: bubbleFloat2;
}

@keyframes bubbleFloat2 {
    0%, 100% {
        transform: translateY(0px) rotate(2deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.speech-bubble:hover {
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
    animation-play-state: paused;
}

.bubble-1:hover {
    transform: rotate(-2deg) scale(1.02) translateY(-5px);
}

.bubble-2:hover {
    transform: rotate(2deg) scale(1.02) translateY(-5px);
}

/* MAP SECTION */
.map-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
}

.map-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.map-header {
    text-align: center;
    margin-bottom: 50px;
}

.map-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    font-family: 'Volkhov', serif;
}

.map-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.simple-map-container {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 500px;
    transition: all 0.3s ease;
}

.simple-map-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.map-frame {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: all 0.3s ease;
    border-radius: 15px;
}

/* FOOTER STYLES */
.footer-section-complete {
    background: linear-gradient(135deg, #0f2862 0%, #1c3d7a 50%, #2a5298 100%);
    color: #e8f1ff;
    font-family: 'Inter', sans-serif;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.circle-left,
.circle-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: rgba(65, 105, 225, 0.12);
    border: 1px solid rgba(100, 149, 237, 0.25);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.6;
}

.circle-left {
    left: -200px;
}

.circle-right {
    right: -200px;
}

.footer-container-complete {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    position: relative;
    z-index: 2;
}

.footer-column-complete h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
}

.footer-column-complete ul {
    list-style: none;
    padding: 0;
}

.footer-column-complete ul li {
    margin-bottom: 16px;
}

.footer-column-complete ul li a {
    color: #b8d4ff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-column-complete ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-brand-complete {
    max-width: 320px;
}

.brand-header-complete {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.brand-logo-complete {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4169e1, #1e90ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
}

.brand-logo-complete img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.brand-header-complete h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.contact-text-complete {
    font-size: 14px;
    color: #b8d4ff;
    margin: 0 0 8px 0;
}

.phone-number-complete {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 0 35px 0;
}

.contact-info-complete {
    margin-bottom: 35px;
}

.contact-item-complete {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon-complete {
    width: 24px;
    height: 24px;
    color: #87ceeb;
}

.contact-details-complete {
    display: flex;
    flex-direction: column;
}

.contact-label-complete {
    color: #b8d4ff;
    display: block;
    font-size: 12px;
}

.contact-value-complete {
    color: white;
    font-weight: 500;
    display: block;
    font-size: 14px;
}

.social-icons-complete {
    display: flex;
    gap: 15px;
}

.social-link-complete {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8d4ff;
    text-decoration: none;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
}

.social-link-complete:hover {
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    border-color: #00bfff;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom-complete {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 60px;
    padding: 30px 0;
    background: rgba(15, 38, 98, 0.5);
}

.footer-bottom-container-complete {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.copyright-complete {
    font-size: 14px;
    color: #a8c8e8;
}

.footer-links-complete {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.footer-links-complete a {
    color: #a8c8e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-complete a:hover {
    color: #00bfff;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .dark-contact-section {
        padding: 60px 0;
    }

    .dark-contact-container {
        padding: 0 4%;
        gap: 30px;
    }

    .dark-form-row {
        flex-direction: column;
    }

    .dark-big-heading {
        font-size: 2rem;
    }

    .dark-attach-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .dark-dropzone {
        width: 100%;
    }

    .faq-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-header {
        text-align: center;
    }

    .faq-right {
        position: relative;
        top: 0;
    }

    .approach-title,
    .approach-subtitle {
        text-align: center;
    }

    .simple-map-container {
        height: 350px;
    }

    .footer-container-complete {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .video-container {
        height: 200px;
    }

    .dark-contact-section {
        padding: 40px 0;
    }

    .dark-big-heading {
        font-size: 1.75rem;
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-header h2 {
        font-size: 1.75rem;
    }

    .approach-title {
        font-size: 1.4rem;
    }

    .simple-map-container {
        height: 300px;
    }

    .footer-bottom-container-complete {
        padding: 0 20px;
    }
}
