/* Welcome Introduction */
.welcome-intro {
    padding: 4rem 0;
    background-color: #ffffff;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.quick-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}

.quick-contact-item i {
    width: 3rem;
    height: 3rem;
    color: var(--secondary-color-600);
    flex-shrink: 0;
}

.quick-contact-item .label {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.quick-contact-item .value {
    display: block;
    font-weight: 600;
    color: #2c3e50;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Contact Information */
.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.info-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f1f5f9;
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--secondary-color-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: #fefefe;
}

.info-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.info-content .note {
    font-size: 0.875rem;
    color: var(--secondary-color-600);
    font-weight: 500;
}

/* Social Media */
.social-media {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.social-media h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link i {
    width: 1.5rem;
    height: 1.5rem;
}

.social-link.instagram {
    background-color: #f8f0ff;
    color: #8b5cf6;
    border: 1px solid #e4d4fd;
}

.social-link.instagram span{
    color: #8b5cf6;
}

.social-link.instagram:hover {
    background-color: #8b5cf6;
    color: #ffffff;
}
.social-link.instagram:hover span {
    color: #ffffff;
}

.social-link.linkedin {
    background-color: #eff6ff;
    color: #3b82f6;
    border: 1px solid #bfdbfe;
}

.social-link.linkedin span{
    color: #3b82f6;
}

.social-link.linkedin:hover {
    background-color: #3b82f6;
    color: #ffffff;
}
.social-link.linkedin:hover span{
    color: #ffffff;
}

.social-link.telegram {
    background-color: #ecfeff;
    color: #06b6d4;
    border: 1px solid #a5f3fc;
}

.social-link.telegram span {
    color: #06b6d4;
}
.social-link.telegram:hover {
    background-color: #06b6d4;
    color: #ffffff;
}

.social-link.telegram:hover span{
    color: #ffffff;
}

.social-link.whatsapp {
    background-color: #f0fdf4;
    color: #22c55e;
    border: 1px solid #bbf7d0;
}

.social-link.whatsapp span{
    color: #22c55e;
}

.social-link.whatsapp:hover {
    background-color: #22c55e;
    color: #ffffff;
}

.social-link.whatsapp:hover span{
    color: #ffffff;
}

/* Contact Form */
.contact-form-container {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form-container h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.form-description {
    color: #64748b;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color-600);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

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

/* Checkbox Styling */
.checkbox-group {
    margin-bottom: 1rem;
}

.form-group .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #d1d5db;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--secondary-color-600);
    border-color: var(--secondary-color-600);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: bold;
}

.checkbox-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #64748b;
}

/* Success Message */
.success-message {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.success-message i {
    width: 3rem;
    height: 3rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

.success-message h4 {
    color: #16a34a;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: #15803d;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-header h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.map-header p {
    color: #64748b;
    font-size: 1.125rem;
}

.map-container {
    margin-bottom: 3rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #d1d5db;
}

.map-content {
    text-align: center;
    color: #64748b;
}

.map-icon {
    width: 4rem;
    height: 4rem;
    color: var(--secondary-color-600);
    margin-bottom: 1rem;
}

.map-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}
.map-content button{
    margin-top: 1rem;
}
.embedded-map {
    width: 100%;
    height: 400px;
}

.embedded-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
}

.map-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.directions,
.transport {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
}

.directions h4,
.transport h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.directions ul,
.transport ul {
    list-style: none;
    padding: 0;
}

.directions li,
.transport li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-right: 1.5rem;
}

.directions li:last-child,
.transport li:last-child {
    border-bottom: none;
}

.directions li::before,
.transport li::before {
    content: "→";
    position: absolute;
    right: 0;
    color: var(--secondary-color-600);
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
    color: #64748b;
    font-size: 1.125rem;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question h4 {
    color: #2c3e50;
    margin: 0;
}

.faq-question i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--secondary-color-600);
    transition: transform 0.2s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-logo img{
    width: 8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo i {
    width: 2rem;
    height: 2rem;
    color: var(--secondary-color-600);
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.contact-info {
    space-y: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-item i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--secondary-color-600);
}

.contact-item span ,.contact-item a{
    color: #bdc3c7;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright {
    color: #95a5a6;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .desktop-contact-btn {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quick-contact {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .map-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quick-contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .quick-contact-item i {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .breadcrumb {
        padding: 2rem 0 1rem;
    }
    
    .welcome-intro,
    .contact-section,
    .map-section,
    .faq-section {
        padding: 2rem 0;
    }
    
    .contact-form-container,
    .info-card,
    .social-media {
        padding: 1.5rem;
    }
    
    .directions,
    .transport {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Form validation styles */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #ef4444;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #22c55e;
}

/* Loading state */
.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn.loading::after {
    content: "";
    width: 1rem;
    height: 1rem;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}