/**
 * Premium City Pages - Glassmorphism Design
 * Mobile-first, class-apart UI/UX
 */

/* Base Styles */
.city-page-content {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    min-height: 100vh;
}

/* Container */
.city-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Glassmorphism Card Base */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(220, 200, 127, 0.3);
    transform: translateY(-2px);
}

/* Section Spacing */
.city-section {
    margin-bottom: 30px;
}

/* Credibility Section - Glassmorphism */
.credibility-section-glass {
    padding: 60px 20px;
    background: transparent;
}

.credibility-grid-glass {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.credibility-card-glass {
    background: rgba(220, 200, 127, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 200, 127, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.credibility-card-glass:hover {
    background: rgba(220, 200, 127, 0.15);
    border-color: rgba(220, 200, 127, 0.4);
    transform: translateY(-5px);
}

.credibility-icon-glass {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(220, 200, 127, 0.5));
}

.credibility-card-glass h3 {
    color: #dcc87f;
    font-size: 1.1rem;
    margin: 15px 0 10px;
    font-weight: 600;
}

.credibility-card-glass p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Enquiry Form - Glassmorphism */
.enquiry-form-glass {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(220, 200, 127, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
}

.enquiry-form-glass h2 {
    color: #dcc87f;
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.9rem;
    font-weight: 700;
}

.enquiry-form-glass p {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 30px;
}

.form-grid-glass {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-glass label {
    display: block;
    color: #dcc87f;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group-glass input,
.form-group-glass select,
.form-group-glass textarea {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group-glass input:focus,
.form-group-glass select:focus,
.form-group-glass textarea:focus {
    outline: none;
    border-color: #dcc87f;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(220, 200, 127, 0.2);
}

.form-group-glass input::placeholder,
.form-group-glass textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Collapsible Content Sections */
.collapsible-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.collapsible-section:hover {
    border-color: rgba(220, 200, 127, 0.3);
}

.collapsible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
    min-height: 80px;
    transition: all 0.3s ease;
}

.collapsible-header:hover {
    background: rgba(220, 200, 127, 0.05);
}

.collapsible-header h3 {
    color: #dcc87f;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.collapsible-icon {
    color: #dcc87f;
    font-size: 1.9rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.collapsible-section.active .collapsible-icon {
    transform: rotate(45deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
}

.collapsible-section.active .collapsible-content {
    overflow: visible;
}

.collapsible-inner {
    padding: 0 30px 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.collapsible-inner h2,
.collapsible-inner h3,
.collapsible-inner h4 {
    color: #dcc87f;
    margin-top: 25px;
    margin-bottom: 15px;
}

.collapsible-inner h2 {
    font-size: 1.8rem;
}

.collapsible-inner h3 {
    font-size: 1.4rem;
}

.collapsible-inner p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.collapsible-inner ul,
.collapsible-inner ol {
    color: rgba(255, 255, 255, 0.85);
    padding-left: 25px;
    margin: 15px 0;
}

.collapsible-inner li {
    margin-bottom: 10px;
}

/* FAQ Section - Same Style */
.faq-section-glass {
    padding: 60px 20px;
}

.faq-section-glass .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-section-glass h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.faq-section-glass .gold-text-gradient {
    background: linear-gradient(135deg, #dcc87f 0%, #f4e4a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-section-glass p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Helios FAQ Container */
.helios-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.helios-faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.helios-faq-item:hover {
    border-color: rgba(220, 200, 127, 0.3);
}

.helios-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
    min-height: 80px;
    transition: all 0.3s ease;
}

.helios-faq-question:hover {
    background: rgba(220, 200, 127, 0.05);
}

.helios-faq-question span:first-child {
    color: #dcc87f;
    font-size: 1.15rem;
    font-weight: 500;
    flex: 1;
    padding-right: 20px;
}

.helios-faq-icon {
    color: #dcc87f;
    font-size: 1.9rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.helios-faq-item.active .helios-faq-icon {
    transform: rotate(45deg);
}

.helios-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
}

.helios-faq-answer > div,
.helios-faq-answer > p {
    padding: 0 30px 25px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* CTA Section */
.cta-section-glass {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(220, 200, 127, 0.1) 100%);
}

.cta-section-glass h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section-glass p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Buttons */
.btn-gold-glass {
    padding: 16px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #dcc87f 0%, #f4e4a6 100%);
    color: #000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(220, 200, 127, 0.3);
}

.btn-gold-glass:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 200, 127, 0.5);
}

.btn-outline-glass {
    padding: 16px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    background: transparent;
    color: #dcc87f;
    border: 2px solid #dcc87f;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-glass:hover {
    background: rgba(220, 200, 127, 0.1);
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .city-container {
        padding: 15px;
    }
    
    .glass-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .credibility-grid-glass {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .enquiry-form-glass {
        padding: 25px;
    }
    
    .enquiry-form-glass h2 {
        font-size: 1.6rem;
    }
    
    .form-grid-glass {
        grid-template-columns: 1fr;
    }
    
    .collapsible-header,
    .helios-faq-question {
        padding: 20px;
        min-height: 70px;
    }
    
    .collapsible-header h3,
    .helios-faq-question span:first-child {
        font-size: 1.1rem;
    }
    
    .collapsible-inner {
        padding: 0 20px 20px;
    }
    
    .faq-section-glass h2,
    .cta-section-glass h2 {
        font-size: 1.8rem;
    }
    
    .btn-gold-glass,
    .btn-outline-glass {
        padding: 14px 35px;
        font-size: 1rem;
    }
}

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

/* Selection Color */
::selection {
    background: rgba(220, 200, 127, 0.3);
    color: white;
}

::-moz-selection {
    background: rgba(220, 200, 127, 0.3);
    color: white;
}

