/* =================
   FEATURES STYLES
================= */
.why-choose-us,
.features-grid {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--light-bg);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* =================
   TESTIMONIALS STYLES
================= */
.testimonials {
    padding: 100px 0;
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* =================
   CTA SECTION STYLES
================= */
.cta-section,
.services-cta,
.contact-cta {
    background: var(--gradient);
    color: var(--white);
    padding: 80px 0;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.cta-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.cta-stat i {
    color: var(--accent-color);
}

/* =================
   FAQ STYLES (Fixed)
================= */
.faq,
.quick-faq {
    padding: 100px 0;
    background: var(--light-bg);
}

.faq-search {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    pointer-events: none;
}

.faq-categories {
    background: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
    position: sticky;
    top: 80px;
    z-index: 99;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    background: var(--light-bg);
    color: var(--gray);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.faq-content {
    padding: 60px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-category-section {
    margin-bottom: 4rem;
}

.faq-category-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
}

.faq-category-section h2 i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.faq-item.active {
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.15);
    border-color: var(--primary-color);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
    position: relative;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-item.active .faq-question {
    background: rgba(44, 90, 160, 0.05);
    color: var(--primary-color);
}

.faq-question h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    flex: 1;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    padding-right: 1rem;
}

.faq-item.active .faq-question h4 {
    color: var(--primary-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
    padding: 0 1.5rem;
}

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

.faq-answer p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
    padding: 1rem 0px;
}

.faq-preview {
    max-width: 600px;
    margin: 0 auto;
}

/* No Results Message */
.no-results-message {
    background: var(--white);
    border-radius: 15px;
    margin: 2rem 0;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: none;
}

.no-results-content i {
    font-size: 3rem;
    color: var(--gray);
    opacity: 0.5;
    margin-bottom: 1.5rem;
}

.no-results-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.no-results-content p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.no-results-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.no-results-actions .btn {
    min-width: 150px;
}

/* Still Have Questions Section */
.still-questions {
    background: var(--white);
    padding: 80px 0;
}

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

.questions-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.questions-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.questions-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-option:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(44, 90, 160, 0.3);
    border-color: var(--primary-color);
}

.contact-option i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-option:hover i {
    color: var(--primary-color);
    background: var(--white);
}

.contact-option div h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-option div p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* FAQ Quick Links */
.faq-quick-links {
    background: var(--light-bg);
    padding: 60px 0;
}

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

.faq-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.faq-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.faq-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-link-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    display: block;
    border: 2px solid transparent;
    text-align: center;
}

.faq-link-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.faq-link-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.faq-link-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-link-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}


.faq-link-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.faq-link-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* =================
   CONTACT STYLES
================= */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-info-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-details p a {
    color: var(--text-color);
    text-decoration: none;
}

.contact-details p a:hover {
    color: var(--primary-color);
}

.contact-details span {
    color: var(--gray);
    font-size: 0.9rem;
}

.contact-form-section {
    padding: 80px 0;
}

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

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--gray);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

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

.char-counter {
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.25rem;
    text-align: right;
}

.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.form-actions .btn {
    flex: 1;
}

.map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.office-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.office-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.office-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.office-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.office-item h4 {
    color: var(--text-color);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.office-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.map-container iframe {
    border-radius: 15px;
}

.quick-contact {
    background: var(--light-bg);
    padding: 80px 0;
}

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

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

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.quick-contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.quick-contact-item.whatsapp:hover {
    background: #25D366;
    color: var(--white);
}

.quick-contact-item.appointment:hover {
    background: var(--primary-color);
    color: var(--white);
}

.quick-icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.quick-contact-item:hover .quick-icon {
    background: rgba(255,255,255,0.2);
}

.quick-contact-item:hover .quick-icon i {
   /* color: var(--white);*/
}

.quick-content h3 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.quick-content p {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.quick-content span {
    font-size: 0.85rem;
    opacity: 0.8;
}

.emergency-contact {
    background: var(--white);
    padding: 60px 0;
}

.emergency-banner {
    background: linear-gradient(135deg, var(--danger), #c82333);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

.emergency-icon i {
    font-size: 3rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.emergency-content {
    flex: 1;
}

.emergency-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.emergency-actions .btn-danger {
    background: var(--white);
    color: var(--danger);
    border: 2px solid var(--white);
}

.emergency-actions .btn-danger:hover {
    background: transparent;
    color: var(--white);
}

/* =================
   ABOUT STYLES
================= */
.company-story {
    padding: 100px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.story-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.story-body p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-color);
}

.story-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: var(--gradient);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.company-image {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--gray);
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
}

.mission-vision {
    padding: 100px 0;
    background: var(--light-bg);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.mvv-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mvv-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.mvv-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mvv-item p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.mvv-item ul {
    list-style: none;
    text-align: left;
}

.mvv-item ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.mvv-item ul li i {
    color: var(--success);
}

.team-section {
    padding: 100px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.photo-placeholder i {
    font-size: 3rem;
    color: var(--white);
}

.member-info h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.member-contact {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-contact a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-contact a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.member-specialties span {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.services-overview {
    padding: 100px 0;
    background: var(--light-bg);
}

.services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.category-icon i {
    font-size: 2rem;
    color: var(--white);
}

.category-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-item ul {
    list-style: none;
}

.category-item ul li {
    padding: 0.5rem 0;
    color: var(--gray);
    border-bottom: 1px solid var(--light-gray);
}

.category-item ul li:last-child {
    border-bottom: none;
}

.why-choose-section {
    padding: 100px 0;
    background: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.advantage-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: var(--white);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.advantage-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.advantage-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.advantage-item p {
    color: var(--gray);
    line-height: 1.6;
}

.partnerships {
    padding: 100px 0;
    background: var(--light-bg);
}

.partners-note {
    max-width: 800px;
    margin: 0 auto;
}

.partners-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.partners-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partners-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.partners-text h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.partners-text p {
    color: var(--gray);
    line-height: 1.6;
}

.partner-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.partner-category {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.partner-category h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.partner-category h4 i {
    color: var(--accent-color);
}

.partner-category p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.certifications {
    padding: 100px 0;
    background: var(--white);
}

.certifications-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.cert-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cert-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

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

.cert-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.cert-item:hover {
    background: var(--white);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.cert-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.cert-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.cert-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.company-timeline {
    padding: 100px 0;
    background: var(--light-bg);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 2;
    position: relative;
}

.timeline-item.active .timeline-year {
    background: var(--accent-color);
    box-shadow: 0 0 0 10px rgba(243, 156, 18, 0.2);
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin: 0 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid var(--white);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-right: 15px solid var(--white);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* =================
   FOOTER STYLES
================= */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-section i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.contact-info-footer p {
    margin-bottom: 0.5rem;
}

.contact-info-footer a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
}

.contact-info-footer a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* =================
   UTILITY CLASSES
================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 1.8rem;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }

/* =================
   ANIMATIONS
================= */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.loading {
    opacity: 0.5;
    pointer-events: none;
}

.btn.loading {
    position: relative;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

/* =================
   RESPONSIVE DESIGN
================= */


/* =================
   MOBILE SPECIFIC FIXES
================= */

/* Viewport height fix */
:root {
    --vh: 1vh;
}

/* Touch device optimizations */
.touch-device .btn:hover,
.touch-device .service-card:hover,
.touch-device .contact-info-card:hover,
.touch-device .testimonial-item:hover {
    transform: none;
}

.touch-device .service-card.touch-active,
.touch-device .testimonial-item.touch-active,
.touch-device .contact-info-card.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* No results message styling */
.no-results-message {
    background: var(--light-bg);
    border-radius: 10px;
    margin: 2rem 0;
    display: none;
}

/* Loading animation improvements */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

    
    /* Increase touch targets */
    .nav-menu a,
    .btn,
    .faq-question,
    .tab-btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* =================
   ADDITIONAL MOBILE FIXES
================= */

/* Fix for mobile Safari viewport */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: calc(100vh - 80px);
        min-height: calc(var(--vh, 1vh) * 100 - 80px);
    }
}

/* Improved mobile scrolling */
html {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}


/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

.nav-menu a:focus {
    background: rgba(44, 90, 160, 0.1);
    border-radius: 5px;
    padding: 0.5rem;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Error states */
.field-error {
    color: var(--danger);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* Success states */
.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: var(--success);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}/* main.css - GüvenSAS Sigorta Website Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #1e3d72;
    --accent-color: #f39c12;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #fff;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* =================
   HEADER STYLES
================= */
.header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    text-decoration: none;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-logo span {
    color: var(--accent-color);
}

/* Masaüstü için */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    position: static;
    left: auto;
    top: auto;
    width: auto;
    background: none;
    box-shadow: none;
    padding: 0;
    height: auto;
    overflow: visible;
    z-index: auto;
    transition: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* =================
   PAGE HEADER STYLES
================= */
.page-header {
    background: var(--gradient);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.6;
}

/* =================
   HERO SECTION
================= */
.hero {
    background: var(--gradient);
    color: var(--white);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    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.05)" points="0,0 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, var(--white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.floating-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* =================
   BUTTON STYLES
================= */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
}

.btn-danger:hover {
    background: #c82333;
    transform: translateY(-2px);
}

/* =================
   SECTION STYLES
================= */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* =================
   SERVICES STYLES
================= */
.services-preview,
.services {
    padding: 100px 0;
    background: var(--light-bg);
}

.services-nav {
    background: var(--white);
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.services-nav-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.nav-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--accent-color);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* =================
   SERVICE DETAIL STYLES
================= */
.service-detail {
    padding: 80px 0;
}

.service-detail.bg-light {
    background: var(--light-bg);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon-large i {
    font-size: 3rem;
    color: var(--white);
}

.service-detail h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-intro {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.features-list i {
    color: var(--success);
    font-size: 1.2rem;
}

.process-steps {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.step {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.important-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.important-note i {
    color: var(--warning);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.service-detail-sidebar {
    position: sticky;
    top: 100px;
}

.quote-card {
    background: var(--gradient);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
}

.quote-card h3 {
    margin-bottom: 1rem;
}

.quote-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.quote-card .btn {
    width: 100%;
    margin-bottom: 1rem;
}

.required-docs,
.price-info,
.coverage-calculator,
.age-info,
.tax-advantage,
.visa-info {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.required-docs h4,
.price-info h4,
.coverage-calculator h4,
.age-info h4,
.tax-advantage h4,
.visa-info h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.required-docs ul,
.age-info ul,
.visa-info ul {
    list-style: none;
}

.required-docs li,
.age-info li,
.visa-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.required-docs i {
    color: var(--primary-color);
}


























@media (max-width: 768px) {
    .hero {
        min-height: 100dvh;
        min-height: 100vh;
    }
    html {
        scroll-padding-top: 100px;
    }
    .keyboard-navigation .btn:focus,
    .keyboard-navigation .nav-menu a:focus,
    .keyboard-navigation .service-link:focus {
        outline: 3px solid var(--accent-color);
        outline-offset: 2px;
        border-radius: 8px;
    }
    body {
        overflow-x: hidden;
    }
    
    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
    table {
        width: 100%;
        border-collapse: collapse;
        font-size: 0.9rem;
    }
    
    table, thead, tbody, th, td, tr {
        display: block;
    }
    
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    tr {
        border: 1px solid var(--light-gray);
        margin-bottom: 10px;
        padding: 10px;
        border-radius: 8px;
        background: var(--white);
    }
    
    td {
        border: none;
        position: relative;
        padding: 8px 0;
        padding-left: 50%;
        text-align: left;
    }
    
    td:before {
        content: attr(data-label) ": ";
        position: absolute;
        left: 6px;
        width: 45%;
        text-align: left;
        font-weight: bold;
        color: var(--primary-color);
    }
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    .hero-image img,
    .story-visual img,
    .company-image img {
        width: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
    * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .service-card,
    .testimonial-item,
    .contact-info-card {
        will-change: transform;
    }
    ::selection {
        background: var(--accent-color);
        color: var(--white);
    }
    
    ::-moz-selection {
        background: var(--accent-color);
        color: var(--white);
    }
    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="tel"]:focus,
    select:focus,
    textarea:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
        outline: none;
    }
    
    /* Custom select arrow for mobile */
    select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23666' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 12px;
        padding-right: 40px;
    }
    .modal,
    .overlay {
        padding: 20px;
        max-height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-content {
        margin: 0;
        max-width: 100%;
        border-radius: 10px;
    }
    .sticky-mobile {
        position: sticky;
        top: 80px;
        z-index: 100;
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .grid-mobile-1 { grid-template-columns: 1fr; }
    .grid-mobile-2 { grid-template-columns: 1fr 1fr; }
    .grid-mobile-stack { grid-template-columns: 1fr; gap: 1rem; }
    
    .flex-mobile-column { flex-direction: column; }
    .flex-mobile-wrap { flex-wrap: wrap; }
    .flex-mobile-center { justify-content: center; align-items: center; }
    .text-mobile-small { font-size: 0.875rem; }
    .text-mobile-medium { font-size: 1rem; }
    .text-mobile-large { font-size: 1.125rem; }
    .text-mobile-xl { font-size: 1.25rem; }
    .text-mobile-2xl { font-size: 1.5rem; }
    .text-gray { color: #4a5568; }
    .text-light-gray { color: #718096; }
    
    /* Ensure sufficient contrast on mobile */
    .hero-subtitle,
    .section-header p,
    .service-card p {
        color: #4a5568;
    }
    [data-aos] {
        transition-duration: 0.4s;
    }
    
    [data-aos="fade-up"] {
        transform: translateY(20px);
    }
    
    [data-aos="fade-up"].aos-animate {
        transform: translateY(0);
    }
}

/* Mobile dark mode support (future enhancement) */
@media (max-width: 768px) and (prefers-color-scheme: dark) {
    :root {
        --text-color: #e2e8f0;
        --light-bg: #2d3748;
        --white: #1a202c;
        --gray: #a0aec0;
        --light-gray: #4a5568;
    }
    
    .nav-menu {
        background: var(--white);
        color: var(--text-color);
    }
    
    .service-card,
    .testimonial-item,
    .contact-form-wrapper {
        background: var(--white);
        color: var(--text-color);
    }
}

/* Mobile landscape orientation fixes */
@media (max-width: 768px) and (orientation: landscape) and (max-height: 500px) {
    .hero {
        padding: 40px 0 30px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        gap: 0.75rem;
    }
}

/* Mobile browser specific fixes */
/* Safari iOS */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        .btn {
            -webkit-appearance: none;
            border-radius: 25px;
        }
        
        input, textarea, select {
            -webkit-appearance: none;
            border-radius: 8px;
        }
    }
}

/* Chrome Android */
@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: text;
        user-select: text;
    }
    
    .btn,
    .nav-menu a,
    .service-link {
        -webkit-tap-highlight-color: rgba(44, 90, 160, 0.2);
        -webkit-touch-callout: none;
    }
    .mobile-full-height {
        min-height: 100vh;
        min-height: calc(var(--vh, 1vh) * 100);
    }
    
    .mobile-safe-bottom {
        padding-bottom: env(safe-area-inset-bottom);
    }
    .reduce-motion * {
        animation-duration: 0.1s !important;
        transition-duration: 0.1s !important;
    }
    
    .gpu-accelerate {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: transform;
    }
}

/* Final mobile optimizations */
@media (max-width: 480px) {
    /* Ensure all interactive elements are touch-friendly */
    button,
    a,
    input,
    select,
    textarea,
    .clickable {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Optimize for one-handed use */
    .bottom-sheet {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -10px 25px rgba(0,0,0,0.1);
        padding: 1rem;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    
    .bottom-sheet.active {
        transform: translateY(0);
    }
    
    /* Thumb-friendly navigation */
    .thumb-zone {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: space-around;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .page-header {
        padding: 100px 0 60px;
    }

    .page-header-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-preview,
    .services,
    .faq,
    .contact,
    .company-story,
    .mission-vision,
    .team-section,
    .services-overview,
    .why-choose-section,
    .partnerships,
    .certifications,
    .company-timeline {
        padding: 60px 0;
    }

    .service-card,
    .contact-form-wrapper,
    .office-info {
        padding: 1.5rem;
    }

    .contact-info-card {
        padding: 1rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .service-icon-large {
        width: 80px;
        height: 80px;
    }

    .service-icon-large i {
        font-size: 2rem;
    }

    .emergency-banner {
        padding: 1.5rem;
    }

    .emergency-icon i {
        font-size: 2rem;
    }

    .story-stats {
        grid-template-columns: 1fr;
    }

    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }

    .timeline-content {
        margin-left: 70px;
        padding: 1.5rem;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 1.5rem;
    }

    .back-to-top {
        bottom: 75px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

/* =================
   PRINT STYLES
================= */
@media print {
    .header, 
    .footer, 
    .btn, 
    .nav-toggle,
    .whatsapp-float,
    .back-to-top,
    .emergency-contact {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
    }
    
    .hero {
        padding: 20px 0;
        background: none !important;
        color: black !important;
    }
    
    .hero-title {
        color: black !important;
        background: none !important;
        -webkit-text-fill-color: black !important;
    }
    
    .service-card, 
    .testimonial-item, 
    .contact-info-card,
    .team-member,
    .advantage-item {
        break-inside: avoid;
        margin-bottom: 10px;
        box-shadow: none !important;
        border: 1px solid #ddd;
    }
    
    .page-header {
        background: none !important;
        color: black !important;
        padding: 20px 0;
    }
    
    a {
        color: black !important;
        text-decoration: underline;
    }
    
    .gradient,
    .btn-primary,
    .btn-secondary {
        background: white !important;
        color: black !important;
        border: 1px solid black !important;
    }
}

/* =================
   ACCESSIBILITY
================= */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-card {
        animation: none;
    }
    
    .whatsapp-float a {
        animation: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000080;
        --secondary-color: #000060;
        --accent-color: #ff6600;
        --text-color: #000000;
        --gray: #404040;
        --light-gray: #cccccc;
    }
    
    .btn {
        border: 2px solid currentColor;
    }
    
    .service-card,
    .testimonial-item,
    .contact-info-card {
        border: 2px solid var(--primary-color);
    }
}





/* Mobile-specific utility classes */
@media (max-width: 768px) {
    .mobile-center { text-align: center; }
    .mobile-full-width { width: 100%; }
    .mobile-hide { display: none; }
    .mobile-show { display: block; }
    .mobile-stack { flex-direction: column; }
    .mobile-gap-small { gap: 0.5rem; }
    .mobile-gap-medium { gap: 1rem; }
    .mobile-gap-large { gap: 1.5rem; }
    .mobile-padding-small { padding: 0.5rem; }
    .mobile-padding-medium { padding: 1rem; }
    .mobile-padding-large { padding: 1.5rem; }
    .mobile-margin-small { margin: 0.5rem; }
    .mobile-margin-medium { margin: 1rem; }
    .mobile-margin-large { margin: 1.5rem; }
}


/* Mobile form fixes */
@media (max-width: 768px) {
    /* Prevent zoom on input focus */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px !important;
    }
    
    /* Better touch targets */
    .btn,
    .nav-menu a,
    .faq-question,
    .tab-btn,
    .service-link,
    .contact-option {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    /* Mobile navigation overlay */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
    }
    
    /* Improved scrolling */
    .services-nav-list,
    .category-tabs {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .services-nav-list::-webkit-scrollbar,
    .category-tabs::-webkit-scrollbar {
        display: none;
    }
    
    /* Mobile-specific spacing */
    .hero-buttons .btn {
        padding: 15px 25px;
        font-size: 1rem;
        font-weight: 600;
    }
    
    /* Sticky positioning fixes */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }
    
    .services-nav {
        position: sticky;
        top: 80px;
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 100;
    }
    
    /* Mobile card improvements */
    .service-card,
    .testimonial-item,
    .contact-info-card,
    .feature-item {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    /* Mobile typography adjustments */
    .service-card h3,
    .feature-item h3,
    .testimonial-author h4 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .service-card p,
    .feature-item p,
    .testimonial-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Mobile FAQ improvements */
    .faq-question h4 {
        font-size: 1rem;
        line-height: 1.4;
        padding-right: 2rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
        max-height: 500px;
    }
    
    /* Mobile contact form */
    .contact-form {
        gap: 1.25rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        font-weight: 600;
    }
    
    /* Mobile timeline adjustments */
    .timeline-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Mobile notification positioning */
    .notification {
        font-size: 0.95rem !important;
        line-height: 1.4;
    }
    
    .notification-content {
        gap: 0.5rem;
    }
    
    /* Mobile keyboard navigation */
    .keyboard-navigation *:focus {
        outline: 3px solid var(--accent-color) !important;
        outline-offset: 2px !important;
    }
    
    /* Mobile loading states */
    .btn.loading {
        opacity: 0.8;
        cursor: not-allowed;
    }
    
    /* Mobile hover states (remove) */
    .nav-menu a:hover,
    .service-link:hover,
    .contact-option:hover {
        transform: none;
    }
    
    /* Mobile WhatsApp button adjustments */
    .whatsapp-float a {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.6);
    }
    
    /* Mobile emergency banner */
    .emergency-banner {
        margin: 0 15px;
        border-radius: 10px;
    }
    
    /* Mobile stats grid */
    .hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile fixes */
    .container {
        padding: 0 12px;
    }
    
    .hero-container,
    .page-header-content {
        padding: 0 12px;
    }
    
    /* Tighter spacing */
    .service-card,
    .contact-form-wrapper,
    .testimonial-item {
        padding: 1.25rem 1rem;
    }
    
    /* Smaller icons */
    .service-icon,
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i,
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    /* Smaller buttons */
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    /* Adjusted hero stats */
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    /* Mobile form adjustments */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
    }
    
    /* Mobile navigation improvements */
    .nav-menu {
        padding: 1.5rem 0;
    }
    
    .nav-menu li {
        margin: 0.75rem 0;
    }
    
    /* Mobile services navigation */
    .nav-item {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        min-width: 80px;
    }
    
    .nav-item i {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
}

/* iPhone X and similar with notch */
@media (max-width: 480px) and (orientation: portrait) {
    .header {
        padding-top: env(safe-area-inset-top);
    }
    
    .whatsapp-float {
        bottom: calc(15px + env(safe-area-inset-bottom));
    }
    
    .back-to-top {
        bottom: calc(70px + env(safe-area-inset-bottom));
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 60px 0 40px;
        min-height: auto;
    }
    
    .page-header {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        height: calc(100vh - 60px);
        top: 60px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .service-icon,
    .feature-icon,
    .contact-icon {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .floating-card {
        animation: none;
    }
    
    .whatsapp-float a {
        animation: none;
    }
    
    .back-to-top,
    .btn,
    .service-card {
        transition: none;
    }
}

/* Print optimizations for mobile */
@media print {
    @page {
        margin: 0.5in;
    }
    
    .container {
        padding: 0;
    }
    
    .hero-title {
        font-size: 18pt;
        color: black !important;
    }
    
    .section-header h2 {
        font-size: 16pt;
        color: black !important;
    }
    
    .service-card,
    .testimonial-item {
        border: 1px solid #ccc;
        padding: 10pt;
        margin-bottom: 10pt;
        break-inside: avoid;
    }
}


/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .contact-form-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 2rem 0;
        overflow-y: auto;
        z-index: 999;
        gap: 0;
        height: auto;
    }

    .nav-menu.active {
        left: 0;
        background: #fff;
    }

    .nav-menu li {
        margin: 0px 0px;
    }

    .nav-menu a {
        font-size: 16px;
        padding: 12px 0px;
        display: block;
                min-height: 100%;
        min-width: 100%;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .btn {
        width: 100%;
        max-width: none;
        padding: 15px 20px;
        font-size: 1rem;
    }

    /* Page Headers */
    .page-header {
        padding: 100px 0 60px;
    }

    .page-header-content h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .page-header-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .breadcrumb {
        font-size: 0.9rem;
    }

    /* Services */
    .services-preview,
    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .services-nav {
        padding: 1rem 0;
        position: static;
    }

    .services-nav-list {
        gap: 0.5rem;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 15px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .services-nav-list::-webkit-scrollbar {
        display: none;
    }

    .nav-item {
        flex-shrink: 0;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        min-width: 100px;
        text-align: center;
    }

    .nav-item i {
        font-size: 1.2rem;
    }

    /* Service Details */
    .service-detail {
        /* padding: 60px 0;*/
    }

    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-sidebar {
        position: static;
        order: -1;
    }

    .service-icon-large {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .service-icon-large i {
        font-size: 2.5rem;
    }

    .service-detail h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .service-intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .process-steps {
        flex-direction: column;
        gap: 1.5rem;
    }

    .step {
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .step-number {
        flex-shrink: 0;
        margin: 0;
    }

    .packages-grid,
    .destinations-grid,
    .insurance-types {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Features & Testimonials */
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item,
    .testimonial-item {
        padding: 1.5rem;
    }

    /* Contact */
    .contact,
    .contact-info-section,
    .contact-form-section {
        padding: 60px 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper,
    .office-info {
        padding: 2rem 1.5rem;
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .office-details {
        gap: 1.5rem;
    }

    .office-item {
        flex-direction: column;
        text-align: left;
        gap: 0.75rem;
    }

    /* CTA Sections */
    .cta-section,
    .services-cta,
    .contact-cta {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .cta-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Quick Contact */
    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .quick-contact-item {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .quick-icon {
        width: 60px;
        height: 60px;
    }

    .quick-icon i {
        font-size: 1.75rem;
    }

    /* Emergency Banner */
    .emergency-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .emergency-icon i {
        font-size: 2.5rem;
    }

    /* FAQ */
    .faq,
    .quick-faq {
        padding: 60px 0;
    }

    .faq-search {
        padding: 1.5rem 0;
    }

    .search-input {
        padding: 0.875rem 3rem 0.875rem 1rem;
        font-size: 16px;
    }

    .category-tabs {
        gap: 0.5rem;
        padding: 0 15px;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .tab-btn {
        flex-shrink: 0;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .faq-category-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-question h4 {
        font-size: 1rem;
        line-height: 1.4;
    }

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

    /* About Page */
    .company-story,
    .mission-vision,
    .team-section,
    .services-overview,
    .why-choose-section,
    .partnerships,
    .certifications,
    .company-timeline {
        padding: 60px 0;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .story-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .mvv-grid,
    .team-grid,
    .services-categories,
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mvv-item,
    .team-member,
    .category-item,
    .advantage-item {
        padding: 1.5rem;
    }

    .partner-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .partners-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .cert-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Timeline */
    .timeline::before {
        left: 25px;
    }

    .timeline-item {
        flex-direction: row !important;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
        position: absolute;
        left: 0;
    }

    .timeline-content {
        margin-left: 70px;
        margin-right: 0;
        padding: 1.5rem;
    }

    .timeline-item .timeline-content::before {
        left: -15px;
        right: auto;
        border-right: 15px solid var(--white);
        border-left: none;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
    }

    /* Footer */
    .footer {
        padding: 40px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    /* Float Buttons */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float a {
        width: 55px;
        height: 55px;
    }

    .back-to-top {
        bottom: 80px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .why-choose-us, .features-grid { padding: 50px 0px }
    .container {
        padding: 0 12px;
    }

    /* Hero adjustments */
    .hero {
        padding: 90px 0 50px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        color: #fff;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .stat-item p {
        font-size: 0.85rem;
    }

    /* Page headers */
    .page-header {
        padding: 120px 0 50px;
    }

    .page-header-content h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .page-header-content p {
        font-size: 0.95rem;
    }

    /* Section headers */
    .section-header h2 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Cards and content */
    .service-card,
    .contact-form-wrapper,
    .office-info,
    .testimonial-item,
    .feature-item,
    .mvv-item,
    .team-member,
    .advantage-item {
        padding: 1.25rem 1rem;
    }

    .contact-info-card {
        padding: 1.25rem;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
    }

    /* Service details */
    .service-icon-large {
        width: 70px;
        height: 70px;
    }

    .service-icon-large i {
        font-size: 2rem;
    }

    .service-detail h2 {
        font-size: 1.75rem;
    }

    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    /* Forms */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
    }

    /* Icons */
    .service-icon,
    .feature-icon,
    .contact-icon,
    .advantage-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i,
    .feature-icon i {
        font-size: 1.5rem;
    }

    /* Timeline */
    .timeline::before {
        left: 20px;
    }

    .timeline-year {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .timeline-content {
        margin-left: 55px;
        padding: 1.25rem;
    }

    /* Emergency banner */
    .emergency-banner {
        padding: 1.5rem 1rem;
    }

    .emergency-icon i {
        font-size: 2rem;
    }

    /* CTA content */
    .cta-content h2 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    /* Quick contact */
    .quick-contact-item {
        padding: 1rem;
    }

    .quick-icon {
        width: 50px;
        height: 50px;
    }

    .quick-icon i {
        font-size: 1.5rem;
    }

    /* Float buttons */
    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 1.5rem;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 70px;
    }

    /* Story stats single column */
    .story-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Navigation scrolling hint */
    .services-nav-list::after,
    .category-tabs::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 20px;
        background: linear-gradient(to right, transparent, var(--white));
        pointer-events: none;
    }

    .services-nav,
    .faq-categories {
        position: relative;
    }
}

/* Very Small Screens */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .page-header-content h1 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .service-detail h2 {
        font-size: 1.5rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .page-header {
        padding: 80px 0 40px;
    }
    
    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }
}



/* Mobile FAQ Adjustments */
@media (max-width: 768px) {
    .faq-search {
        padding: 1.5rem 0;
    }
    
    .search-input {
        padding: 0.875rem 3rem 0.875rem 1rem;
        font-size: 16px;
    }
    
    .faq-categories {
        padding: 1rem 0;
        position: static;
    }
    
    .category-tabs {
        gap: 0.5rem;
        padding: 0 15px;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .category-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .tab-btn {
        flex-shrink: 0;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
        min-width: 80px;
    }
    
    .faq-content {
        padding: 40px 0;
    }
    
    .faq-category-section {
        margin-bottom: 3rem;
    }
    
    .faq-category-section h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
        line-height: 1.4;
        padding-right: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
        max-height: 300px;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-option {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .faq-links-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-link-item {
        padding: 1.5rem 1rem;
    }
    
    .no-results-message {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }
    
    .no-results-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .no-results-actions .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .faq-question h4 {
        font-size: 0.95rem;
        padding-right: 0.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    .tab-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        min-width: 70px;
    }
    
    .questions-content h2 {
        font-size: 1.8rem;
    }
    
    .no-results-content h3 {
        font-size: 1.2rem;
    }
    
    .no-results-content i {
        font-size: 2.5rem;
    }
    .social-links { justify-content:center; }
    .social-links i {margin:  0px;}
    .breadcrumb a { min-height: auto; }
}