html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
/* ======================================
           FIHLA & ASSOCIATES - DOPE DOPE DOPE!
           WHITE & LIGHT BLUE LEGAL EXCELLENCE
        ======================================= */

:root {
    --fihla-white: #ffffff;
    --fihla-light-blue: #219ebc;
    --fihla-dark-blue: #023047;
    --fihla-gold: #ffb703;
    --fihla-gradient: linear-gradient(135deg, #219ebc 0%, #023047 100%);
    --fihla-light-gradient: linear-gradient(135deg, #8ecae6 0%, #219ebc 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Premium Navigation */
.fihla-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(33, 158, 188, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

    .fihla-nav.scrolled {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 5px 30px rgba(33, 158, 188, 0.1);
    }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    color: var(--fihla-dark-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--fihla-light-blue);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .nav-link:hover {
        color: var(--fihla-light-blue);
    }

.nav-cta {
    background: var(--fihla-light-gradient);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 158, 188, 0.3);
}

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(33, 158, 188, 0.4);
    }

/* EPIC Hero Section */
.fihla-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%), url('/Pictures/Fihla.png') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(33, 158, 188, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(33, 158, 188, 0.05) 0%, transparent 50%);
    animation: heroFloat 8s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: var(--fihla-light-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(33, 158, 188, 0.3);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--fihla-dark-blue);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

    .hero-title span {
        background: var(--fihla-light-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-subtitle {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.6;
}

/* Action Buttons */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--fihla-light-gradient);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 25px rgba(33, 158, 188, 0.4);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(33, 158, 188, 0.5);
    }

.btn-secondary {
    background: transparent;
    color: var(--fihla-light-blue);
    padding: 1.2rem 2.5rem;
    border: 2px solid var(--fihla-light-blue);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

    .btn-secondary:hover {
        background: var(--fihla-light-blue);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(33, 158, 188, 0.3);
    }

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon,
.btn-secondary:hover .btn-icon {
    transform: translateX(5px);
}

/* Quick Contact Bar */
.quick-contact {
    background: var(--fihla-dark-blue);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 80px;
    z-index: 999;
}

.contact-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.contact-icon {
    color: var(--fihla-light-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .social-link:hover {
        color: var(--fihla-light-blue);
    }

/* About Preview Section */
.about-preview {
    padding: 100px 0;
    background: white;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--fihla-dark-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h3 {
    font-size: 2.5rem;
    color: var(--fihla-dark-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--fihla-light-blue);
    display: block;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

    .about-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
    }

    .about-image:hover img {
        transform: scale(1.05);
    }

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(33, 158, 188, 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(--fihla-light-gradient);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

.service-icon {
    font-size: 3rem;
    color: var(--fihla-light-blue);
    margin-bottom: 1.5rem;
    display: block;
}

.service-title {
    font-size: 1.5rem;
    color: var(--fihla-dark-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--fihla-light-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

    .service-link:hover {
        gap: 0.8rem;
    }

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--fihla-gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: ctaPulse 6s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-light {
    background: white;
    color: var(--fihla-dark-blue);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

    .btn-light:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    }

.btn-outline-light {
    background: transparent;
    color: white;
    padding: 1.2rem 2.5rem;
    border: 2px solid white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

    .btn-outline-light:hover {
        background: white;
        color: var(--fihla-dark-blue);
        transform: translateY(-3px);
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        justify-content: center;
    }

    .contact-bar {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary,
    .btn-light,
    .btn-outline-light {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 4.5rem;
    }
}
/* ======================================
   FIHLA & ASSOCIATES - DOPE DOPE DOPE!
   WHITE & LIGHT BLUE LEGAL EXCELLENCE
====================================== */

:root {
    --fihla-white: #ffffff;
    --fihla-light-blue: #219ebc;
    --fihla-dark-blue: #023047;
    --fihla-gold: #ffb703;
    --fihla-gradient: linear-gradient(135deg, #219ebc 0%, #023047 100%);
    --fihla-light-gradient: linear-gradient(135deg, #8ecae6 0%, #219ebc 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* EPIC Hero Section */
.fihla-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(33, 158, 188, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(33, 158, 188, 0.05) 0%, transparent 50%);
    animation: heroFloat 8s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    background: var(--fihla-light-gradient);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(33, 158, 188, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--fihla-dark-blue);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: var(--fihla-light-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Action Buttons */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(33, 158, 188, 0.3);
}

.btn-primary {
    background: var(--fihla-light-gradient);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--fihla-light-blue);
    border: 2px solid var(--fihla-light-blue);
    box-shadow: none;
}

.btn-outline {
    background: transparent;
    color: var(--fihla-light-blue);
    border: 2px solid var(--fihla-light-blue);
    box-shadow: none;
}

.btn-light {
    background: white;
    color: var(--fihla-dark-blue);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(33, 158, 188, 0.4);
}

.btn-secondary:hover,
.btn-outline:hover {
    background: var(--fihla-light-blue);
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--fihla-dark-blue);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Quick Contact Bar */
.quick-contact {
    background: var(--fihla-dark-blue);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.contact-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.contact-icon {
    color: var(--fihla-light-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

    .social-link:hover {
        color: var(--fihla-light-blue);
        transform: translateY(-2px);
    }

/* About Preview Section */
.about-preview {
    padding: 100px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--fihla-dark-blue);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.about-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--fihla-light-blue);
    display: block;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Company Photo Styling */
.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: #f8fafc;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(1) contrast(1);
}

.about-image:hover .company-photo {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.1);
}

/* Add a professional overlay on hover */
.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 158, 188, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.about-image:hover::after {
    opacity: 1;
}
@media (max-width: 768px) {
    .about-image {
        min-height: 300px;
    }

    .company-photo {
        height: 300px;
        object-position: center;
    }
}


/* Services Preview */
.services-preview {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        font-weight: 800;
        color: var(--fihla-dark-blue);
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1.2rem;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(33, 158, 188, 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(--fihla-light-gradient);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

.service-icon {
    font-size: 3rem;
    color: var(--fihla-light-blue);
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--fihla-dark-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--fihla-light-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

    .service-link:hover {
        gap: 0.8rem;
    }

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--fihla-gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: ctaPulse 6s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

    .cta-content h2 {
        font-family: 'Playfair Display', serif;
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
    }

    .cta-content p {
        font-size: 1.3rem;
        margin-bottom: 3rem;
        opacity: 0.9;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .about-stats {
        justify-content: center;
    }

    .contact-bar {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 4.5rem;
    }
}
/* ======================================
   FIHLA & ASSOCIATES - DOPE NAVIGATION
   WHITE & LIGHT BLUE PROFESSIONAL NAV
====================================== */

.fihla-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(33, 158, 188, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

    .fihla-nav.scrolled {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 5px 30px rgba(33, 158, 188, 0.1);
    }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.nav-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
    transition: transform 0.3s ease;
}

    .logo-link:hover {
        transform: translateY(-2px);
    }

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(33, 158, 188, 0.2);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--fihla-dark-blue);
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.8rem;
    color: var(--fihla-light-blue);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--fihla-dark-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

    .nav-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--fihla-light-blue);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-link:hover::before {
        width: 80%;
    }

    .nav-link:hover {
        color: var(--fihla-light-blue);
        background: rgba(33, 158, 188, 0.05);
    }

.nav-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.nav-link:hover .nav-icon {
    transform: scale(1.2);
}

/* CTA Button */
.nav-actions {
    display: flex;
    align-items: center;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--fihla-light-gradient);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 158, 188, 0.3);
}

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(33, 158, 188, 0.4);
    }

.cta-icon {
    font-size: 1.1rem;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.toggle-bar {
    width: 25px;
    height: 3px;
    background: var(--fihla-dark-blue);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid rgba(33, 158, 188, 0.1);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .mobile-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

.mobile-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--fihla-dark-blue);
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

    .mobile-link:hover {
        background: rgba(33, 158, 188, 0.05);
        color: var(--fihla-light-blue);
        border-left-color: var(--fihla-light-blue);
    }

.mobile-icon {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.mobile-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--fihla-light-gradient);
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    margin: 1rem 2rem 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 158, 188, 0.3);
}

    .mobile-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(33, 158, 188, 0.4);
    }

.mobile-cta-icon {
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .nav-container {
        padding: 1rem;
    }

    .logo-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
    }

    .nav-container {
        padding: 0.8rem 1rem;
    }
}
/* ======================================
   FIHLA & ASSOCIATES - NEXT LEVEL ABOUT PAGE
   SOMETHING NO ONE HAS EVER SEEN!
====================================== */

/* Animated Hero Section */
.fihla-about-hero {
    min-height: 80vh;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(33, 158, 188, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(33, 158, 188, 0.05) 0%, transparent 50%);
    animation: floatBackground 20s ease-in-out infinite;
}

@keyframes floatBackground {
    0%, 100% {
        transform: translate(0px, 0px) scale(1);
    }

    25% {
        transform: translate(-20px, -10px) scale(1.02);
    }

    50% {
        transform: translate(10px, 20px) scale(1.01);
    }

    75% {
        transform: translate(15px, -15px) scale(1.03);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--fihla-light-blue);
    border-bottom: 2px solid var(--fihla-light-blue);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: rotate(45deg) translate(0, 0);
    }

    50% {
        transform: rotate(45deg) translate(-10px, -10px);
    }
}

/* Interactive Stats */
.interactive-stats {
    padding: 4rem 0;
    background: #f8fafc;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(33, 158, 188, 0.1);
}

    .stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(33, 158, 188, 0.15);
    }

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--fihla-light-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

/* Mission Parallax */
.mission-parallax {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(135deg, var(--fihla-light-blue) 0%, var(--fihla-dark-blue) 100%);
    transform: translateY(-10%);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.card-icon {
    font-size: 2.5rem;
}

.card-header h2 {
    color: var(--fihla-dark-blue);
    font-size: 2rem;
    margin: 0;
}

.mission-list {
    list-style: none;
    padding: 0;
}

    .mission-list li {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding: 1rem;
        border-radius: 10px;
        transition: background 0.3s ease;
    }

        .mission-list li:hover {
            background: rgba(33, 158, 188, 0.05);
        }

.list-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.vision-image {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

    .vision-image img {
        width: 100%;
        height: auto;
        transition: transform 0.3s ease;
    }

    .vision-image:hover img {
        transform: scale(1.05);
    }

/* Values Showcase */
.values-showcase {
    padding: 6rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-item {
    background: #f8fafc;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .value-item:hover {
        background: white;
        border-color: var(--fihla-light-blue);
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(33, 158, 188, 0.15);
    }

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.value-item h3 {
    color: var(--fihla-dark-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Interactive Team Gallery - UPDATED */
.team-gallery {
    padding: 6rem 0;
    background: #f8fafc;
}

.team-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid var(--fihla-light-blue);
    color: var(--fihla-light-blue);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

    .filter-btn.active,
    .filter-btn:hover {
        background: var(--fihla-light-blue);
        color: white;
    }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.team-card {
    perspective: 1000px;
    height: 500px; /* Increased height for better image display */
}

.card-flip {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.team-card:hover .card-flip {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-front {
    background: white;
}

.card-back {
    background: var(--fihla-dark-blue);
    color: white;
    transform: rotateY(180deg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.member-image {
    position: relative;
    height: 300px; /* Increased height for better visibility */
    overflow: hidden;
    background: #f8fafc; /* Added background for consistency */
    display: flex;
    align-items: center;
    justify-content: center;
}

    .member-image img {
        width: auto; /* Changed from 100% to auto for better control */
        height: auto; /* Changed from 100% to auto */
        max-width: 90%; /* Limits maximum width */
        max-height: 90%; /* Limits maximum height */
        object-fit: contain; /* CHANGED from cover to contain to show full image */
        object-position: center;
        transition: transform 0.3s ease;
    }

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 158, 188, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-front:hover .image-overlay {
    opacity: 1;
}

.card-front:hover .member-image img {
    transform: scale(1.05); /* Reduced zoom for better effect */
}

.view-profile {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.member-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .member-info h3 {
        color: var(--fihla-dark-blue);
        margin-bottom: 0.5rem;
        font-size: 1.3rem;
        line-height: 1.3;
    }

.role {
    color: var(--fihla-light-blue);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

    .expertise-tags span {
        background: rgba(33, 158, 188, 0.1);
        color: var(--fihla-light-blue);
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 500;
    }

/* Back Card Improvements */
.back-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .back-content h4 {
        margin-bottom: 1rem;
        font-size: 1.5rem;
        color: var(--fihla-light-blue);
        text-align: center;
    }

    .back-content p {
        line-height: 1.6;
        margin-bottom: 1.5rem;
        flex-grow: 1;
        font-size: 0.95rem;
    }

.back-stats {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.back-stat {
    text-align: center;
    flex: 1;
}

    .back-stat strong {
        display: block;
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
        color: var(--fihla-light-blue);
    }

    .back-stat span {
        font-size: 0.8rem;
        opacity: 0.8;
        display: block;
    }

.specialties {
    margin: 1rem 0;
    text-align: center;
}

    .specialties strong {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--fihla-light-blue);
        font-size: 0.9rem;
    }

    .specialties span {
        display: inline-block;
        background: rgba(255, 255, 255, 0.1);
        padding: 0.3rem 0.6rem;
        border-radius: 12px;
        margin: 0.2rem;
        font-size: 0.75rem;
    }

.flip-back {
    background: var(--fihla-light-blue);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-weight: 500;
    width: 100%;
}

    .flip-back:hover {
        background: #1a8ca3;
        transform: translateY(-2px);
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .team-card {
        height: 480px; /* Slightly smaller on mobile */
    }

    .member-image {
        height: 260px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .back-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .back-stat {
        flex: none;
    }

    .member-image img {
        max-width: 85%;
        max-height: 85%;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .team-card {
        height: 460px;
    }

    .member-image {
        height: 240px;
    }

    .member-info {
        padding: 1rem;
    }

    .card-back {
        padding: 1.5rem;
    }

    .back-content h4 {
        font-size: 1.3rem;
    }
}

/* Alternative: If images still get cropped, use this approach */
.member-image.alt-approach {
    padding: 1rem;
}

    .member-image.alt-approach img {
        width: 100%;
        height: 100%;
        object-fit: scale-down; /* Alternative to contain */
    }

/* Ensure back card content doesn't overflow */
.back-content {
    overflow-y: auto;
    max-height: 100%;
}

    .back-content::-webkit-scrollbar {
        width: 4px;
    }

    .back-content::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }

    .back-content::-webkit-scrollbar-thumb {
        background: var(--fihla-light-blue);
        border-radius: 2px;
    }

/* Timeline Section */
.company-timeline {
    padding: 6rem 0;
    background: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--fihla-light-blue);
        transform: translateX(-50%);
    }

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

    .timeline-item:nth-child(odd) {
        flex-direction: row-reverse;
    }

.timeline-year {
    background: var(--fihla-light-blue);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    margin: 0 2rem;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

    .timeline-content h4 {
        color: var(--fihla-dark-blue);
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

/* Interactive CTA */
.interactive-cta {
    position: relative;
    padding: 6rem 0;
    background: var(--fihla-gradient);
    color: white;
    text-align: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: ctaPulse 8s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

    .cta-content h2 {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
    }

    .cta-content p {
        font-size: 1.3rem;
        margin-bottom: 3rem;
        opacity: 0.9;
    }

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
}

    .cta-stat strong {
        display: block;
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        align-items: flex-start;
    }

    .timeline-year {
        margin-right: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-stats {
        gap: 1.5rem;
    }
}

/* ======================================
   PROFESSIONAL LEGAL SERVICES - RADIAL DESIGN
   WITH AUTO ROTATION AND SERVICE NAMES
======================================= */

:root {
    --fihla-white: #ffffff;
    --fihla-light-blue: #219ebc;
    --fihla-dark-blue: #023047;
    --fihla-gold: #ffb703;
    --fihla-gradient: linear-gradient(135deg, #219ebc 0%, #023047 100%);
    --fihla-light-gradient: linear-gradient(135deg, #8ecae6 0%, #219ebc 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Professional Hero Section */
.professional-hero {
    min-height: 80vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(33, 158, 188, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(33, 158, 188, 0.03) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    background: var(--fihla-light-gradient);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(33, 158, 188, 0.3);
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--fihla-dark-blue);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: var(--fihla-light-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--fihla-light-blue);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Radial Services Wheel */
.radial-services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.radial-container {
    position: relative;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

/* Central Hub */
.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--fihla-light-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(33, 158, 188, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.3);
    z-index: 10;
    animation: hubGlow 3s ease-in-out infinite;
}

@keyframes hubGlow {
    0%, 100% {
        box-shadow: 0 0 50px rgba(33, 158, 188, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 80px rgba(33, 158, 188, 0.6), inset 0 0 30px rgba(255, 255, 255, 0.5);
    }
}

.hub-icon {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 0.5rem;
}

.hub-content {
    text-align: center;
    color: white;
}

    .hub-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
        font-weight: 700;
    }

    .hub-content p {
        font-size: 0.9rem;
        opacity: 0.9;
    }

/* Service Orbits */
.service-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(33, 158, 188, 0.2);
    border-radius: 50%;
}

.orbit-1 {
    width: 350px;
    height: 350px;
    animation: orbitSpin 40s linear infinite;
}

.orbit-2 {
    width: 500px;
    height: 500px;
    animation: orbitSpin 60s linear infinite;
}

.orbit-3 {
    width: 650px;
    height: 650px;
    animation: orbitSpin 80s linear infinite;
}

@keyframes orbitSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Service Nodes with Names */
.service-node {
    position: absolute;
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(33, 158, 188, 0.1);
    border: 2px solid transparent;
    transform-origin: center;
}

    .service-node:hover {
        transform: scale(1.15);
        border-color: var(--fihla-light-blue);
        box-shadow: 0 12px 40px rgba(33, 158, 188, 0.2), 0 0 0 5px rgba(33, 158, 188, 0.1);
    }

    .service-node.active {
        transform: scale(1.2);
        background: var(--fihla-light-blue);
        border-color: var(--fihla-light-blue);
        box-shadow: 0 15px 50px rgba(33, 158, 188, 0.4), 0 0 0 6px rgba(33, 158, 188, 0.2);
    }

        .service-node.active .node-icon {
            color: white;
            transform: scale(1.1);
        }

        .service-node.active .node-name {
            color: white;
        }

.node-content {
    text-align: center;
    padding: 0.5rem;
}

.node-icon {
    font-size: 2rem;
    color: var(--fihla-light-blue);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.node-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--fihla-dark-blue);
    line-height: 1.2;
    transition: all 0.3s ease;
}

/* Position nodes around orbits */
.orbit-1 .service-node:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.orbit-1 .service-node:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(50%);
}

.orbit-1 .service-node:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
}

.orbit-2 .service-node:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.orbit-2 .service-node:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(50%);
}

.orbit-2 .service-node:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
}

.orbit-2 .service-node:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(-50%);
}

.orbit-3 .service-node:nth-child(1) {
    top: 10%;
    left: 75%;
    transform: translate(-50%, -50%);
}

.orbit-3 .service-node:nth-child(2) {
    top: 30%;
    right: 10%;
    transform: translate(50%, -50%);
}

.orbit-3 .service-node:nth-child(3) {
    bottom: 30%;
    right: 10%;
    transform: translate(50%, 50%);
}

.orbit-3 .service-node:nth-child(4) {
    bottom: 10%;
    left: 75%;
    transform: translate(-50%, 50%);
}

.orbit-3 .service-node:nth-child(5) {
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
}

/* Rotation Controls */
.rotation-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.control-btn {
    background: var(--fihla-light-blue);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(33, 158, 188, 0.3);
}

    .control-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(33, 158, 188, 0.4);
    }

.speed-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

    .speed-control span {
        font-weight: 600;
        color: var(--fihla-dark-blue);
    }

.speed-btn {
    background: transparent;
    border: 2px solid var(--fihla-light-blue);
    color: var(--fihla-light-blue);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

    .speed-btn.active,
    .speed-btn:hover {
        background: var(--fihla-light-blue);
        color: white;
    }

/* Service Details Panel */
.service-details-panel {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(33, 158, 188, 0.1);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(33, 158, 188, 0.1);
    padding-bottom: 1.5rem;
}

    .panel-header h3 {
        color: var(--fihla-dark-blue);
        font-size: 1.6rem;
        margin: 0;
        font-weight: 700;
    }

.panel-close {
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

    .panel-close:hover {
        color: var(--fihla-light-blue);
        background: rgba(33, 158, 188, 0.1);
    }

.detail-icon {
    font-size: 3.5rem;
    color: var(--fihla-light-blue);
    text-align: center;
    margin-bottom: 2rem;
}

.detail-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-align: center;
    font-size: 1.1rem;
}

.detail-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

    .feature-item:hover {
        background: rgba(33, 158, 188, 0.03);
        border-color: rgba(33, 158, 188, 0.1);
        transform: translateX(5px);
    }

.feature-icon {
    font-size: 1.1rem;
    color: var(--fihla-light-blue);
    width: 24px;
    text-align: center;
}

.detail-actions {
    text-align: center;
}

.consult-btn {
    background: var(--fihla-light-gradient);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(33, 158, 188, 0.3);
}

    .consult-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(33, 158, 188, 0.4);
    }

.btn-icon {
    transition: transform 0.3s ease;
}

.consult-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Categories Grid */
.categories-grid {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--fihla-dark-blue);
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1.2rem;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
    }

.categories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.category-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .category-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--fihla-light-gradient);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .category-card:hover::before {
        transform: scaleX(1);
    }

    .category-card:hover {
        border-color: var(--fihla-light-blue);
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(33, 158, 188, 0.15);
    }

.category-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.category-icon {
    font-size: 2.2rem;
    color: var(--fihla-light-blue);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(33, 158, 188, 0.1);
    border-radius: 12px;
}

.category-header h3 {
    color: var(--fihla-dark-blue);
    font-size: 1.4rem;
    margin: 0;
    font-weight: 700;
}

.category-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.service-pill {
    background: rgba(33, 158, 188, 0.08);
    color: var(--fihla-light-blue);
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid transparent;
}

    .service-pill:hover {
        background: var(--fihla-light-blue);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(33, 158, 188, 0.3);
    }

    .service-pill i {
        font-size: 0.8rem;
    }

.category-stats {
    display: flex;
    gap: 1rem;
}

.stat {
    background: white;
    padding: 0.7rem 1.2rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--fihla-dark-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

    .stat i {
        color: var(--fihla-light-blue);
    }

/* Floating Consultation Orb */
.floating-consultation {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.consultation-orb {
    position: relative;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .consultation-orb:hover {
        transform: scale(1.1);
    }

        .consultation-orb:hover .orb-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(-120%) scale(1);
        }

.orb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--fihla-light-gradient);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(33, 158, 188, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: orbPulse 2s ease-in-out infinite;
}

.orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(33, 158, 188, 0.3);
    border-radius: 50%;
    animation: ringExpand 3s ease-in-out infinite;
}

.ring-1 {
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.ring-2 {
    width: 100px;
    height: 100px;
    animation-delay: 1s;
}

.ring-3 {
    width: 120px;
    height: 120px;
    animation-delay: 2s;
}

@keyframes orbPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes ringExpand {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

.orb-content {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%) scale(0.9);
    transition: all 0.3s ease;
    border: 1px solid rgba(33, 158, 188, 0.1);
}

    .orb-content h4 {
        color: var(--fihla-dark-blue);
        margin-bottom: 0.8rem;
        font-size: 1.3rem;
    }

    .orb-content p {
        color: #666;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

.orb-cta {
    background: var(--fihla-light-gradient);
    color: white;
    border: none;
    padding: 1rem 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

    .orb-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(33, 158, 188, 0.4);
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .radial-container {
        height: 500px;
        transform: scale(0.7);
    }

    .orbit-1 {
        width: 250px;
        height: 250px;
    }

    .orbit-2 {
        width: 350px;
        height: 350px;
    }

    .orbit-3 {
        width: 450px;
        height: 450px;
    }

    .service-node {
        width: 90px;
        height: 90px;
    }

    .node-icon {
        font-size: 1.5rem;
    }

    .node-name {
        font-size: 0.65rem;
    }

    .categories-container {
        grid-template-columns: 1fr;
    }

    .floating-consultation {
        bottom: 1rem;
        right: 1rem;
    }

    .consultation-orb {
        width: 60px;
        height: 60px;
    }

    .orb-core {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .orb-content {
        width: 280px;
        right: -50px;
    }

    .rotation-controls {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-grid {
    padding: 6rem 0;
    background: #f8fafc;
}

.branches-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.branch-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .branch-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--fihla-light-gradient);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .branch-card:hover::before {
        transform: scaleX(1);
    }

    .branch-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(33, 158, 188, 0.15);
        border-color: var(--fihla-light-blue);
    }

.branch-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(33, 158, 188, 0.1);
}

.branch-icon {
    width: 60px;
    height: 60px;
    background: rgba(33, 158, 188, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--fihla-light-blue);
}

.branch-info h3 {
    color: var(--fihla-dark-blue);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.branch-badge {
    background: var(--fihla-light-gradient);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.branch-content {
    margin-bottom: 2rem;
}

.address {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

    .address i {
        color: var(--fihla-light-blue);
        font-size: 1.2rem;
        margin-top: 0.2rem;
    }

    .address p {
        margin: 0.2rem 0;
        color: #666;
        line-height: 1.4;
    }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #666;
}

    .contact-item i {
        color: var(--fihla-light-blue);
        width: 16px;
    }

.branch-actions {
    display: flex;
    gap: 1rem;
}

.map-btn, .call-btn {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.map-btn {
    background: var(--fihla-light-blue);
    color: white;
}

    .map-btn:hover {
        background: #1a8ca3;
        transform: translateY(-2px);
    }

.call-btn {
    background: rgba(33, 158, 188, 0.1);
    color: var(--fihla-light-blue);
    border: 2px solid var(--fihla-light-blue);
}

    .call-btn:hover {
        background: var(--fihla-light-blue);
        color: white;
        transform: translateY(-2px);
    }

/* Contact Methods */
.contact-methods {
    padding: 6rem 0;
    background: white;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.method-card {
    background: #f8fafc;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

    .method-card:hover {
        border-color: var(--fihla-light-blue);
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(33, 158, 188, 0.1);
    }

.method-icon {
    width: 80px;
    height: 80px;
    background: var(--fihla-light-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.method-card h3 {
    color: var(--fihla-dark-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.method-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.phone-numbers, .email-info, .whatsapp-info {
    margin-bottom: 2rem;
}

.phone-link, .email-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: var(--fihla-dark-blue);
    transition: all 0.3s ease;
}

    .phone-link:hover, .email-link:hover {
        background: var(--fihla-light-blue);
        color: white;
        transform: translateX(5px);
    }

    .phone-link i, .email-link i {
        color: var(--fihla-light-blue);
        width: 16px;
    }

    .phone-link:hover i, .email-link:hover i {
        color: white;
    }

.response-time, .availability {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.whatsapp-number {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    background: rgba(37, 211, 102, 0.1);
    padding: 1rem;
    border-radius: 10px;
    color: #25D366;
    font-weight: 600;
    margin-bottom: 1rem;
}

.email-btn, .whatsapp-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.email-btn {
    background: var(--fihla-light-blue);
    color: white;
}

    .email-btn:hover {
        background: #1a8ca3;
        transform: translateY(-2px);
    }

.whatsapp-btn {
    background: #25D366;
    color: white;
}

    .whatsapp-btn:hover {
        background: #128C7E;
        transform: translateY(-2px);
    }

/* Map Section */
.map-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.map-container {
    background: white;
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.map-icon {
    width: 100px;
    height: 100px;
    background: var(--fihla-light-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.map-placeholder h4 {
    color: var(--fihla-dark-blue);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.map-placeholder p {
    color: #666;
    margin-bottom: 2rem;
}

.map-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 600px;
}

.map-link-btn {
    background: rgba(33, 158, 188, 0.1);
    color: var(--fihla-light-blue);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px solid transparent;
}

    .map-link-btn:hover {
        background: var(--fihla-light-blue);
        color: white;
        transform: translateY(-2px);
    }

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 3rem 0;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.banner-icon {
    font-size: 3rem;
}

.banner-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.banner-text p {
    opacity: 0.9;
    margin: 0;
}

.banner-actions {
    display: flex;
    gap: 1rem;
}

.emergency-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

    .emergency-btn:hover {
        background: white;
        color: #ff6b6b;
        transform: translateY(-2px);
    }

    .emergency-btn.whatsapp:hover {
        color: #25D366;
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .branches-container {
        grid-template-columns: 1fr;
    }

    .methods-grid {
        grid-template-columns: 1fr;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .emergency-btn {
        justify-content: center;
    }

    .branch-actions {
        flex-direction: column;
    }

    .map-links {
        grid-template-columns: 1fr;
    }
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
    background: var(--fihla-light-gradient);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .modal-header h3 {
        margin: 0;
        font-size: 1.4rem;
    }

.close {
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .close:hover {
        color: #ff6b6b;
    }

.modal-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--fihla-dark-blue);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 0.8rem 1rem;
        border: 2px solid #e2e8f0;
        border-radius: 8px;
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--fihla-light-blue);
        }

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-primary, .btn-secondary {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--fihla-light-blue);
    color: white;
}

    .btn-primary:hover {
        background: #1a8ca3;
        transform: translateY(-2px);
    }

.btn-secondary {
    background: #e2e8f0;
    color: #666;
}

    .btn-secondary:hover {
        background: #cbd5e0;
    }

/* ======================================
               RANDOM DOPE GALLERY - NO CATEGORIES NEEDED
               WORKS WITH ANY PICTURES!
            ======================================= */

/* Cosmic Hero Section */
.gallery-hero {
    min-height: 70vh;
    background: linear-gradient(135deg, #000428 0%, #004e92 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-universe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(33, 158, 188, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: starTwinkle 4s ease-in-out infinite;
}

.scroll-pulse {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--fihla-light-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Gallery Controls */
.gallery-controls {
    padding: 2rem 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.controls-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.view-options, .gallery-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.view-btn, .action-btn, .particle-btn, .carousel-btn {
    background: white;
    border: 2px solid var(--fihla-light-blue);
    color: var(--fihla-light-blue);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .view-btn.active, .action-btn:hover, .particle-btn:hover, .carousel-btn:hover,
    .view-btn:hover {
        background: var(--fihla-light-blue);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(33, 158, 188, 0.3);
    }

/* Random Gallery */
.random-gallery {
    padding: 4rem 0;
    background: white;
    min-height: 80vh;
}

.gallery-view {
    display: none;
}

    .gallery-view.active {
        display: block;
    }

/* Dynamic Masonry View */
.masonry-grid {
    column-count: 4;
    column-gap: 1rem;
    padding: 1rem 0;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

    .masonry-item:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 20px 40px rgba(33, 158, 188, 0.3);
    }

    .masonry-item img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
    }

    .masonry-item:hover img {
        transform: scale(1.1);
    }

/* Metro Grid View */
.metro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    grid-gap: 1rem;
    grid-auto-flow: dense;
    padding: 1rem 0;
}

.metro-item {
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

    .metro-item:hover {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(33, 158, 188, 0.3);
        z-index: 2;
    }

    .metro-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .metro-item:hover img {
        transform: scale(1.1);
    }

    /* Random sizes for metro grid */
    .metro-item:nth-child(3n) {
        grid-column: span 2;
    }

    .metro-item:nth-child(5n) {
        grid-row: span 2;
    }

    .metro-item:nth-child(7n) {
        grid-column: span 2;
        grid-row: span 2;
    }

/* Particle Flow View */
.particles-container {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    overflow: hidden;
    margin: 2rem 0;
}

.particle {
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

    .particle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.particles-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

/* 3D Carousel View */
.carousel-3d-container {
    position: relative;
    height: 500px;
    perspective: 1000px;
    margin: 2rem 0;
}

.carousel-3d {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
}

.carousel-3d-item {
    position: absolute;
    width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.8s ease;
    cursor: pointer;
}

    .carousel-3d-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
    z-index: 10;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .lightbox-modal.active {
        display: flex;
        opacity: 1;
    }

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-container {
    max-width: 100%;
    max-height: 80vh;
    margin-bottom: 1rem;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close, .lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.lightbox-close {
    top: -60px;
    right: 0;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
}

    .lightbox-nav.prev-nav {
        left: -60px;
    }

    .lightbox-nav.next-nav {
        right: -60px;
    }

    .lightbox-close:hover, .lightbox-nav:hover {
        background: var(--fihla-light-blue);
        transform: scale(1.1);
    }

.lightbox-info {
    color: white;
    text-align: center;
}

.lightbox-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
}

.lightbox-counter {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* External Gallery */
.external-gallery {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.external-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

    .external-content h2 {
        color: var(--fihla-dark-blue);
        margin-bottom: 1rem;
    }

    .external-content p {
        color: #666;
        margin-bottom: 2rem;
    }

.external-link-btn {
    background: var(--fihla-light-gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(33, 158, 188, 0.3);
}

    .external-link-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(33, 158, 188, 0.4);
    }

/* Animations */
@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .controls-container {
        flex-direction: column;
        align-items: stretch;
    }

    .view-options, .gallery-actions {
        justify-content: center;
    }

    .masonry-grid {
        column-count: 2;
    }

    .metro-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        grid-auto-rows: 150px;
    }

    .particles-container {
        height: 400px;
    }

    .carousel-3d-container {
        height: 400px;
    }

    .carousel-3d-item {
        width: 250px;
        height: 300px;
    }

    .lightbox-nav {
        position: fixed;
        bottom: 20px;
        top: auto;
    }

        .lightbox-nav.prev-nav {
            left: 20px;
        }

        .lightbox-nav.next-nav {
            right: 20px;
        }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        column-count: 1;
    }

    .metro-grid {
        grid-template-columns: 1fr;
    }
}