/* ===================================
   PUVILINK-INSPIRED COLOR THEME
   Contact Page - Vaikun Technologies
   =================================== */

/* Contact page inherits global tokens from style.css */

/* ===================================
   HEADER NAVIGATION
   =================================== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    background: var(--bg-white);
    box-shadow: 0 2px 20px rgba(26, 58, 58, 0.1);
}

.nav-menu>li>a {
    color: var(--text-dark);
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
    color: var(--primary);
}

.nav-cta.active {
    background: var(--button-gradient);
    color: var(--text-on-action) !important;
    padding: 10px 24px;
    border-radius: 50px;
}

.nav-cta.active:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.dropdown-menu a:hover {
    background: rgba(113, 201, 206, 0.1);
    color: var(--primary);
}

/* ===================================
   PAGE HEADER (Hero Banner)
   =================================== */
.page-header {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 60px;
    background: var(--button-gradient);
    /* Uses default Teal gradient */
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    /* Teal Overlay Gradient */
    background: linear-gradient(135deg, rgba(113, 201, 206, 0.92) 0%, rgba(166, 227, 233, 0.92) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    /* Explicit white for contrast on teal */
    margin-bottom: 15px;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.section-title .highlight {
    background: var(--button-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(26, 58, 58, 0.08);
    /* Teal shadow */
}

.contact-form-wrapper>p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 16px;
}

/* ===================================
   FORM STYLES
   =================================== */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    font-family: var(--font-secondary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(113, 201, 206, 0.2);
    /* Teal border */
    border-radius: 10px;
    background: #ffffff;
    color: var(--text-dark);
    font-size: 15px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #adb5bd;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
    border-color: var(--secondary);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(113, 201, 206, 0.15);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236c757d' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

/* Buttons inherit from global style.css */
.btn-large {
    padding: 18px 50px;
    font-size: 16px;
}

/* ===================================
   CONTACT INFO WRAPPER
   =================================== */
.contact-info-wrapper {
    position: sticky;
    top: 120px;
}

.contact-info-wrapper .section-title {
    margin-bottom: 30px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.info-card {
    padding: 25px 0;
    border-bottom: 1px solid rgba(113, 201, 206, 0.2);
}

.info-card:first-child {
    padding-top: 0;
}

.info-card:last-child {
    border-bottom: none;
}

.info-icon {
    width: 56px;
    height: 56px;
    background: var(--button-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(113, 201, 206, 0.25);
}

.info-icon svg {
    color: var(--palette-obsidian);
    /* Dark icon on teal bg */
    stroke: var(--palette-obsidian);
}

.info-card h4 {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: var(--font-secondary);
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 8px;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-card a {
    color: var(--primary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--secondary);
}

/* Social Links in Contact */
.social-links-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.social-links-contact a {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(113, 201, 206, 0.1);
    color: var(--text-dark);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-links-contact a:hover {
    background: var(--button-gradient);
    color: var(--palette-obsidian);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Business Hours */
.business-hours {
    margin-top: 30px;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(113, 201, 206, 0.2);
}

.business-hours h4 {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: var(--font-secondary);
}

.business-hours ul {
    list-style: none;
}

.business-hours li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px dashed rgba(113, 201, 206, 0.3);
    font-size: 15px;
}

.business-hours li:last-child {
    border-bottom: none;
}

.business-hours li span {
    color: var(--text-dark);
    font-weight: 600;
}

/* ===================================
   MAP SECTION
   =================================== */
.map-section {
    background: var(--bg-white);
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(15%) contrast(1.05);
}

/* Footer inherits from global style.css */
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--button-gradient);
    border-radius: 2px;
}

.footer-description {
    color: var(--footer-text);
}

.footer-links a {
    color: var(--footer-text);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 8px;
    text-shadow: 0 0 10px rgba(113, 201, 206, 0.4);
}

.footer-contact li {
    color: var(--footer-text);
}

.footer-contact strong {
    color: var(--primary);
}

.footer-contact a {
    color: var(--secondary);
}

.footer-contact a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Social Links */
.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
    /* Teal Icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--button-gradient);
    color: var(--palette-obsidian);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* Footer Bottom */
.footer-bottom {
    background: var(--footer-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 50px;
    padding: 25px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-legal a:hover {
    color: var(--secondary);
}

/* Scroll to top inherits from global style.css */

/* ===================================
   MOBILE RESPONSIVE
   =================================== */
@media screen and (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-wrapper {
        position: static;
    }
}

@media screen and (max-width: 768px) {
    .page-header {
        padding: 100px 0 50px;
        min-height: auto;
    }

    .page-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .section-title {
        font-size: 26px;
    }

    .mobile-menu-toggle span {
        background: var(--text-dark);
    }

    .nav-menu {
        background: var(--bg-white);
    }

    .dropdown-menu {
        background: var(--bg-light);
    }

    .dropdown-menu .dropdown-menu {
        border-left: 2px solid var(--primary);
    }

    .business-hours {
        padding: 20px;
    }

    .info-icon {
        width: 48px;
        height: 48px;
    }

    .info-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media screen and (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }

    .btn-large {
        padding: 16px 35px;
        font-size: 14px;
        width: 100%;
    }

    .social-links-contact a {
        padding: 6px 12px;
        font-size: 13px;
    }
}