/* Full page modern design */
body {
    overflow-x: hidden;
}

/* Remove ALL ABP container constraints */
.lpx-wrapper,
.lpx-content-container,
.lpx-content,
.lpx-inner-content {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Hide ABP sidebar and header for this page */
.lpx-sidebar,
.lpx-header {
    display: none !important;
}

.card {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.card-body {
    padding: 0 !important;
}

/* Ultra Modern Futuristic Toolbar */
.lpx-toolbar {
    background: linear-gradient(135deg, #6B46C1 0%, #FB923C 60%, #6B46C1 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: toolbarGlow 3s ease-in-out infinite alternate;
}

@keyframes toolbarGlow {
    0% {
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    100% {
        box-shadow:
            0 12px 40px rgba(102, 126, 234, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.lpx-toolbar:hover {
    transform: translateY(-1px);
    box-shadow:
        0 16px 48px rgba(102, 126, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Futuristic Logo */
.lpx-toolbar .navbar-brand {
    color: white !important;
    font-weight: 800;
    font-size: 2.25rem;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: -0.5px;
}

.lpx-toolbar .navbar-brand::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -4px;
    right: -4px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lpx-toolbar .navbar-brand:hover {
    transform: scale(1.08) rotateY(5deg);
    text-shadow:
        0 0 20px rgba(255, 255, 255, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.4);
}

.lpx-toolbar .navbar-brand:hover::before {
    opacity: 1;
}

/* Next-Gen Navigation Links */
.lpx-toolbar .navbar-nav {
    gap: 8px;
}

.lpx-toolbar .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600;
    padding: 14px 24px !important;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
}

.lpx-toolbar .nav-link::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.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.lpx-toolbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fff, #FB923C);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.lpx-toolbar .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.lpx-toolbar .nav-link:hover::before {
    left: 100%;
}

.lpx-toolbar .nav-link:hover::after {
    width: 80%;
}

/* Futuristic Buttons */
.lpx-toolbar .btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    border-radius: 16px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

.lpx-toolbar .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.lpx-toolbar .btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.25),
        0 0 20px rgba(255, 255, 255, 0.2);
}

.lpx-toolbar .btn:hover::before {
    width: 120px;
    height: 120px;
}

.lpx-toolbar .btn-primary {
    background: linear-gradient(135deg, #6B46C1, #FB923C);
    border: none;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    position: relative;
}

.lpx-toolbar .btn-primary::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
}

.lpx-toolbar .btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8, #e8447f);
    box-shadow:
        0 15px 35px rgba(102, 126, 234, 0.6),
        0 0 30px rgba(245, 87, 108, 0.3);
    transform: translateY(-5px) scale(1.08);
}

/* Mobile Menu Button */
.navbar-toggler {
    border: none;
    padding: 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

@media (max-width: 991.98px) {
    .lpx-toolbar {
        padding: 16px 24px;
    }

    .lpx-toolbar .navbar-brand {
        font-size: 1.8rem;
    }

    .lpx-toolbar .nav-link {
        padding: 12px 20px !important;
        font-size: 1rem;
    }

    .lpx-toolbar .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* Full viewport sections with toolbar adjustment */
.sincap-contact-page {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

.sincap-contact-page section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #6B46C1 10%, #FB923C 60%, #f5576c 100%);
    position: absolute;
    padding: 120px 0 80px;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.03)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ffffff, #f0f9ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255,255,255,0.3);
    animation: heroTitleFloat 6s ease-in-out infinite;
}

@keyframes heroTitleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-subtitle {
    font-size: clamp(1.4rem, 4.5vw, 2.2rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Content Sections */
.content-section {
    padding: 100px 0;
    position: relative;
}

.section-bg-white {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.section-bg-gray {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Headers */
.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(107, 70, 193, 0.1);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6B46C1, #FB923C);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.contact-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-card-link {
    color: #6B46C1;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.3rem;
}

.contact-card-desc {
    color: #64748b;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

.contact-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #6B46C1, #FB923C);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
}

/* Contact Form */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-sidebar {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(6, 182, 212, 0.1), rgba(251, 146, 60, 0.1));
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(107, 70, 193, 0.2);
}

.contact-form-sidebar-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #1e293b;
}

.contact-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e293b;
    text-align: center;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    background: white;
    border: 2px solid #e2e8f0;
    color: #1e293b;
    padding: 18px 24px;
    border-radius: 16px;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #6B46C1;
    box-shadow: 0 0 0 4px rgba(107, 70, 193, 0.1);
    transform: translateY(-2px);
}

.contact-form label {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

/* Modern Button */
.btn-modern-submit {
    background: linear-gradient(135deg, #6B46C1, #06B6D4, #FB923C);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 1.2rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-modern-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(107, 70, 193, 0.4);
}

/* FAQ Styles */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(107, 70, 193, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-item-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.faq-item-icon {
    color: #6B46C1;
    margin-right: 0.5rem;
}

.faq-item-answer {
    color: #64748b;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Daha Fazla Butonu */
.btn-more-faq {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #6B46C1, #FB923C);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-more-faq::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.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-more-faq:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(107, 70, 193, 0.5);
    background: linear-gradient(135deg, #5a6fd8, #e8447f);
}

.btn-more-faq:hover::before {
    left: 100%;
}

.btn-more-faq:active {
    transform: translateY(-2px) scale(1.02);
}

/* Social Media */
.social-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e293b;
}

.social-subtitle {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* Regional Offices Section */
.regional-offices-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
}

.whatsapp-card {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.3);
    transition: all 0.4s ease;
    max-width: 600px;
    margin: 0 auto 3rem;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.whatsapp-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: float 8s ease-in-out infinite;
}

.whatsapp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(37, 211, 102, 0.4);
}

.whatsapp-card-inner {
    position: relative;
    z-index: 2;
}

.whatsapp-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.9;
}

.whatsapp-card-label {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.whatsapp-card-cta {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: white;
    display: inline-block;
}

.whatsapp-card-desc {
    margin-top: 0.5rem;
    opacity: 0.8;
    font-size: 1rem;
}

.regional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.regional-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border: 1px solid rgba(107, 70, 193, 0.08);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.regional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #6B46C1, #FB923C);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.regional-card:hover {
    transform: translateY(-6px) translateX(4px);
    box-shadow: 0 15px 35px rgba(107, 70, 193, 0.15);
    border-color: rgba(107, 70, 193, 0.2);
}

.regional-card:hover::before {
    opacity: 1;
}

.regional-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(251, 146, 60, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #6B46C1;
    transition: all 0.3s ease;
}

.regional-card:hover .regional-icon {
    background: linear-gradient(135deg, #6B46C1, #FB923C);
    color: white;
    transform: scale(1.1);
}

.regional-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.3rem 0;
}

.regional-info a {
    color: #6B46C1;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.regional-info a:hover {
    color: #FB923C;
}

/* Map Container */
.map-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(107, 70, 193, 0.1);
}

/* Smooth animations */
.animate-fadeInUp {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fadeInUp.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Modern gradients */
.gradient-mesh {
    background-image:
        radial-gradient(at 40% 20%, hsla(280, 100%, 74%, 0.3) 0px, transparent 50%),
        radial-gradient(at 80% 0%, hsla(189, 100%, 56%, 0.3) 0px, transparent 50%),
        radial-gradient(at 0% 50%, hsla(355, 100%, 93%, 0.3) 0px, transparent 50%),
        radial-gradient(at 80% 50%, hsla(340, 100%, 76%, 0.3) 0px, transparent 50%),
        radial-gradient(at 0% 100%, hsla(224, 100%, 75%, 0.3) 0px, transparent 50%),
        radial-gradient(at 80% 100%, hsla(242, 100%, 70%, 0.3) 0px, transparent 50%);
}

/* Glassmorphism effects */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark .glass-card {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Floating elements animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Gradient text animation */
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animated-gradient-text {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 80px;
    }

    .content-section {
        padding: 80px 0;
    }

    .section-container {
        padding: 0 1.5rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-container {
        padding: 2.5rem 2rem;
    }

    .contact-form-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-subtitle {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }

    .contact-card {
        padding: 2.5rem 2rem;
    }

    .contact-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .contact-form label {
        font-size: 1rem;
    }

    .btn-modern-submit {
        padding: 18px 32px;
        font-size: 1.1rem;
    }

    .faq-item {
        padding: 2rem;
    }

    .whatsapp-card-cta {
        font-size: 1.8rem;
    }

    .regional-grid {
        grid-template-columns: 1fr;
    }

    .regional-card {
        padding: 1.5rem;
    }
}
