/* ========================================
   STYLE.CSS - All Styles for Aim Dance Academy
   ======================================== */

/* Root Variables */
:root {
    --primary-color: #ff0033;
    --secondary-color: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --transition: all 0.3s ease;
    --dark-bg: #000;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.dark-bg {
    background: #050505;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Section Title */
.section-title {
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    text-align: center;
    margin: 0 auto 50px;
    max-width: 900px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.05;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title.active,
.section-title.fade-in.active,
.section-title.fade-in-up.active,
.section-title.slide-up.active {
    opacity: 1;
    transform: translateY(0);
}

.dark-bg .section-title {
    color: #ffffff;
}

.section-title span {
    color: var(--primary-color);
    display: inline-block;
}

/* ========================================
   NAVBAR STYLES
   ======================================== */

.navbar {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    position: relative;
    z-index: 10;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.circle-logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--primary-color);
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.circle-logo:hover {
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-links li {
    margin-left: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    position: relative;
    display: inline-block;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Underline Animation */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 80%;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
    position: relative;
    z-index: 20;
}

.menu-toggle:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.menu-toggle i {
    transition: color 0.3s ease, transform 0.3s ease;
}

.menu-toggle.active i {
    color: var(--primary-color);
    transform: rotate(90deg);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
        min-height: calc(100vh - 90px);
        height: auto;
        background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
            url('https://images.unsplash.com/photo-1508700115892-45ecd05ae2ad?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 100px 0 80px;
    }

    .hero-content {
        max-width: 760px;
        width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: clamp(2.4rem, 5vw, 4rem);
        margin-bottom: 12px;
        text-transform: uppercase;
        line-height: 1.05;
    }

    .hero-content p {
        font-size: clamp(1rem, 2.2vw, 1.5rem);
        color: var(--primary-color);
        font-weight: 600;
    }

    .hero-content img,
    .hero-content iframe,
    .hero-content video,
    .gallery-item img,
    .map-iframe,
    .video-wrapper iframe,
    .video-wrapper video {
        max-width: 100%;
        display: block;
    }

.offer-box {
    background: rgba(255, 0, 51, 0.2);
    border: 1px dashed var(--primary-color);
    padding: 15px;
    margin: 20px 0;
    border-radius: 10px;
}

.contact-info-hero {
    margin: 20px 0;
    font-size: 1.1rem;
}

/* ========================================
   TRAINER SECTION
   ======================================== */

.trainer-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trainer-img {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid var(--secondary-color);
}

.trainer-img img {
    width: 100%;
    display: block;
    filter: grayscale(30%);
    transition: var(--transition);
}

.trainer-img:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.trainer-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.trainer-heading {
    font-size: clamp(2.5rem, 3.5vw, 3rem);
    margin-bottom: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.05;
    max-width: 520px;
}

.trainer-heading span {
    color: var(--primary-color);
    display: inline-block;
}

.trainer-info h3 {
    margin: 0 0 30px;
    font-size: 1.75rem;
    line-height: 1.1;
}

.trainer-highlight {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .trainer-info {
        text-align: center;
    }

    .trainer-heading {
        text-align: center;
        margin-bottom: 14px;
    }

    .trainer-info h3 {
        text-align: center;
    }
}

/* ========================================
   CLASS CARDS
   ======================================== */

.class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.class-card {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    overflow: hidden;
    position: relative;
}

.class-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 51, 0.1);
    transition: left 0.3s ease;
    z-index: 0;
}

.class-card:hover::before {
    left: 0;
}

.class-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 0, 51, 0.2);
}

.class-card > * {
    position: relative;
    z-index: 1;
}

.compact-card {
    padding: 20px;
}

.class-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.class-card ul {
    list-style: none;
    margin-top: 15px;
    text-align: left;
    display: inline-block;
}

.class-card li {
    margin-bottom: 8px;
}

.class-card li i {
    font-size: 0.9rem;
    margin-right: 10px;
}

/* ========================================
   GALLERY SECTION
   ======================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ========================================
   REVIEW CARDS
   ======================================== */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(255, 0, 51, 0.2);
}

.review-stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #ff6666);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.3rem;
}

.review-info h4 {
    margin: 0 0 3px 0;
    color: #fff;
    font-weight: 600;
}

.review-info p {
    margin: 0;
    color: var(--primary-color);
    font-size: 0.85rem;
}

/* ========================================
   TIMING BOXES
   ======================================== */

.timing-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.timing-box {
    background: #111;
    padding: 30px;
    border-radius: 15px;
    width: 300px;
    text-align: center;
    border: 1px solid #333;
    transition: var(--transition);
}

.timing-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.2);
    transform: translateY(-5px);
}

.timing-box h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* ========================================
   WATCH/VIDEO SECTION
   ======================================== */

.watch-title {
    color: var(--primary-color);
    letter-spacing: 4px;
    text-align: center;
    width: 100%;
}

.youtube-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.youtube-video {
    width: 800px;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    background: #000;
}

.youtube-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    padding-bottom: 56.25%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.55);
    background: #000;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: #000;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-info p {
    margin: 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-icon {
    color: var(--primary-color);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
    border: 2px solid;
}

.social-links a[href*="instagram"] {
    background: #E4405F;
    border-color: #E4405F;
}

.social-links a[href*="facebook"] {
    background: #3b5998;
    border-color: #3b5998;
}

.social-links a[href*="whatsapp"] {
    background: #25D366;
    border-color: #25D366;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.footer-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    margin-top: 20px;
    transition: var(--transition);
}

.footer-phone-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-phone-icon {
    color: var(--primary-color);
}

.map-iframe {
    border: 0;
    border-radius: 15px;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 0, 51, 0.2);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 20px;
}

.directions-btn:hover {
    background: var(--primary-color);
    color: #000;
    transform: scale(1.05);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 20px;
    }

    .footer-logo {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--primary-color);
        background: #fff;
    }

    .footer-brand-name {
        margin: 0;
        font-size: 1.15rem;
        font-weight: 800;
        color: #fff;
        line-height: 1.2;
    }

    .footer-brand-copy {
        margin: 4px 0 0;
        color: var(--text-muted);
        font-size: 0.9rem;
    }

    .footer-column h3 {
        color: var(--primary-color);
        font-size: 1.2rem;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .footer-column p {
        color: var(--text-muted);
        line-height: 1.8;
        transition: var(--transition);
    }

    .footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list a {
    display: inline-flex;
    align-items: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links-list a::before {
    content: '▸';
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-links-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 0, 51, 0.1);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 0, 51, 0.3);
}

.footer-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    margin-top: 20px;
    transition: var(--transition);
}

.footer-phone-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #777;
}

.copyright p {
    margin: 8px 0;
}

.dev-credit a {
    color: white;
    text-decoration: none;
}

.dev-credit span {
    color: #007BFF;
    font-weight: 600;
}

.dev-credit a:hover span {
    text-decoration: underline;
}

/* ========================================
   FLOATING SOCIAL ICONS
   ======================================== */

.floating-socials {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10000;
    align-items: center;
}

.float-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
    animation: float 3.5s ease-in-out infinite;
}

.float-icon.instagram {
    background: linear-gradient(135deg, #2a0045, #48206f, #b51b5e);
}

.float-icon.facebook {
    background: #0b3d91;
}

.float-icon.whatsapp {
    width: 70px;
    height: 70px;
    font-size: 26px;
    background: #25D366;
}

.float-icon:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation Classes */
.fade-in,
.fade-in-up,
.slide-up,
.zoom-on-scroll {
    opacity: 0;
    transform: translateY(20px);
}

.fade-in.active {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-up.active {
    animation: fadeInUp 0.8s ease forwards;
}

.slide-up.active {
    animation: slideUp 0.8s ease forwards;
}

.zoom-on-scroll.active {
    animation: zoomIn 0.9s ease forwards;
}

.zoom-on-hover {
    cursor: pointer;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 75px;
        padding: 0;
    }

    .logo-container {
        font-size: 1rem;
        gap: 8px;
        flex: 1;
    }

    .circle-logo {
        width: 45px;
        height: 45px;
        border-width: 2px;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
    }

    .nav-links.active {
        max-height: 420px;
        opacity: 1;
        transform: translateY(0);
        padding: 18px 0;
    }

    .nav-links li {
        margin: 12px 0;
    }

    .nav-links a {
        display: block;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .nav-links a::after {
        display: none;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-toggle.active {
        color: var(--primary-color);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .trainer-flex {
        flex-direction: column;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 25px;
    }

    .youtube-wrapper {
        margin-bottom: 30px;
    }

    .video-wrapper {
        max-width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .gallery-item {
        min-height: 220px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 60px 0;
    }

    .map-iframe {
        height: auto;
        min-height: 320px;
    }

    .video-wrapper iframe,
    .video-wrapper video,
    .map-iframe,
    .youtube-video iframe {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 70px;
    }

    .logo-container {
        font-size: 0.85rem;
        gap: 6px;
    }

    .circle-logo {
        width: 40px;
        height: 40px;
    }

    .menu-toggle {
        font-size: 1.5rem;
    }

    .nav-links {
        top: 70px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .class-grid {
        gap: 20px;
    }

    .class-card {
        padding: 20px;
    }

    .timing-container {
        flex-direction: column;
        align-items: center;
    }

    .timing-box {
        width: 100%;
    }

    .footer-socials {
        gap: 10px;
    }

    .footer-socials a {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .float-icon {
        width: 42px;
        height: 42px;
    }

    .float-icon.whatsapp {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
