/* Contact Page Specific Styles - Bright Theme Matching Index */

/* Color Palette */
:root {
    --primary-color: #2c2c2c;
    --secondary-color: #4a4a4a;
    --accent-color: #6b6b6b;
    --light-gray: #f8f8f8;
    --medium-gray: #e8e8e8;
    --dark-gray: #2c2c2c;
    --text-dark: #2c2c2c;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --black: #000000;
    --gradient-primary: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    --gradient-accent: linear-gradient(135deg, #6b6b6b 0%, #8a8a8a 100%);
}

/* Creative Navigation Styles */
.creative-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
    transition: all 0.3s ease;
    height: 80px;
}

.creative-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(44, 44, 44, 0.1);
    height: 70px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo Section */
.nav-logo-section {
    flex: 0 0 auto;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.logo-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.logo-container:hover .logo-bg {
    opacity: 1;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-dark);
    margin: 0;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
    letter-spacing: 2px;
}

.nav-logo a {
    color: inherit;
    text-decoration: none !important;
}

.nav-logo a:hover {
    text-decoration: none !important;
}

.nav-logo a:focus {
    text-decoration: none !important;
    outline: none;
}

.nav-logo a:visited {
    text-decoration: none !important;
}

.nav-logo a:active {
    text-decoration: none !important;
}

/* Specific styling for the logo link */
.logo-container a {
    text-decoration: none !important;
    color: inherit;
}

.logo-container a:hover {
    text-decoration: none !important;
}

.logo-container a:focus {
    text-decoration: none !important;
    outline: none;
}

.logo-container a:visited {
    text-decoration: none !important;
}

.logo-container a:active {
    text-decoration: none !important;
}

.logo-container:hover .nav-logo {
    color: var(--white);
}

.logo-accent {
    position: absolute;
    top: 50%;
    right: -10px;
    width: 6px;
    height: 6px;
    background: var(--gradient-accent);
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.logo-container:hover .logo-accent {
    opacity: 1;
    transform: translateY(-50%) scale(1.5);
}

/* Center Navigation */
.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-menu {
    display: flex;
    gap: 50px;
    align-items: center;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    border-radius: 50px;
}

.nav-link:hover::before {
    left: 0;
}

.nav-text {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.nav-link:hover .nav-text {
    color: var(--white);
}

.nav-link.active .nav-text {
    color: var(--white);
}

.nav-link.active::before {
    left: 0;
}

.nav-indicator {
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover .nav-indicator {
    width: 80%;
}

.nav-link.active .nav-indicator {
    width: 80%;
}

.nav-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--medium-gray), transparent);
    transform: translateY(-50%);
    z-index: -1;
}

/* Right Section */
.nav-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(44, 44, 44, 0.3);
}

.cta-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-icon {
    transform: rotate(45deg);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.line {
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active .line-1 {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .line-2 {
    opacity: 0;
}

.hamburger.active .line-3 {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Floating Elements */
.nav-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.floating-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 50%;
    animation: floatDot 6s ease-in-out infinite;
}

.dot-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.dot-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.dot-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatDot {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 0.8;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    max-width: 400px;
    width: 90%;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-header h3 {
    font-size: 2rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: 2px;
}

.mobile-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.mobile-link {
    position: relative;
    text-decoration: none;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    padding: 20px 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.mobile-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
}

.mobile-link:hover::before {
    left: 0;
}

.mobile-link-text {
    position: relative;
    z-index: 2;
}

.mobile-link.active .mobile-link-text {
    color: var(--white);
}

.mobile-link.active::before {
    left: 0;
}

.mobile-link-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.mobile-link:hover .mobile-link-indicator {
    width: 60%;
}

.mobile-link.active .mobile-link-indicator {
    width: 60%;
}

.mobile-menu-cta {
    margin-top: 40px;
}

.mobile-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.mobile-cta-button:hover::before {
    left: 100%;
}

.mobile-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(44, 44, 44, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 30px;
    }
    
    .nav-link {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .creative-navbar {
        height: 70px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-center {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-logo {
        font-size: 1.5rem;
    }
    
    .logo-container {
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-logo {
        font-size: 1.3rem;
    }
    
    .logo-container {
        padding: 6px 12px;
    }
    
    .mobile-menu-content {
        width: 95%;
    }
    
    .mobile-link {
        font-size: 1.3rem;
    }
    
    .mobile-cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Page Hero */
.page-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.page-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.page-hero .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(44, 44, 44, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(44, 44, 44, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.page-hero .hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.page-hero .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(44, 44, 44, 0.1), rgba(44, 44, 44, 0.05));
    animation: float 8s ease-in-out infinite;
}

.page-hero .shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.page-hero .shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.page-hero .shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.page-hero .hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: heroContentFadeIn 1.2s ease-out;
}

@keyframes heroContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero .hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-dark);
    letter-spacing: -2px;
}

.page-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Info Section */
.contact-info-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.02) 0%, rgba(44, 44, 44, 0.01) 100%);
    z-index: 1;
}

.contact-info-section .container {
    position: relative;
    z-index: 2;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--medium-gray);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(44, 44, 44, 0.05);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 44, 44, 0.05), transparent);
    transition: left 0.5s ease;
}

.contact-info-card:hover::before {
    left: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(44, 44, 44, 0.15);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 30px;
    color: var(--white);
    transition: transform 0.3s ease;
}

.contact-info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.info-link {
    color: var(--text-dark);
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid var(--text-dark);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-block;
}

.info-link:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: scale(1.05);
}

.info-note {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* Contact Form Section */
.contact-form-section {
    padding: 120px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.02) 0%, rgba(44, 44, 44, 0.01) 100%);
    z-index: 1;
}

.contact-form-section .container {
    position: relative;
    z-index: 2;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 60px 40px;
    border: 1px solid var(--medium-gray);
    box-shadow: 0 20px 60px rgba(44, 44, 44, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    background: var(--light-gray);
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    color: var(--text-dark);
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-dark);
    box-shadow: 0 0 0 3px rgba(44, 44, 44, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group select option {
    background: var(--light-gray);
    color: var(--text-dark);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--medium-gray);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--text-dark);
    border-color: var(--text-dark);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-weight: bold;
    font-size: 12px;
}

.privacy-link {
    color: var(--text-dark);
    text-decoration: underline;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--text-dark);
    color: var(--white);
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-large:hover::before {
    left: 100%;
}

.btn-large:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 44, 44, 0.3);
}

/* Map Section */
.map-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.02) 0%, rgba(44, 44, 44, 0.01) 100%);
    z-index: 1;
}

.map-section .container {
    position: relative;
    z-index: 2;
}

.map-header {
    text-align: center;
    margin-bottom: 60px;
}

.map-header h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.map-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-placeholder {
    height: 400px;
    background: var(--light-gray);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 1px solid var(--medium-gray);
}

.map-placeholder i {
    font-size: 60px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.map-placeholder h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.map-placeholder p {
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.02) 0%, rgba(44, 44, 44, 0.01) 100%);
    z-index: 1;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--medium-gray);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(44, 44, 44, 0.05);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(44, 44, 44, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: var(--text-dark);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--white);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-hero {
        margin-top: 70px;
        min-height: 80vh;
    }
    
    .page-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-container {
        padding: 40px 20px;
        margin: 0 20px;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .map-placeholder {
        height: 300px;
        margin: 0 20px;
    }
    
    .map-placeholder i {
        font-size: 40px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .page-hero .hero-title {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 30px 15px;
        margin: 0 15px;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .map-placeholder {
        height: 250px;
        margin: 0 15px;
    }
    
    .map-placeholder i {
        font-size: 30px;
    }
    
    .map-placeholder h3 {
        font-size: 1.2rem;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 16px;
    }
}

/* Advanced Mobile Animations */
@media (max-width: 768px) {
    .contact-info-card {
        transform: translateY(20px);
        opacity: 0;
        animation: slideInUp 0.6s ease-out forwards;
    }
    
    .contact-info-card:nth-child(1) { animation-delay: 0.1s; }
    .contact-info-card:nth-child(2) { animation-delay: 0.2s; }
    .contact-info-card:nth-child(3) { animation-delay: 0.3s; }
    .contact-info-card:nth-child(4) { animation-delay: 0.4s; }
    
    @keyframes slideInUp {
        from {
            transform: translateY(20px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    .faq-item {
        transform: translateY(10px);
        opacity: 0;
        animation: slideInUp 0.4s ease-out forwards;
    }
    
    .faq-item:nth-child(1) { animation-delay: 0.1s; }
    .faq-item:nth-child(2) { animation-delay: 0.2s; }
    .faq-item:nth-child(3) { animation-delay: 0.3s; }
    .faq-item:nth-child(4) { animation-delay: 0.4s; }
    .faq-item:nth-child(5) { animation-delay: 0.5s; }
}

/* Touch Interactions */
@media (hover: none) and (pointer: coarse) {
    .contact-info-card:active {
        transform: translateY(-5px) scale(1.02);
    }
    
    .faq-question:active {
        background: var(--light-gray);
    }
    
    .info-link:active {
        transform: scale(0.95);
    }
    
    .btn-large:active {
        transform: scale(0.95);
    }
}

/* AOS Animation Overrides */
[data-aos] {
    pointer-events: auto;
}

[data-aos].aos-animate {
    pointer-events: auto;
}