/* ----------------------------------------------------Nav Bar --------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
 background: linear-gradient(
  135deg,
  #05070d 0%,
  #0a1020 30%,
  #0f1b3a 55%,
  #0a132b 75%,
  #03040a 100%
);
    min-height: 100vh;
    flex-direction: column;
    padding: 20px;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

header {
    background: rgba(236, 235, 235, 0.116);
    border: 0.5px solid white;
    border-radius: 50em;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 0 24px;
    z-index: 1000;
    transition: all 0.3s ease;
    position: relative; /* Added for mobile menu positioning */
}

header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    position: relative; /* Added for mobile menu */
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #2d343652;
    font-weight: 700;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.03);
}

.logo-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.6rem;
    background: linear-gradient(135deg, #fbfeff 0%, #a24cff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #a450ff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: #c58fff;
}

.nav-links a.active::after {
    width: 100%;
}

.join-btn {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.2);
}

.join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(106, 17, 203, 0.3);
}

.join-btn:active {
    transform: translateY(0);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6a11cb;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.menu-toggle.active {
    color: #ff3333;
    transform: rotate(90deg);
}

/* Mobile responsiveness */
@media (max-width: 992px) {
    .nav-links {
        gap: 25px;
    }
    
    .join-btn {
        padding: 10px 22px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 16px;
        margin-bottom: 20px;
        border-radius: 16px;
        overflow: visible; /* Changed from default to allow menu to overflow */
    }
    
    .menu-toggle {
        display: block;
        font-size: 1.8rem;
        padding: 8px;
        position: relative;
        z-index: 1002;
    }
    
    .nav-links, .join-btn-container {
        display: none;
        width: 100%;
    }
    
    .navbar {
        flex-wrap: wrap;
        padding: 8px 0;
        overflow: visible; /* Allow menu to extend beyond navbar */
    }
    
    .logo-container {
        flex: 1;
        z-index: 1002;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
        order: 3;
        margin-top: 15px;
        padding: 20px 0;
        border-top: 2px solid rgba(106, 17, 203, 0.1);
        background: rgba(255, 255, 255, 0.98);
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        z-index: 1001;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease, padding 0.5s ease;
    }
    
    .nav-links.active {
        display: flex;
        max-height: 400px;
        padding: 20px 0;
    }
    
    .nav-links li {
        padding: 16px 24px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        font-size: 1.1rem;
        padding: 8px 0;
        color: #333;
        font-weight: 600;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .join-btn-container {
        order: 4;
        width: 100%;
        padding: 20px 0;
        text-align: center;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        position: absolute;
        top: calc(100% + 250px); /* Adjusted position */
        left: 0;
        z-index: 1001;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease, padding 0.5s ease;
    }
    
    .join-btn-container.active {
        display: block;
        max-height: 100px;
        padding: 20px 0;
    }
    
    .join-btn {
        width: 90%;
        max-width: 300px;
        padding: 16px 32px;
        font-size: 1.1rem;
        border-radius: 35px;
        margin: 0 auto;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease 0.6s, transform 0.3s ease 0.6s;
    }
    
    .join-btn-container.active .join-btn {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation for mobile menu */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* LANDING PAGE ---------------------------------------------------------------------------------------------------------- */

.main-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  min-height: 80vh;
  padding: 60px;
  flex-wrap: wrap;
}

.content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  z-index: 2;
  background-color: #0b0f2a00;
}

.big-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.7rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: white;
}

.description-box {
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  border-left: 3px solid #e8dcca;
  font-size: 0.95rem;
  line-height: 1.5;
  box-shadow: 2px 2px 15px rgba(255, 255, 255, 0.1);
}

.highlight {
  color: #ffffff;
  font-weight: 600;
}

.buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-white {
  background: white;
  color: #1a1a1e;
  padding: 12px 28px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  animation: breathe 2s infinite ease-in-out;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.btn-white:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-red {
  background: #ff3333;
  color: #fff;
  padding: 12px 22px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(255, 51, 51, 0.2);
}

.btn-red:hover {
  background: #cc0000;
  box-shadow: 0 6px 20px rgba(255, 51, 51, 0.3);
}

.members-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.members-img {
  height: 40px;
  width: auto;
  border-radius: 5px;
  margin-left: 30px;
}

.members-text {
  line-height: 1.2;
}

.count {
  font-size: 1.5rem;
  font-weight: 700;
}

.subtext {
  font-size: 0.9rem;
  color: #e8dcca;
}

.image-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-img {
  width: 80%;
  max-width: 400px;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 1s ease;
  box-shadow: 4px 4px 50px rgba(255, 255, 255, 0.1);
  margin-left: 100px;
}

.feature-img:hover {
  transform: scale(1.05);
}

/* Video Overlay - Fixed Z-index */
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 30, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000; /* Higher than mobile menu */
}

.video-overlay.active {
  display: flex;
}

.video-container {
  width: 80%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  padding: 0px;
  margin: 0px;
  border: 2px solid rgb(0, 0, 0);
  border-radius: 11px;
  position: relative;
  z-index: 2001;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

/* Close button for video overlay */
.close-video {
  position: absolute;
  top: -40px;
  right: 0;
  background: #ff3333;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2002;
}

#container {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  letter-spacing: 0.6px;
  display: inline-flex;
  align-items: center;
  color: #fffcfcbe;
  font-size: 24px;
  margin-bottom: 30px;
  margin-top: 10px;
}

.cursor {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  display: inline-block;
  width: 2px;
  background-color: #fff;
  animation: blink 0.7s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

/* MOBILE RESPONSIVE IMPROVEMENTS */
@media (max-width: 768px) {
    body {
        padding: 10px;
        overflow-x: hidden;
    }
    
    .main-container {
        flex-direction: column;
        padding: 20px;
        min-height: auto;
        gap: 40px;
        margin-top: 20px; /* Added space for mobile menu */
    }
    
    .content {
        max-width: 100%;
        text-align: center;
        padding: 0 10px;
    }
    
    .big-text {
        font-size: 1.5rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .description-box {
        padding: 15px;
        margin-bottom: 20px;
        font-size: 0.9rem;
        line-height: 1.6;
        box-shadow: 1px 1px 10px rgba(255, 255, 255, 0.1);
        border-left: 2px solid #e8dcca;
    }
    
    .buttons {
        justify-content: center;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .btn-white, .btn-red {
        padding: 14px 32px;
        font-size: 1rem;
        min-width: 160px;
        border-radius: 30px;
    }
    
    .btn-white {
        animation: none;
    }
    
    .btn-white:active, .btn-red:active {
        transform: scale(0.98);
    }
    
    .members-section {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .members-img {
        margin-left: 0;
        height: 35px;
    }
    
    .image-side {
        width: 100%;
        order: -1;
        margin-bottom: 20px;
    }
    
    .feature-img {
        width: 90%;
        max-width: 350px;
        margin-left: 0;
        box-shadow: 2px 2px 30px rgba(255, 255, 255, 0.1);
    }
    
    #container {
        font-size: 1.3rem;
        margin-bottom: 20px;
        justify-content: center;
        text-align: center;
    }
    
    .cursor {
        width: 1.5px;
    }
    
    
    /* Video overlay improvements for mobile */
    .video-container {
        width: 95%;
        border-radius: 8px;
    }
    
    .close-video {
        top: -35px;
        right: -10px;
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    /* Improve touch targets */
    button, 
    .btn-white, 
    .btn-red, 
    .orbit-left, 
    .orbit-right,
    .menu-toggle {
        min-height: 44px;
        min-width: 44px;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 15px;
        margin-top: 15px;
    }
    
    .big-text {
        font-size: 1.3rem;
    }
    
    .description-box {
        padding: 12px;
        font-size: 0.85rem;
    }
    
    .buttons {
        align-items: center;
        gap: 12px;
    }
    
    .btn-white, .btn-red {
        padding: 16px 24px;
    }
    
    .feature-img {
        width: 100%;
        border-radius: 15px;
    }
    
    .members-section {
        flex-direction: column;
        text-align: center;
    }
    
    .members-text {
        text-align: center;
    }
    
    .count {
        font-size: 1.3rem;
    }
    
    .subtext {
        font-size: 0.85rem;
    }
    
    #container {
        font-size: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    
    .video-container {
        width: 98%;
    }
    
    /* Prevent horizontal scrolling */
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* Tablet specific improvements */
@media (min-width: 769px) and (max-width: 1024px) {
    .main-container {
        padding: 40px;
    }
    
    .content {
        max-width: 50%;
    }
    
    .image-side {
        max-width: 50%;
    }
    
    .feature-img {
        margin-left: 50px;
    }
}

/* Large mobile devices (landscape) */
@media (max-height: 600px) and (orientation: landscape) {
    .main-container {
        min-height: auto;
        padding: 30px;
        margin-top: 30px;
    }
    
    .content {
        min-height: auto;
    }
    
    .buttons {
        margin-bottom: 20px;
    }
    
    .description-box {
        margin-bottom: 20px;
        padding: 15px;
    }
}


hr {
  display: block;
  width: 100%;
  border: none;
  height: 2px;
  margin: 60px 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(138, 43, 226, 0.9),
    rgba(37, 117, 252, 0.9),
    transparent
  );
}



/* Results Container */
.earnings-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 60px 20px;
}

.earnings-container {
  background: linear-gradient(135deg, #0a1020, #121b3a);
  color: #ffffff;
  padding: 24px 36px;
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 140, 255, 0.25);
  max-width: 600px;
}

.karma-results-heading {
    color: #ffffffb7;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
}

.karma-results-subheading {
    color: #f9f9ff79;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.7;
    text-align: center;
}

/* Image Container */
.results-image-container {
    position: relative;
    width: 100%;
    max-height: 450px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;
}

.results-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.results-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 450px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.zoom-instruction {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.results-image-container:hover .zoom-instruction {
    opacity: 1;
}
/* Responsive Design */
@media (max-width: 768px) {
    .karma-results-container {
        padding: 25px;
    }
    
    .karma-results-heading {
        font-size: 2.2rem;
    }
    
    .karma-results-subheading {
        font-size: 1.0rem;
        margin-bottom: 30px;
    }
    
    .results-image-container {
        max-height: 350px;
    }
    
    .results-image {
        max-height: 350px;
    }
    
    .close-zoom-btn {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
    
    .zoom-controls {
        bottom: 15px;
    }
    
    .zoom-control-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .karma-results-heading {
        font-size: 1.8rem;
    }
    
    .karma-results-subheading {
        font-size: 1.0rem;
    }
    
    .results-image-container {
        max-height: 280px;
    }
    
    .results-image {
        max-height: 280px;
    }
    
    .zoom-instruction {
        font-size: 0.8rem;
        padding: 6px 12px;
        bottom: 10px;
        right: 10px;
    }
    
    .zoom-controls {
        gap: 10px;
    }
    
    .zoom-control-btn {
        width: 40px;
        height: 40px;
    }
}


.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.logo {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 2px;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 25px auto 0;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    padding: 15px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.highlight {
    color: #2563eb;
    font-weight: 600;
    position: relative;
    padding: 0 2px;
}

.highlight::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: rgba(37, 99, 235, 0.1);
    z-index: -1;
    border-radius: 2px;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
}

@media (max-width: 1100px) {
    .products-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto 40px;
    }
}

@media (max-width: 600px) {
    .products-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

.offer-card {
    background: white;
    border-radius: 24px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04),
        inset 0 0 0 1px rgba(255, 255, 255, 0.9);
    padding: 45px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.6);
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
    border-radius: 24px 24px 0 0;
    opacity: 0.9;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(37, 99, 235, 0.1);
}

.offer-card:hover::before {
    opacity: 1;
}

.card-header {
    margin-bottom: 40px;
    padding-right: 100px;
    position: relative;
}

.card-title {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.card-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
    position: relative;
    padding-left: 15px;
}

.card-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, #2563eb, #60a5fa);
    border-radius: 2px;
}

.features-list {
    list-style-type: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
    transition: all 0.3s ease;
}

.feature-item:hover {
    padding-left: 10px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.03), transparent);
    border-radius: 8px;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    color: #2563eb;
    font-size: 1.2rem;
    margin-right: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 1px 2px rgba(37, 99, 235, 0.2);
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
}

.feature-text {
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.6;
    font-weight: 400;
}

.feature-text strong {
    color: #1e293b;
    font-weight: 600;
    background: linear-gradient(120deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    padding: 0 4px;
    border-radius: 4px;
}

.card-footer {
    border-top: 2px solid #f1f5f9;
    padding-top: 35px;
    margin-top: auto;
    position: relative;
}

.card-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 2px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: stretch;
        gap: 25px;
    }
}

.pricing-section {
    flex: 1;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.original-price {
    font-size: 1.2rem;
    color: #94a3b8;
    text-decoration: line-through;
    position: relative;
    padding: 4px 8px;
    background: rgba(148, 163, 184, 0.1);
    border-radius: 6px;
}

.discounted-price {
    font-size: 3.2rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.discounted-price::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, transparent);
    border-radius: 1px;
}

.cta-section {
    text-align: right;
    position: relative;
    flex-shrink: 0;
}

.button-line {
    position: absolute;
    top: -35px;
    right: 0;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb);
}

@media (max-width: 768px) {
    .button-line {
        width: 100%;
        background: linear-gradient(90deg, #e5e7eb, transparent, #e5e7eb);
    }
}

.join-button {
    padding: 22px 45px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 20px rgba(37, 99, 235, 0.2),
        0 4px 8px rgba(37, 99, 235, 0.1);
}

.join-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.join-button:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 30px rgba(37, 99, 235, 0.3),
        0 6px 12px rgba(37, 99, 235, 0.2);
}

.join-button:hover::before {
    left: 100%;
}

.join-button:active {
    transform: translateY(-1px) scale(0.98);
}

.product-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    color: #475569;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.03),
        inset 0 0 0 1px rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

/* Tablet Responsive Design */
@media (max-width: 768px) {
    .offer-card {
        padding: 35px 30px;
        border-radius: 20px;
    }
    
    .card-header {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .card-title {
        font-size: 1.8rem;
    }
    
    .card-subtitle {
        font-size: 1rem;
        padding-left: 12px;
    }
    
    .card-subtitle::before {
        width: 3px;
    }
    
    .features-list {
        margin-bottom: 30px;
    }
    
    .feature-item {
        padding: 16px 0;
    }
    
    .feature-text {
        font-size: 1rem;
    }
    
    .card-footer {
        padding-top: 30px;
    }
    
    .discounted-price {
        font-size: 2.8rem;
    }
    
    .original-price {
        font-size: 1.1rem;
        padding: 3px 6px;
    }
    
    .join-button {
        padding: 20px 35px;
        font-size: 1rem;
        width: 100%;
        border-radius: 12px;
    }
    
    .product-badge {
        top: 20px;
        right: 20px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .price-display {
        gap: 12px;
        margin-bottom: 10px;
    }
    
    .card-footer::before {
        width: 60px;
    }
}

/* Mobile Phone Responsive Design */
@media (max-width: 600px) {
    .products-container {
        gap: 30px;
    }
    
    .offer-card {
        padding: 30px 25px;
        border-radius: 18px;
    }
    
    .card-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .card-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        padding-left: 10px;
    }
    
    .feature-item {
        padding: 14px 0;
    }
    
    .feature-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
        margin-right: 15px;
        margin-top: 0;
    }
    
    .feature-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .discounted-price {
        font-size: 2.4rem;
    }
    
    .original-price {
        font-size: 1rem;
    }
    
    .product-badge {
        top: 15px;
        right: 15px;
        padding: 6px 14px;
        font-size: 0.75rem;
    }
    
    .card-footer::before {
        width: 50px;
        height: 2px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .join-button {
        padding: 18px 25px;
        font-size: 0.95rem;
        border-radius: 10px;
    }
}

/* Small Mobile Phone Responsive Design */
@media (max-width: 480px) {
    .products-container {
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .offer-card {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .card-header {
        margin-bottom: 25px;
    }
    
    .card-title {
        font-size: 1.4rem;
        letter-spacing: -0.3px;
    }
    
    .card-subtitle {
        font-size: 0.9rem;
        padding-left: 8px;
    }
    
    .card-subtitle::before {
        width: 2px;
        height: 50%;
    }
    
    .features-list {
        margin-bottom: 25px;
    }
    
    .feature-item {
        padding: 12px 0;
        align-items: center;
    }
    
    .feature-item:hover {
        padding-left: 8px;
    }
    
    .feature-icon {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
        margin-right: 12px;
        border-radius: 6px;
    }
    
    .feature-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .feature-text strong {
        padding: 0 3px;
    }
    
    .card-footer {
        padding-top: 25px;
    }
    
    .price-display {
        gap: 8px;
        margin-bottom: 8px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .original-price {
        font-size: 0.95rem;
        padding: 2px 6px;
    }
    
    .discounted-price {
        font-size: 2rem;
        letter-spacing: -0.3px;
    }
    
    .product-badge {
        position: relative;
        top: 0;
        right: 0;
        display: inline-block;
        margin-bottom: 15px;
        padding: 5px 12px;
        font-size: 0.7rem;
    }
    
    .card-header {
        position: relative;
    }
}

/* Very Small Mobile Phone Responsive Design */
@media (max-width: 360px) {
    .offer-card {
        padding: 20px 18px;
        border-radius: 14px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-subtitle {
        font-size: 0.85rem;
    }
    
    .feature-item {
        padding: 10px 0;
    }
    
    .feature-text {
        font-size: 0.85rem;
    }
    
    .discounted-price {
        font-size: 1.8rem;
    }
    
    .join-button {
        padding: 16px 20px;
        font-size: 0.9rem;
    }
    
    .product-badge {
        padding: 4px 10px;
        font-size: 0.65rem;
    }
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.offer-card {
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.offer-card:nth-child(1) {
    animation-delay: 0.1s;
}

.offer-card:nth-child(2) {
    animation-delay: 0.2s;
}

.offer-card:hover {
    animation-play-state: paused;
}

/* Glow effect on hover */
.offer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05), rgba(37, 99, 235, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.offer-card:hover::after {
    opacity: 1;
}

/* Mobile touch improvements */
@media (hover: none) and (pointer: coarse) {
    .join-button {
        min-height: 50px;
        padding: 15px 25px;
    }
    
    .feature-item {
        padding: 16px 0;
    }
    
    .offer-card:hover {
        transform: none;
        box-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.06),
            0 1px 4px rgba(0, 0, 0, 0.04),
            inset 0 0 0 1px rgba(255, 255, 255, 0.9);
    }
    
    .join-button:hover {
        transform: none;
    }
    
    .feature-item:hover {
        padding-left: 0;
        background: none;
    }
}

/* Reduced motion support for accessibility */
@media (prefers-reduced-motion: reduce) {
    .offer-card {
        animation: none;
        opacity: 1;
    }
    
    .join-button,
    .offer-card,
    .feature-item {
        transition: none;
    }
}



/* Pinterest Masonry Grid */
.pinterest-grid {
    column-count: 4;
    column-gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.pin {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: white;
    position: relative;
}

.pin:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.pin img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.pin:hover img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pinterest-grid {
        column-count: 4;
    }
}

@media (max-width: 900px) {
    .pinterest-grid {
        column-count: 3;
    }
}

@media (max-width: 600px) {
    .pinterest-grid {
        column-count: 2;
    }
}

@media (max-width: 400px) {
    .pinterest-grid {
        column-count: 1;
    }
}









.featured-section {
    width: 100%;
    max-width: 1400px;
    border-radius: 24px;
    overflow: hidden;
    padding: 10px 50px;
}

.section-header {
    margin-bottom: 0px;
    text-align: left;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(90deg, #60a5fa, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: -0.5px;
    display: inline-block;
}


/* Smaller Slider Container with Fade Effect */
.slider-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    border-radius: 12px;
}

/* Fade-out gradients for the slider */
.slider-container::before,
.slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 180px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.slider-container::before {
    left: 0;
    background: linear-gradient(90deg, rgba(30, 41, 59, 1) 0%, rgba(30, 41, 59, 0) 100%);
}

.slider-container::after {
    right: 0;
    background: linear-gradient(270deg, rgba(30, 41, 59, 1) 0%, rgba(30, 41, 59, 0) 100%);
}

.slider-track {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    align-items: center;
    height: 100px;
    animation: slide 40s linear infinite;
}

/* Smaller brand logos */
.brand-logo {
    flex-shrink: 0;
    width: 140px;
    height: 70px;
    margin: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    background: rgba(30, 41, 59, 0.7);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 3px;
    position: relative;
    overflow: hidden;
}

.brand-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.brand-logo:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.brand-logo i {
    font-size: 2.8rem;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

/* Brand-specific colors with glow effects */
.facebook { 
    color: #1877F2;
    text-shadow: 0 0 10px rgba(24, 119, 242, 0.3);
}
.instagram { 
    color: #E4405F;
    text-shadow: 0 0 10px rgba(228, 64, 95, 0.3);
}
.twitter { 
    color: #1DA1F2;
    text-shadow: 0 0 10px rgba(29, 161, 242, 0.3);
}
.youtube { 
    color: #FF0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}
.linkedin { 
    color: #0A66C2;
    text-shadow: 0 0 10px rgba(10, 102, 194, 0.3);
}
.tiktok { 
    color: #000000;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.pinterest { 
    color: #BD081C;
    text-shadow: 0 0 10px rgba(189, 8, 28, 0.3);
}
.snapchat { 
    color: #FFFC00;
    text-shadow: 0 0 10px rgba(255, 252, 0, 0.3);
}
.whatsapp { 
    color: #25D366;
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.3);
}
.spotify { 
    color: #1DB954;
    text-shadow: 0 0 10px rgba(29, 185, 84, 0.3);
}
.discord { 
    color: #5865F2;
    text-shadow: 0 0 10px rgba(88, 101, 242, 0.3);
}
.reddit { 
    color: #FF4500;
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.3);
}
.twitch { 
    color: #9146FF;
    text-shadow: 0 0 10px rgba(145, 70, 255, 0.3);
}
.apple { 
    color: #A2AAAD;
    text-shadow: 0 0 10px rgba(162, 170, 173, 0.3);
}
.android { 
    color: #3DDC84;
    text-shadow: 0 0 10px rgba(61, 220, 132, 0.3);
}

/* Animation for sliding */
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.slider-container:hover .slider-track {
    animation-play-state: paused;
}

/* Responsive design */
@media (max-width: 1200px) {
    .featured-section {
        max-width: 1000px;
        padding: 50px 40px;
    }
    
    .section-title {
        font-size: 2.6rem;
    }
    
    .brand-logo {
        width: 130px;
        height: 85px;
        margin: 0 18px;
    }
    
    .brand-logo i {
        font-size: 2.6rem;
    }
    
    .slider-container {
        height: 120px;
    }
    
    .slider-track {
        height: 120px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.4rem;
    }
    
    .slider-container::before,
    .slider-container::after {
        width: 140px;
    }
}

@media (max-width: 768px) {
    .featured-section {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
        padding-bottom: 15px;
    }
    
    .section-title:after {
        width: 120px;
    }
    
    .brand-logo {
        width: 110px;
        height: 75px;
        margin: 0 15px;
    }
    
    .brand-logo i {
        font-size: 2.2rem;
    }
    
    .slider-container {
        height: 100px;
    }
    
    .slider-track {
        height: 100px;
    }
    
    .slider-container::before,
    .slider-container::after {
        width: 100px;
    }
}

@media (max-width: 576px) {
    body {
        padding: 20px 15px;
    }
    
    .featured-section {
        padding: 30px 20px;
        border-radius: 18px;
    }
    
    .section-title {
        font-size: 2rem;
        padding-bottom: 12px;
    }
    
    .section-title:after {
        width: 100px;
        height: 4px;
    }
    
    .brand-logo {
        width: 100px;
        height: 70px;
        margin: 0 12px;
    }
    
    .brand-logo i {
        font-size: 2rem;
    }
    
    .slider-container {
        height: 90px;
    }
    
    .slider-track {
        height: 90px;
    }
    
    .slider-container::before,
    .slider-container::after {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .brand-logo {
        width: 90px;
        height: 65px;
        margin: 0 10px;
    }
    
    .brand-logo i {
        font-size: 1.8rem;
    }
    
    .slider-container {
        height: 85px;
    }
    
    .slider-track {
        height: 85px;
    }
    
    .slider-container::before,
    .slider-container::after {
        width: 60px;
    }
}
/* Add this temporarily to test */





//* ============================================
   FADED FOOTER - COMPLETE STYLES
   ============================================ */

/* Footer Base Styles */
.site-footer {
    background: linear-gradient(
        to top,
        rgba(10, 10, 25, 1) 0%,
        rgba(10, 10, 25, 0.95) 20%,
        rgba(10, 10, 25, 0.85) 40%,
        rgba(10, 10, 25, 0.7) 60%,
        rgba(10, 10, 25, 0.4) 80%,
        rgba(10, 10, 25, 0.1) 95%,
        transparent 100%
    );
    color: #b0b0ff;
    padding: 70px 20px 100px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
    border-top: 1px solid rgba(0, 180, 216, 0.1);
}

/* Enhanced Fade Overlay */
.site-footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(
        to top,
        rgba(10, 10, 25, 0.9) 0%,
        rgba(10, 10, 25, 0.6) 30%,
        rgba(10, 10, 25, 0.3) 60%,
        rgba(10, 10, 25, 0.1) 85%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Subtle Glow Effect */
.site-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 180, 216, 0.15) 0%,
        rgba(0, 180, 216, 0.05) 40%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 1;
}

/* Main Footer Container */
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Brand/Logo Section */
.footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 40px;
}

.footer-brand h2 {
    background: linear-gradient(135deg, #00e0e0 0%, #00b4d8 50%, #0096c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-brand .tagline {
    font-size: 1.1rem;
    color: #a0a0ff;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Footer Columns */
.footer-column h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00e0e0, #0096c7);
}

/* Links List */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0ff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #00e0e0;
    transform: translateX(5px);
}

.footer-links i {
    color: #00e0e0;
    font-size: 0.9rem;
    width: 20px;
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-info i {
    color: #00e0e0;
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 20px;
}

.contact-info span {
    color: #d0d0ff;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Newsletter */
.newsletter-form {
    margin-top: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #00b4d8;
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
    background: linear-gradient(135deg, #00b4d8, #0096c7);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #00c6ff, #00a8e8);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
}

/* Social Media */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #b0b0ff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #00b4d8;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.4);
}

/* Bottom Bar */
.footer-bottom {
    grid-column: 1 / -1;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00b4d8, transparent);
}

.copyright {
    color: #8080cc;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
}

.legal-links a {
    color: #a0a0ff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #00e0e0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .site-footer {
        padding: 60px 20px 80px;
    }
    
    .site-footer::before {
        height: 150px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info li {
        justify-content: center;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .site-footer {
        padding: 50px 15px 70px;
        margin-top: 60px;
    }
    
    .site-footer::before {
        height: 120px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .footer-brand h2 {
        font-size: 2rem;
    }
    
    .footer-column h3 {
        font-size: 1.2rem;
    }
    
    .site-footer {
        padding: 40px 12px 60px;
    }
    
    .site-footer::before {
        height: 100px;
    }
    
    .footer-bottom {
        margin-top: 40px;
    }
}

/* ============================================
   EXTRA ENHANCEMENTS
   ============================================ */

/* Animation for floating effect */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.footer-links a:hover i {
    animation: float 0.6s ease;
}

/* Smooth scroll for anchor links */
.footer-links a[href^="#"] {
    scroll-behavior: smooth;
}

/* Print Styles */
@media print {
    .site-footer {
        background: #f0f0f0 !important;
        color: #000 !important;
        padding: 30px 20px !important;
    }
    
    .site-footer::before,
    .site-footer::after {
        display: none;
    }
    
    .footer-links a,
    .social-links a {
        color: #000 !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .site-footer {
        background: #000 !important;
        border-top: 3px solid #00b4d8;
    }
    
    .footer-links a {
        color: #fff !important;
    }
    
    .footer-links a:hover {
        color: #00ffff !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .footer-links a,
    .social-links a,
    .newsletter-form button {
        transition: none !important;
        transform: none !important;
    }
    
    .footer-links a:hover {
        transform: none !important;
    }
}