/* --- FOOTER BASE --- */
.starter-footer {
    width: 100%;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.starter-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.starter-footer-top {
    display: grid;
    gap: 40px;
    padding: 60px 0;
}

.starter-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.starter-footer-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.starter-footer-desc {
    font-size: 15px;
    line-height: 1.6;
    max-width: 300px;
}

.starter-footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
}

.starter-footer-col-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.starter-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.starter-footer-links a {
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.starter-footer-bottom {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .starter-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    .starter-footer-top {
        grid-template-columns: 1.5fr 2.5fr;
    }
}

.starter-footer-socials {
    display: flex;
    gap: 12px;
}

.starter-footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.starter-footer-copyright {
    font-size: 13px;
    opacity: 0.8;
}

/* --- STYLE 1: MINIMAL --- */
.starter-footer--minimal {
    background-color: #ffffff;
    color: #374151;
    border-top: 1px solid #f3f4f6;
}

.starter-footer--minimal .starter-footer-col-title {
    color: #111827;
}

.starter-footer--minimal .starter-footer-links a {
    color: #6b7280;
}

.starter-footer--minimal .starter-footer-links a:hover {
    color: #4f46e5;
    transform: translateX(4px);
}

.starter-footer--minimal .starter-footer-social-link {
    background-color: #f3f4f6;
    color: #4b5563;
}

.starter-footer--minimal .starter-footer-social-link:hover {
    background-color: #4f46e5;
    color: #fff;
    transform: translateY(-2px);
}

.starter-footer--minimal .starter-footer-bottom {
    border-top-color: #f3f4f6;
}

/* --- STYLE 2: DARK GLASS --- */
.starter-footer--dark {
    background-color: #0f172a; /* Dark Slate */
    color: #94a3b8;
    position: relative;
}

/* Glass Card Overlay for Newsletter/Brand area */
.starter-footer--dark .starter-footer-brand {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 16px;
}

.starter-footer--dark .starter-footer-col-title {
    color: #fff;
}

.starter-footer--dark .starter-footer-links a {
    color: #94a3b8;
}

.starter-footer--dark .starter-footer-links a:hover {
    color: #38bdf8; /* Sky blue */
    padding-left: 8px;
}

.starter-footer--dark .starter-footer-bottom {
    border-top-color: rgba(255,255,255,0.05);
}

.starter-footer--dark .starter-footer-social-link {
    background: rgba(255,255,255,0.05);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

.starter-footer--dark .starter-footer-social-link:hover {
    background: #38bdf8;
    border-color: #38bdf8;
    color: #0f172a;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}

/* Background Blobs */
.starter-footer--dark::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56,189,248,0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

/* --- STYLE 3: CREATIVE --- */
.starter-footer--creative {
    background-color: #4f46e5; /* Indigo */
    color: #e0e7ff;
}

.starter-footer--creative .starter-footer-top {
    display: block; /* Different layout */
    text-align: center;
}

.starter-footer-cta-title {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.1;
}
@media (min-width: 768px) {
    .starter-footer-cta-title { font-size: 72px; }
}

.starter-footer--creative .starter-footer-btn {
    background: #fff;
    color: #4f46e5;
    padding: 16px 40px;
    border-radius: 99px;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s;
    margin-bottom: 60px;
}
.starter-footer--creative .starter-footer-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.starter-footer--creative .starter-footer-columns {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 40px;
}

.starter-footer--creative .starter-footer-col-title {
    color: #fff;
    opacity: 0.6;
}

.starter-footer--creative .starter-footer-links a {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}
.starter-footer--creative .starter-footer-links a:hover {
    color: #a5b4fc;
}

.starter-footer--creative .starter-footer-bottom {
    border-top: none;
    background: rgba(0,0,0,0.1);
}

/* --- STYLE 4: NEON GLASS (PREMIUM) --- */
.starter-footer--neon-glass {
    background-color: #020617; /* Slate 950 */
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 40px;
}

/* 1. Animated Background Blobs */
.starter-fg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: starterBlobFloat 10s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}
.starter-fg-blob-1 {
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: #4f46e5; /* Indigo */
}
.starter-fg-blob-2 {
    bottom: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: #0ea5e9; /* Sky Blue */
    animation-delay: -5s;
}

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

/* 2. Main Container (Glass Layer) */
.starter-footer--neon-glass .starter-footer-container {
    position: relative;
    z-index: 10;
    background: rgba(15, 23, 42, 0.6); /* Semi-transparent dark */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* Top Glow Line on Container */
.starter-footer--neon-glass .starter-footer-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

/* 3. Typography & Elements */
.starter-footer--neon-glass .starter-footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0;
    margin-bottom: 60px;
}
@media (min-width: 992px) {
    .starter-footer--neon-glass .starter-footer-top {
        grid-template-columns: 4fr 6fr; /* Brand area vs Links area */
    }
}

.starter-fg-brand-area {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.starter-footer--neon-glass .starter-footer-logo img {
    height: 48px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.starter-footer--neon-glass .starter-footer-desc {
    color: #94a3b8;
    font-size: 16px;
    max-width: 400px;
    line-height: 1.7;
}

/* Subscription Box */
.starter-fg-subscribe {
    position: relative;
    margin-top: 10px;
    max-width: 400px;
}
.starter-fg-input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}
.starter-fg-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.05);
}
.starter-fg-submit {
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 6px;
    padding: 0 20px;
    border-radius: 12px;
    background: #3b82f6;
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.starter-fg-submit:hover {
    background: #2563eb;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

/* Links Grid */
.starter-footer--neon-glass .starter-footer-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
@media (min-width: 768px) {
    .starter-footer--neon-glass .starter-footer-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

.starter-footer--neon-glass .starter-footer-col-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}
.starter-footer--neon-glass .starter-footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 20px;
    height: 3px;
    background: #3b82f6;
    border-radius: 2px;
}

.starter-footer--neon-glass .starter-footer-links a {
    color: #cbd5e1;
    font-size: 15px;
    position: relative;
    padding-left: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.starter-footer--neon-glass .starter-footer-links a:hover {
    color: #fff;
    padding-left: 12px;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.starter-footer--neon-glass .starter-footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #3b82f6;
}
.starter-footer--neon-glass .starter-footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Bottom Bar */
.starter-footer--neon-glass .starter-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    margin-top: 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
}
@media(min-width: 768px) {
    .starter-footer--neon-glass .starter-footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* Social Icons with individual glows */
.starter-footer--neon-glass .starter-footer-socials {
    gap: 16px;
}
.starter-fg-social {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.starter-fg-social:hover {
    transform: translateY(-4px) scale(1.1);
    background: white;
}
.starter-fg-social.fb:hover { color: #1877f2; box-shadow: 0 10px 20px -5px rgba(24, 119, 242, 0.5); }
.starter-fg-social.tw:hover { color: #1da1f2; box-shadow: 0 10px 20px -5px rgba(29, 161, 242, 0.5); }
.starter-fg-social.li:hover { color: #0a66c2; box-shadow: 0 10px 20px -5px rgba(10, 102, 194, 0.5); }
.starter-fg-social.in:hover { color: #e1306c; box-shadow: 0 10px 20px -5px rgba(225, 48, 108, 0.5); }

/* Copyright */
.starter-footer--neon-glass .starter-footer-copyright {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

/* --- STYLE 5: INFINITY --- */
.starter-footer--infinity {
    background-color: #0f172a; /* Fallback */
    font-family: 'FiraGO', sans-serif; /* Assuming site font */
    position: relative;
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: hidden;
}

/* Global Background Image (Absolute) */
.starter-footer-inf-bg-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.starter-footer-inf-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5; /* Slightly muted */
    mix-blend-mode: luminosity; /* Blends nicely with color overlay */
}
.starter-footer-inf-overlay {
    position: absolute;
    inset: 0;
    /* Deep blue gradient as per reference */
    background: linear-gradient(to bottom, rgba(30, 58, 138, 0.8), rgba(15, 23, 42, 0.95));
    mix-blend-mode: multiply;
}

/* Hero Content */
.starter-footer-inf-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 100px;
}
.starter-footer-inf-title {
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
    .starter-footer-inf-title { font-size: 36px; }
}

/* Massive Text (Fixed/Absolute) */
.starter-footer-inf-big-text {
    position: absolute;
    top: 25%; /* Higher up */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    pointer-events: none;
    user-select: none;
    z-index: 0; 
}
.starter-footer-inf-big-text h1 {
    font-size: 22vw;
    font-weight: 800;
    color: white;
    opacity: 0.08; /* Increased opacity as requested */
    margin: 0;
    line-height: 1;
    letter-spacing: -0.05em;
}

/* Circle CTA */
.starter-footer-inf-circle-wrap {
    position: relative;
    margin-top: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.starter-footer-inf-circle-wrap:hover {
    transform: scale(1.05);
}
.starter-footer-inf-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* White Card */
.starter-footer-inf-card-wrapper {
    position: relative;
    z-index: 20;
    padding: 0 20px;
}
.starter-footer-inf-card {
    background: #ffffff;
    border-radius: 50px; /* Increased rounding */
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
    padding: 70px;
    max-width: 1500px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .starter-footer-inf-card { padding: 30px; border-radius: 30px; }
}

/* Grid Layout */
.starter-footer-inf-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid #f3f4f6;
}
@media (max-width: 1024px) {
    .starter-footer-inf-grid { grid-template-columns: repeat(1, 1fr); gap: 50px; }
}

/* Columns */
.starter-footer-inf-col-brand { grid-column: span 4; }
.starter-footer-inf-col-links-1 { grid-column: span 2; }
.starter-footer-inf-col-links-2 { grid-column: span 3; }
.starter-footer-inf-col-contact { grid-column: span 3; }

/* Brand */
.starter-footer-inf-logo {
    font-size: 56px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1;
    letter-spacing: -1px;
}
.starter-footer-inf-sublogo {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1;
}
.starter-footer-inf-slogan {
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    font-weight: 600;
}

/* Links */
.starter-footer-inf-links {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 10px;
}
.starter-footer-inf-links li {
    margin-bottom: 18px;
}
.starter-footer-inf-links a {
    text-decoration: none;
    color: #0f172a;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: color 0.3s;
    letter-spacing: 0.02em;
}
.starter-footer-inf-links a:hover {
    color: #2563eb;
}

/* Contacts */
.starter-footer-inf-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 10px;
}
.starter-footer-inf-phone {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    transition: color 0.3s;
}
.starter-footer-inf-phone:hover { color: #2563eb; }

.starter-footer-inf-email {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    border-bottom: 2px solid #0f172a;
    align-self: flex-start;
    transition: all 0.3s;
    padding-bottom: 2px;
}
.starter-footer-inf-email:hover {
    color: #2563eb;
    border-color: #2563eb;
}

.starter-footer-inf-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    font-size: 11px;
    color: #9ca3af;
    font-weight: 600;
    text-transform: uppercase;
}
.starter-footer-inf-socials a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}
.starter-footer-inf-socials a:hover { color: #2563eb; }

/* Copyright */
.starter-footer-inf-copy {
    padding-top: 32px;
    text-align: center;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 500;
}