:root {
    --primary: #007bff;
    /* Bright Blue */
    --secondary: #00bcd4;
    /* Cyan/Light Blue */
    --accent: #ff0055;
    --dark-bg: #050510;
    --glass-bg: rgba(0, 123, 255, 0.03);
    /* Blue tinted glass */
    --glass-border: rgba(0, 123, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #b0c4de;
    --gradient-main: linear-gradient(90deg, #0080ff 0%, #00e0ff 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(79, 172, 254, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 85, 0.05) 0%, transparent 20%);
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary);
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-main);
    padding: 12px 30px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 242, 254, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 242, 254, 0.3);
}

.btn-secondary {
    background: var(--gradient-main);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 15px;
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 224, 255, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 224, 255, 0.4);
    opacity: 0.9;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
    background: url('../images/hero-bg-new.png') no-repeat center center/cover;
    background-color: #050a14;
    /* Fallback color */
}

/* Removed hero::before blur effect */

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.badge {
    background: rgba(255, 0, 85, 0.15);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 90%;
}

.trust-badges {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Hero UI Mockup High Quality */
.tv-mockup {
    width: 100%;
    max-width: 550px;
    height: 340px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(10, 20, 40, 0.7);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 123, 255, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.tv-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 242, 255, 0.2);
}

.screen-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.15), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.screen {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.ui-sidebar {
    width: 60px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f57;
}

.dot.yellow {
    background: #febc2e;
}

.dot.green {
    background: #28c840;
}

.ui-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ui-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.search-bar {
    width: 60%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.user-profile {
    width: 25px;
    height: 25px;
    background: var(--gradient-main);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 224, 255, 0.5);
}

.ui-hero-banner {
    height: 100px;
    background: linear-gradient(90deg, #1a2a4a, #0d1525);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ui-hero-banner::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.1));
}

.ui-hero-banner span {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    background: linear-gradient(90deg, #fff, #b0c4de);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ui-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
    flex: 1;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.card .card-icon {
    font-size: 1.5rem;
    filter: grayscale(100%);
    transition: 0.3s;
}

.card:hover,
.card.active {
    background: rgba(0, 123, 255, 0.1);
    border-color: rgba(0, 123, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

.card:hover .card-icon,
.card.active .card-icon {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Features */
.features {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Channels Preview */
.channels-preview {
    padding: 80px 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), transparent);
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}

.text-content {
    flex: 1;
}

.channel-logos {
    flex: 1;
    padding: 40px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.brand {
    aspect-ratio: 16/9;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.check-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: var(--text-muted);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Pricing */
.pricing {
    padding: 80px 0;
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: #2a2a35;
    border: none;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
    min-width: 120px;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
}

.price-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    color: var(--text-main);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.price-card.popular {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.2);
    transform: scale(1.05);
    z-index: 2;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.price-card .sub-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.price-card.popular .sub-text {
    color: rgba(255, 255, 255, 0.8);
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.price-card.popular .price {
    color: var(--primary);
}

.price-card .features-list {
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
    font-size: 0.85rem;
}

.price-card .features-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    border-bottom: none;
}

/* Checkmarks */
.price-card .features-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: bold;
}

.price-card.popular .features-list li::before {
    color: var(--primary);
}

/* Buttons */
.btn-price {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    text-align: center;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.price-card .btn-price {
    background: var(--gradient-main);
    border: none;
    color: #fff;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 224, 255, 0.3);
}

.price-card .btn-price:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 224, 255, 0.5);
    opacity: 0.9;
}

.price-card.popular .btn-price {
    background: var(--gradient-main);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 224, 255, 0.4);
}

.price-card.popular .btn-price:hover {
    box-shadow: 0 6px 20px rgba(0, 224, 255, 0.6);
    transform: translateY(-2px);
}



/* Payment Icons */
.payment-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    opacity: 0.8;
}

.payment-icon {
    width: 40px;
    height: 25px;
    background: #f0f0f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: #555;
    font-weight: bold;
}

/* Ribbon for Popular Plan */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #6a5acd;
    color: #fff;
    padding: 5px 20px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #0a0e17;
    overflow: hidden;
}

.trustpilot-header {
    text-align: center;
    margin-bottom: 60px;
}

.trustpilot-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.trustpilot-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
}

.stars {
    color: #00b67a;
    /* Trustpilot Green */
    font-size: 1.2rem;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

/* Phone Mockup */
.phone-mockup {
    background: #fff;
    border-radius: 35px;
    padding: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 8px solid #1f1f1f;
    height: 580px;
    /* Taller for better UI spacing */
    width: 300px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.phone-screen {
    background: #e5ddd5;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10h10v10H10V10z' fill='%23d8dbe2' fill-opacity='0.1'/%3E%3C/svg%3E");
    /* Subtle pattern hint */
    height: 100%;
    width: 100%;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #000;
}

/* Status Bar */
.status-bar {
    height: 30px;
    background: #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    font-size: 11px;
    font-weight: 600;
    color: #000;
}

/* App Header */
.app-header {
    background: #f0f0f0;
    /* iOS style light header */
    padding: 8px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.back-arrow {
    color: #007aff;
    font-size: 20px;
    cursor: pointer;
}

.header-info {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.avatar {
    width: 35px;
    height: 35px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #555;
    font-weight: bold;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.header-icons {
    display: flex;
    gap: 15px;
    color: #007aff;
}

/* Chat Area */
.chat-area {
    flex-grow: 1;
    padding: 15px 10px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.date-label {
    align-self: center;
    background: rgba(225, 245, 254, 0.9);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    color: #555;
    margin-bottom: 5px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.chat-bubble {
    padding: 8px 12px;
    border-radius: 12px;
    max-width: 80%;
    position: relative;
    font-size: 14px;
    line-height: 1.3;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.chat-left {
    background: #fff;
    align-self: flex-start;
    border-top-left-radius: 2px;
}

.chat-right {
    background: #dcf8c6;
    align-self: flex-end;
    border-top-right-radius: 2px;
}

.msg-meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.msg-time {
    font-size: 10px;
    color: rgba(0, 0, 0, 0.45);
}

.double-check {
    width: 14px;
    height: 10px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.5 0L6 5.5l-2-2L2.5 5 6 8.5 13 1.5 11.5 0zM16 1.5L14.5 0 8.5 6 9.5 7l6.5-5.5z' fill='%2334b7f1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Input Area */
.input-area {
    height: 50px;
    background: #f0f0f0;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.plus-icon {
    color: #007aff;
    font-size: 24px;
}

.input-box {
    flex-grow: 1;
    background: #fff;
    height: 32px;
    border-radius: 16px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 13px;
    color: #aaa;
}

.mic-icon {
    color: #007aff;
    font-size: 20px;
}

/* Responsive Grid adjustment */
@media (max-width: 1200px) {
    .phone-mockup {
        width: 100%;
        max-width: 320px;
    }
}

/* Logo Carousel */
.logo-carousel {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-track {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

.logo-carousel:hover .logo-track {
    animation-play-state: paused;
}

.carousel-logo {
    height: 60px;
    margin: 0 40px;
    opacity: 0.7;
    transition: 0.3s;
    filter: grayscale(100%) brightness(1.5);
    /* Make them fit the dark theme */
    vertical-align: middle;
}

.carousel-logo:hover {
    opacity: 1;
    filter: none;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Review Image Carousel */
.review-carousel {
    background: transparent;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    margin-top: 30px;
}

.review-track {
    display: inline-block;
    animation: scroll-reviews 40s linear infinite;
    /* Slower scroll for readability */
}

.review-carousel:hover .review-track {
    animation-play-state: paused;
}

.review-img {
    height: 300px;
    /* Taller for readable screenshots */
    width: auto;
    margin: 0 10px;
    /* Small margin as requested */
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.review-img:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    z-index: 10;
    position: relative;
}

@keyframes scroll-reviews {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    text-align: center;
    background: transparent;
}

.service-label {
    color: #f1c40f;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.how-it-works h2 {
    font-size: 36px;
    margin-bottom: 60px;
    font-weight: 800;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.step-icon {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(241, 196, 15, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #f1c40f;
    margin-bottom: 25px;
    background: rgba(241, 196, 15, 0.05);
    transition: 0.3s;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    background: rgba(241, 196, 15, 0.1);
    border-color: #f1c40f;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.step-card p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.6;
    max-width: 300px;
}

.btn-gold {
    background: #f1c40f;
    color: #000;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.btn-gold:hover {
    background: #d4ac0d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.3);
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.faq-item h4 {
    margin-bottom: 10px;
    color: var(--primary);
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
/* Footer */
.footer {
    padding: 80px 0 30px;
    background: #0a0e17;
    /* Darker background */
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    /* 4 Columns */
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand p,
.footer-description {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #f1c40f;
    padding-left: 5px;
}

.contact-info-list p {
    color: #888;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 13px;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero .container {
        flex-direction: column;
        padding-top: 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        width: 100%;
    }

    .split-layout {
        flex-direction: column;
    }
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    text-align: center;
}

.contact-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-top: 5px;
    font-size: 0.95rem;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

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

.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.blog-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex: 1;
}