/* ============================================
   IronGym - Landing Page Styles
   Colores: Amarillo (#FFD700), Gris plateado (#A8A8A8), Negro (#0a0a0a), Blanco (#FFF)
   ============================================ */

:root {
    --yellow: #FFD700;
    --yellow-glow: rgba(255, 215, 0, 0.4);
    --silver: #A8A8A8;
    --silver-light: #D0D0D0;
    --dark: #0a0a0a;
    --dark2: #111111;
    --dark3: #1a1a1a;
    --white: #ffffff;
    --gray-text: #888888;
    --green-check: #00e676;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 45px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
}

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

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--silver);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--yellow);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-cta {
    background: linear-gradient(135deg, var(--yellow), #ffaa00);
    color: var(--dark);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 0 20px var(--yellow-glow);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--yellow-glow);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--yellow);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    height: 44vh;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 35px;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 50%, var(--dark) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFD700' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-motto {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 5vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--silver-light), var(--silver), #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    margin-bottom: 5px;
    animation: fadeInUp 1s ease;
    word-break: break-word;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--gray-text);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s both;
}

.btn-hero {
    display: inline-block;
    background: transparent;
    color: var(--yellow);
    border: 2px solid var(--yellow);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-hero:hover {
    background: var(--yellow);
    color: var(--dark);
    box-shadow: 0 0 30px var(--yellow-glow);
    transform: translateY(-3px);
}

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

/* ============================================
   CAROUSEL
   ============================================ */
.carousel-section {
    padding: 80px 20px;
    background: var(--dark2);
}

.carousel-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--dark3);
    color: var(--gray-text);
    gap: 15px;
}

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

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.slide-caption h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--yellow);
    margin-bottom: 5px;
}

.slide-caption p {
    color: var(--silver-light);
    font-size: 1.1rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: var(--yellow);
    border: 2px solid var(--yellow);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--yellow);
    color: var(--dark);
}

.carousel-prev { left: 15px; }
.carousel-next { right: 15px; }

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.3);
}

.carousel-dots span.active {
    background: var(--yellow);
    border-color: var(--yellow);
    transform: scale(1.2);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
}

.text-accent {
    color: var(--yellow);
    text-shadow: 0 0 20px var(--yellow-glow);
}

.section-sub {
    color: var(--gray-text);
    font-size: 1.15rem;
    margin-top: 10px;
}

/* ============================================
   PLANS SECTION
   ============================================ */
.plans-section {
    padding: 100px 20px;
    background: var(--dark);
    position: relative;
}

/* Location Tabs */
.location-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.loc-tab {
    background: transparent;
    color: var(--silver);
    border: 2px solid rgba(255, 215, 0, 0.2);
    padding: 12px 30px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.loc-tab:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.loc-tab.active {
    background: var(--yellow);
    color: var(--dark);
    border-color: var(--yellow);
    box-shadow: 0 0 20px var(--yellow-glow);
}

.plans-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.plan-card {
    perspective: 1000px;
}

.plan-card-inner {
    background: var(--dark3);
    border-radius: 16px;
    padding: 25px 22px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.05);
}

.plan-card-inner:hover {
    transform: translateY(-5px);
    border-color: var(--yellow);
}

.plan-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--yellow);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.plan-desc {
    color: var(--gray-text);
    font-size: 0.88rem;
    min-height: auto;
}

.plan-price {
    margin: 18px 0;
    text-align: center;
}

.price-currency {
    font-size: 1.2rem;
    color: var(--silver);
    vertical-align: top;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--yellow);
    text-shadow: 0 0 20px var(--yellow-glow);
}

.price-period {
    color: var(--gray-text);
    font-size: 0.85rem;
    display: block;
    margin-top: 2px;
}

.plan-no-clause {
    text-align: center;
    color: var(--green-check);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding: 6px;
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: 8px;
    background: rgba(0, 230, 118, 0.05);
}

.plan-features {
    margin: 18px 0;
}

.features-title {
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 10px;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
    color: var(--silver-light);
    font-size: 0.88rem;
}

.feature-item i {
    color: var(--green-check);
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
    flex-shrink: 0;
}

.btn-plan {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--yellow), #ffaa00);
    color: var(--dark);
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 0 20px var(--yellow-glow);
    margin-top: 18px;
}

.btn-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--yellow-glow);
}

/* ============================================
   PROMOTIONS
   ============================================ */
.promo-section {
    padding: 100px 20px;
    background: var(--dark2);
}

.promo-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.promo-card {
    background: var(--dark3);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
    text-align: center;
}

.promo-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 0 25px var(--yellow-glow);
    transform: translateY(-5px);
}

.promo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.promo-card h3 {
    font-family: var(--font-heading);
    color: var(--yellow);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.promo-card p {
    color: var(--silver);
}

/* ============================================
   EVENTS
   ============================================ */
.events-section {
    padding: 100px 20px;
    background: var(--dark);
}

.events-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--dark3);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 0 25px var(--yellow-glow);
}

.event-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-info {
    padding: 25px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-date-badge {
    position: absolute;
    top: -30px;
    right: 20px;
    background: var(--yellow);
    color: var(--dark);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 0 20px var(--yellow-glow);
}

.event-day {
    font-size: 1.5rem;
    line-height: 1;
    font-family: var(--font-heading);
}

.event-month {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-info h3 {
    font-family: var(--font-heading);
    color: var(--yellow);
    font-size: 1.2rem;
    padding-right: 70px;
}

.event-info p {
    color: var(--silver);
    font-size: 0.95rem;
    flex: 1;
}

.event-time {
    color: var(--gray-text);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-time i {
    color: var(--yellow);
}

/* ============================================
   LOCATIONS
   ============================================ */
.locations-section {
    padding: 100px 20px;
    background: var(--dark2);
}

.locations-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.location-card {
    background: var(--dark3);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
}

.location-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 0 25px var(--yellow-glow);
    transform: translateY(-5px);
}

.location-icon {
    font-size: 2.5rem;
    color: var(--yellow);
    margin-bottom: 15px;
}

.location-card h3 {
    font-family: var(--font-heading);
    color: var(--yellow);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.location-card p {
    color: var(--silver);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.location-card p i {
    color: var(--yellow);
    width: 16px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--dark3), #1a1a2e);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,215,0,0.05) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--silver);
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.3);
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(37, 211, 102, 0.5);
}

.btn-cta-large i {
    font-size: 1.5rem;
}

/* ============================================
   SOCIAL SECTION
   ============================================ */
.social-section {
    padding: 80px 20px;
    background: var(--dark);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 220px;
    padding: 16px 30px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
}

.social-link i {
    font-size: 2rem;
}

.social-link.facebook {
    background: rgba(24, 119, 242, 0.1);
    color: #1877F2;
    border-color: rgba(24, 119, 242, 0.3);
}

.social-link.facebook:hover {
    background: #1877F2;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(24, 119, 242, 0.4);
}

.social-link.instagram {
    background: rgba(225, 48, 108, 0.1);
    color: #E1306C;
    border-color: rgba(225, 48, 108, 0.3);
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #E1306C, #FD1D1D);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(225, 48, 108, 0.4);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 999;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

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

.whatsapp-float i {
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark3);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 50px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver);
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-icon:hover {
    background: var(--yellow);
    color: var(--dark);
    border-color: var(--yellow);
}

.footer-locations {
    margin-bottom: 30px;
}

.footer-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--silver);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-location i {
    color: var(--yellow);
}

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

.footer-bottom p {
    color: var(--gray-text);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.nit {
    font-weight: 600;
    color: var(--silver);
    letter-spacing: 1px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10,10,10,0.98);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        border-bottom: 1px solid rgba(255,215,0,0.2);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-motto {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        letter-spacing: 2px;
    }

    .hero-sub {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .btn-hero {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .plan-card-inner {
        padding: 20px;
    }

    .plan-header h3 {
        font-size: 1.2rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }

    .carousel-btn.carousel-prev {
        left: 8px;
    }

    .carousel-btn.carousel-next {
        right: 8px;
    }

    .slide-caption h3 {
        font-size: 1.1rem;
    }

    .slide-caption p {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .social-link {
        width: 220px;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1rem;
    }

    .social-link i {
        font-size: 1.5rem;
    }

    .loc-tab {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .plan-no-clause {
        font-size: 0.8rem;
    }

    .feature-item {
        font-size: 0.88rem;
    }
}
