:root {
    --primary-green: #2596be; /* Brand Blue */
    --top-bar-bg: #437461; /* Muted green for top bar */
    --bg-cream: #FDFBF5; /* Light cream background */
    --text-dark: #1F2937;
    --accent-yellow: #FCD34D;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    zoom: 0.9;
}

/* Top Bar */
.top-bar {
    background-color: #000000;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Navbar & Mega Menu Styles */
.navbar {
    background-color: white;
    padding: 15px 0; /* Restored padding */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand img {
    height: 45px;
}

.navbar-nav {
    gap: 10px; /* Increased gap */
}

.nav-link {
    color: #333 !important;
    font-weight: 700; /* Restored boldness */
    font-size: 1rem; /* Slightly larger font */
    padding: 10px 15px !important;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

/* Hide default Bootstrap dropdown arrow */
.nav-link.dropdown-toggle::after {
    display: none;
}

.nav-link i.fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.nav-link:hover {
    color: var(--primary-green) !important;
}

.nav-link:hover i.fa-chevron-down {
    transform: rotate(180deg);
    color: var(--primary-green);
}

/* Mega Menu (Desktop) */
@media (min-width: 992px) {
    .nav-item.dropdown {
        position: relative; /* Standard dropdowns need relative positioning */
        z-index: 10; /* Base stacking context for normal state */
    }

    .nav-item.dropdown.has-megamenu {
        position: static; /* Only mega menus need static to go full width */
    }

    /* When hovering another menu while one is already open, the hovered one should appear on top */
    .nav-item.dropdown:hover {
        z-index: 1000;
    }

    .dropdown-menu {
        display: block; /* We control visibility with opacity/visibility for animation */
        visibility: hidden;
        opacity: 0;
        margin-top: 10px; /* Gap for hover bridge */
        border-radius: 8px;
        border: 1px solid rgba(0,0,0,0.04);
        box-shadow: 0 20px 40px -5px rgba(0,0,0,0.1), 0 10px 20px -5px rgba(0,0,0,0.04);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        transform: translateY(10px);
    }

    /* Show on Hover */
    .nav-item.dropdown:hover > .dropdown-menu,
    .dropdown-menu.show {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        margin-top: 0;
    }

    /* Invisible bridge to prevent menu closing when moving cursor (standard dropdowns only) */
    .nav-item.dropdown:not(.has-megamenu)::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 20px;
    }

    .dropdown-menu.megamenu {
        width: 100%;
        left: 0;
        right: 0;
        padding: 40px 0;
        background: #fff;
        border-radius: 0 0 12px 12px;
        border-top: 3px solid var(--primary-green); /* Professional accent */
    }
}

/* Mega Menu Content */
.megamenu-title {
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 10px;
    display: inline-block;
}

.megamenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.megamenu-list li {
    margin-bottom: 16px;
}

.megamenu-item {
    text-decoration: none;
    color: #4b5563;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.2s ease;
    padding: 12px;
    border-radius: 8px;
}

.megamenu-item:hover {
    background-color: #f0f9ff;
    color: #2596be;
    transform: translateX(3px);
}

.megamenu-item i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 6px;
    color: #6b7280;
    transition: all 0.2s;
    margin-top: 2px;
    font-size: 0.8rem;
}

.megamenu-item:hover i {
    background-color: #2596be;
    color: white;
}

.megamenu-item div {
    font-weight: 600;
}

.megamenu-item small {
    display: block;
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 400;
    margin-top: 2px;
}

/* Featured Card inside Menu */
.menu-featured-card {
    background: #f3f4f6;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
}

.menu-featured-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.menu-featured-card p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 15px;
}

/* Standard Dropdown Styles */
.dropdown-menu:not(.megamenu) {
    width: 260px;
    padding: 15px;
    position: absolute;
    left: 0;
    top: 100%;
}

/* Unified Menu Icon Wrapper */
.menu-icon-wrapper {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 6px;
    color: #6b7280;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.dropdown-item:hover .menu-icon-wrapper {
    background-color: #2596be;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 20px;
        max-height: 80vh;
        overflow-y: auto;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-radius: 0 0 12px 12px;
    }

    .nav-link {
        padding: 12px 0 !important;
        border-bottom: 1px solid #f3f4f6;
    }

    .dropdown-menu {
        box-shadow: none;
        border: none;
        padding-left: 15px;
        background: #f9fafb;
    }
    
    .megamenu-title {
        margin-top: 15px;
    }

    /* Mobile Currency Item */
    .mobile-currency-item {
        padding: 12px 0;
        border-bottom: 1px solid #f3f4f6;
        justify-content: space-between !important;
        width: 100%;
    }

    /* Mobile Auth Buttons */
    .mobile-auth-item {
        width: 100%;
        margin-top: 10px;
    }

    .mobile-auth-item .nav-link {
        border-bottom: none !important;
        justify-content: center;
        border-radius: 8px;
        background-color: #f3f4f6;
        padding: 12px !important;
    }
    
    .mobile-auth-item .register-btn {
        background-color: var(--primary-green);
        color: white !important;
    }
    
    .mobile-auth-item .register-btn:hover {
        background-color: #1e7a9b;
    }
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #333 !important;
}

.login-btn i {
    font-size: 1.1rem;
}

.register-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #333 !important;
}

.register-btn i {
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    background-color: var(--bg-cream);
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(37, 150, 190, 0.6));
    z-index: 1;
}

/* Modern Hero Variant (for Shared Hosting) */
.hero-modern {
    background-color: #eaf8ff;
    background-image: none;
    padding: 80px 0;
    min-height: auto;
}

.hero-modern::before {
    display: none;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
}

.trust-item i {
    font-size: 1.1rem;
}

/* Price Amount */
.price-amount {
    font-weight: 800;
    font-size: 1.3rem;
    color: #2596be;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-outline-green {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-outline-green:hover {
    background-color: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 150, 190, 0.3);
}

/* Hero Float Badge */
.hero-float-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2596be, #1e7a9b);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(37, 150, 190, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-modern .hero-title {
    color: #1f2937;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-modern .hero-text {
    color: #4b5563;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 100%;
}

.hero-badge {
    background-color: #fcd34d;
    color: #1f2937;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 20px;
}

.price-highlight {
    background: linear-gradient(90deg, rgba(252, 211, 77, 0.3) 0%, #fcd34d 15%);
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
    border-left: 4px solid #f59e0b;
}

.btn-green-solid {
    background-color: #116f48;
    color: white;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-green-solid:hover {
    background-color: #0d5639;
    color: white;
}

.hero-modern-img-wrapper {
    position: relative;
    padding: 20px;
}

.hero-modern-img {
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 100%;
    position: relative;
    z-index: 2;
}

.dots-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#9ca3af 2px, transparent 2px);
    background-size: 10px 10px;
    z-index: 1;
}

.dots-top-left {
    top: 0;
    left: 0;
}

.dots-bottom-right {
    bottom: 0;
    right: 0;
}

.hero-float-icon {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    font-size: 2.5rem;
    color: #1f2937;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.price-tag {
    font-weight: 600;
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 1.5rem;
}

.btn-get-started {
    background-color: #165c3d;
    color: white;
    font-weight: 700;
    padding: 15px 30px;
    text-transform: uppercase;
    border-radius: 5px;
    border: none;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background-color: #0e422b;
    color: white;
    transform: translateY(-2px);
}

.guarantee-text {
    font-size: 0.8rem;
    color: #6B7280;
    margin-top: 1rem;
}

/* Right Side Graphic Placeholder */
.hero-image-container {
    position: relative;
    padding: 20px;
}

.hero-img {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Black Friday Badge Styling */
.black-friday-badge {
    position: absolute;
    bottom: -30px;
    left: -20px;
    z-index: 2;
    background-color: #FFE600;
    color: black;
    padding: 20px;
    transform: rotate(-5deg);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
    border: 2px solid white;
    max-width: 350px;
}

.bf-title {
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 0.9;
    text-transform: uppercase;
}

.bf-subtitle {
    font-weight: 800;
    background: black;
    color: #FFE600;
    display: inline-block;
    padding: 2px 5px;
    transform: rotate(-2deg);
    margin-bottom: 5px;
}

.bf-deal {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 5px;
}

/* Footer Strip */
.footer-strip {
    background-color: var(--bg-cream);
    padding-bottom: 20px;
    text-align: center;
}

.cnet-logo {
    height: 30px;
    vertical-align: middle;
    margin-right: 15px;
}

.cnet-quote {
    font-style: italic;
    font-weight: 500;
    color: #4B5563;
    font-size: 1.1rem;
}

/* Decorative dots */
.dots-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#E5E7EB 20%, transparent 20%);
    background-size: 10px 10px;
    z-index: 0;
}

/* Footer Styles */
.footer-dark {
    background-color: #111111;
    color: #9CA3AF;
    padding: 80px 0 40px;
    font-size: 0.9rem;
}

.footer-dark h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.01em;
}

.footer-dark ul {
    list-style: none;
    padding: 0;
}

.footer-dark ul li {
    margin-bottom: 1rem;
}

.footer-dark ul li a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 400;
}

.footer-dark ul li a:hover {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #262626;
    margin-top: 60px;
    padding-top: 40px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-brand {
    font-weight: 800; 
    font-size: 1.6rem; 
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-brand:hover {
    color: white;
}

.lang-selector {
    color: white;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.lang-selector:hover {
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}

.social-icons a {
    color: white;
    font-size: 1.4rem;
    text-decoration: none;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: #cccccc;
}

.copyright-section {
    margin-top: 40px;
    font-size: 0.75rem;
    color: #6B7280;
    line-height: 1.6;
}

.legal-links {
    text-align: right;
}

.legal-links a {
    color: #9CA3AF;
    margin-left: 25px;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-logo-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
    
    .legal-links {
        text-align: left;
        margin-top: 20px;
    }
    
    .legal-links a {
        margin-left: 0;
        margin-right: 20px;
        display: inline-block;
        margin-bottom: 10px;
    }
}

/* Modern Footer Styles */
.footer-modern {
    background: #000000;
    color: #9CA3AF;
    padding: 80px 0 0;
    font-size: 0.95rem;
}

.footer-brand-wrapper {
    border-bottom: 1px solid #2a3441;
    padding-bottom: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
}

.footer-tagline {
    color: #2596be;
    font-weight: 600;
    font-size: 1rem;
}

.footer-description {
    line-height: 1.7;
    color: #9CA3AF;
}

/* Newsletter */
.newsletter-signup {
    margin-top: 30px;
}

.newsletter-title {
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.newsletter-form .form-control {
    background-color: #2a3441;
    border: 1px solid #3a4556;
    color: white;
    padding: 12px 15px;
    border-radius: 8px 0 0 8px;
}

.newsletter-form .form-control::placeholder {
    color: #6B7280;
}

.newsletter-form .btn-success {
    background-color: #2596be;
    border-color: #2596be;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 0 8px 8px 0;
}

.newsletter-form .btn-success:hover {
    background-color: #1e7a9b;
    border-color: #1e7a9b;
}

.newsletter-privacy {
    font-size: 0.8rem;
    color: #6B7280;
    margin-top: 10px;
    margin-bottom: 0;
}

/* Footer Columns */
.footer-column-title {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links li a {
    color: #9CA3AF;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 400;
    display: inline-block;
}

.footer-links li a:hover {
    color: #2596be;
    transform: translateX(5px);
}

/* Footer Bottom Modern */
.footer-bottom-modern {
    border-top: 1px solid #2a3441;
    margin-top: 60px;
    padding: 40px 0;
}

.footer-legal-info {
    color: #6B7280;
    font-size: 0.85rem;
}

.footer-legal-info a {
    color: #9CA3AF;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.2s;
}

.footer-legal-info a:hover {
    color: #2596be;
    text-decoration: underline;
}

.license-text {
    font-size: 0.8rem;
    color: #6B7280;
    opacity: 0.8;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.payment-label {
    color: #6B7280;
    font-size: 0.85rem;
    font-weight: 600;
}

.payment-methods i {
    color: #9CA3AF;
    font-size: 1.8rem;
    transition: color 0.2s;
}

.payment-methods i:hover {
    color: white;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

.footer-separator {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 15px 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #2a3441;
    color: #9CA3AF;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    background-color: #2596be;
    color: white;
    transform: translateY(-3px);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-modern {
        padding: 60px 0 0;
    }
    
    .footer-brand-wrapper {
        border-bottom: none;
        margin-bottom: 30px;
    }
    
    .newsletter-signup {
        margin-top: 20px;
    }
    
    .payment-methods {
        justify-content: flex-start;
        margin-bottom: 20px;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .footer-bottom-modern {
        margin-top: 40px;
        padding: 30px 0;
    }
}

/* Feature Spotlight Section */
.feature-spotlight-section {
    padding: 100px 0;
    background-color: white;
}

.spotlight-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.2;
}

.spotlight-text {
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.spotlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spotlight-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.6;
}

.spotlight-list li i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.why-card {
    padding: 0 10px;
}

.why-img-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.why-img-wrapper {
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.why-card:hover .why-img-wrapper {
    transform: translateY(-5px);
}

.why-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
    line-height: 1.4;
}

.why-text {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Pricing Table Styles */
.pricing-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pricing-card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    position: relative;
    overflow: visible;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(90deg, #2596be, #4aa9cc);
    transition: height 0.3s ease;
}

.pricing-card:hover::before {
    height: 4px;
}

.pricing-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(-8px);
    border-color: #2596be;
}

.pricing-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
    letter-spacing: -0.025em;
}

.save-badge {
    background-color: #fef3c7;
    color: #92400e;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
    margin-right: 8px;
    border: 1px solid #f59e0b;
}

.old-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.95rem;
    font-weight: 500;
}

.current-price {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    margin: 12px 0 8px;
    letter-spacing: -0.05em;
}

.price-period {
    font-size: 1.1rem;
    font-weight: 500;
    color: #4b5563;
}

.term-text {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 24px;
    font-weight: 400;
}

.btn-buy {
    width: 100%;
    background-color: #1a1a1a;
    color: white;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 8px;
    border: none;
    margin-bottom: 28px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}

.btn-buy::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.5s;
}

.btn-buy:hover::before {
    left: 100%;
}

.btn-buy:hover {
    background-color: #2596be;
    color: white;
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(37, 150, 190, 0.3);
}

.feature-list {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
    color: #374151;
    margin: 0;
}

.feature-list li {
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 4px 0;
    transition: transform 0.2s ease;
}

.feature-list li:hover {
    transform: translateX(4px);
}

.feature-list li i {
    margin-top: 2px;
    color: #2596be;
    width: 18px;
    font-size: 1rem;
}

.feature-list li .far.fa-question-circle {
    color: #9ca3af;
    font-size: 0.85rem;
    margin-top: 4px;
}

/* Domain Search Styling */
.domain-search-container {
    margin: 40px auto 0;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: flex;
    max-width: 900px;
    width: 100%;
}

.domain-search-input {
    border: none;
    flex-grow: 1;
    padding: 18px 25px;
    outline: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.domain-search-btn {
    background-color: #111;
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.domain-search-btn:hover {
    background-color: #333;
}

/* Responsive Domain Search */
@media (max-width: 768px) {
    .domain-search-container {
        flex-direction: column;
        padding: 12px;
        margin: 30px auto 0;
    }
    
    .domain-search-input {
        padding: 15px 20px;
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .domain-search-btn {
        padding: 15px 25px;
        font-size: 1rem;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .domain-search-container {
        padding: 10px;
        margin: 25px auto 0;
    }
    
    .domain-search-input {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
    
    .domain-search-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background-color: white;
}

.faq-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.faq-subtitle {
    color: #6b7280;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.solution-card {
    background: white;
    border: none;
    border-radius: 16px;
    padding: 35px 30px;
    height: 100%;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2596be, #4aa9cc);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-10px);
}

.solution-icon {
    width: 65px;
    height: 65px;
    background-color: #eaf8ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: #2596be;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    background-color: #2596be;
    color: white;
    transform: scale(1.1) rotate(3deg);
}

.solution-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111827;
}

.solution-text {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1; /* Push footer down */
}

.solution-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.solution-price {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin: 0;
}

.solution-price span {
    font-size: 1.4rem;
    color: #2596be;
    font-weight: 800;
    display: block;
    margin-top: 4px;
}

.btn-outline-brand {
    color: #2596be;
    border: 2px solid #e5e7eb;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    height: 44px; /* Match visual height of price block */
}

.btn-outline-brand:hover {
    background-color: #2596be;
    border-color: #2596be;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 150, 190, 0.25);
}

.custom-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #e5e7eb;
    background: transparent;
}

.custom-accordion .accordion-button {
    background-color: transparent;
    box-shadow: none;
    color: #1a1a1a;
    font-weight: 500;
    padding: 25px 0;
    font-size: 1rem;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #2596be;
    background-color: transparent;
}

.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236b7280'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232596be'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-body {
    padding: 0 0 25px 0;
    color: #4b5563;
    line-height: 1.6;
}

/* Mobile adjustments for FAQ */
@media (max-width: 768px) {
    .custom-accordion .accordion-button {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .custom-accordion .accordion-body {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Shared Hosting Specific Styles */
.feature-grid-section {
    padding: 80px 0;
    background-color: white;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(37, 150, 190, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2596be;
    font-size: 1.2rem;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1f2937;
}

.feature-content p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.tech-specs-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.tech-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.app-section {
    padding: 80px 0;
    text-align: center;
}

.app-icon {
    font-size: 3rem;
    color: #4b5563;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.app-icon:hover {
    color: #2596be;
}

/* VPS Pricing Table Styles */
.vps-pricing-table-wrapper {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.vps-pricing-table {
    margin-bottom: 0;
}

.vps-pricing-table thead th {
    padding: 25px 20px;
    font-weight: 800;
    color: #111827;
    background-color: #f8f9fa;
    border-bottom: 2px solid #e5e7eb;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.vps-pricing-table tbody td {
    padding: 25px 20px;
    font-size: 0.95rem;
    color: #4b5563;
    vertical-align: middle;
    border-bottom: 1px solid #f3f4f6;
}

.vps-pricing-table tbody tr {
    transition: all 0.2s ease;
}

.vps-pricing-table tbody tr:hover {
    background-color: #f0fdf4; /* Light green tint */
}

.vps-pricing-table .fw-bold.text-primary {
    color: #2596be !important; /* Brand Blue/Green */
    font-size: 1.1rem;
}

.vps-pricing-table .fw-bold.text-dark {
    color: #111827 !important;
    font-size: 1.1rem;
}

/* Buttons in table */
.vps-pricing-table .btn-outline-primary {
    color: #2596be;
    border-color: #2596be;
    font-weight: 600;
}

.vps-pricing-table .btn-outline-primary:hover {
    background-color: #2596be;
    color: white;
}

.vps-pricing-table .btn-primary {
    background-color: #2596be;
    border-color: #2596be;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(37, 150, 190, 0.2);
}

.vps-pricing-table .btn-primary:hover {
    background-color: #1e7a9b;
    border-color: #1e7a9b;
}

/* Highlight Active Row */
.vps-pricing-table .table-active-row {
    background-color: #f0fdf4; /* Light green tint to match brand */
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    z-index: 1;
}

.vps-pricing-table .table-active-row td {
    color: #111827;
    font-weight: 500;
    border-bottom-color: #dcfce7;
}

.vps-pricing-table .table-active-row:hover {
    background-color: #dcfce7;
}

/* Badges */
.vps-pricing-table .badge.bg-success {
    background-color: #116f48 !important; /* Brand Green */
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 10px;
}

.vps-pricing-table .badge.bg-light {
    background-color: #f3f4f6 !important;
    color: #6b7280 !important;
    border: 1px solid #e5e7eb !important;
    font-weight: 500;
}

/* Mobile Responsive Table */
@media (max-width: 768px) {
    .vps-pricing-table-wrapper {
        border: none;
        box-shadow: none;
        background: transparent;
    }

    .vps-pricing-table thead {
        display: none;
    }

    .vps-pricing-table, 
    .vps-pricing-table tbody, 
    .vps-pricing-table tr, 
    .vps-pricing-table td {
        display: block;
        width: 100%;
    }

    .vps-pricing-table tr {
        margin-bottom: 20px;
        background: white;
        border-radius: 12px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 4px 6px rgba(0,0,0,0.02);
        padding: 15px;
    }

    .vps-pricing-table td {
        text-align: right;
        padding: 10px 0;
        border-bottom: 1px solid #f3f4f6;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .vps-pricing-table td:last-child {
        border-bottom: none;
        justify-content: center;
        padding-top: 20px;
    }

    .vps-pricing-table td::before {
        content: attr(data-label);
        float: left;
        font-weight: 700;
        color: #6b7280;
        text-transform: uppercase;
        font-size: 0.75rem;
    }
    
    /* Specific adjustments for mobile first cell */
    .vps-pricing-table td:first-child {
        text-align: left;
        justify-content: flex-start;
        gap: 10px;
    }
}

/* Support Section (New Addition) */
.support-section-wrapper {
    background: linear-gradient(135deg, #116f48 0%, #0d4e33 100%); /* refined gradient */
    color: white;
    overflow: hidden;
    position: relative;
}

.support-image-col {
    background-image: url('../images/support-staff.png');
    background-size: cover;
    background-position: center;
    min-height: 600px; /* Increased height */
    position: relative;
}

/* Overlay for image to make it fit better with theme */
.support-image-col::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(17, 111, 72, 0.4), rgba(17, 111, 72, 0.1));
}

.support-content-col {
    padding: 100px 80px; /* Increased padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.support-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.2;
    color: white;
}

.support-card {
    background: rgba(255, 255, 255, 0.95); /* Slightly transparent white */
    border-radius: 16px;
    padding: 20px 25px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    color: #333;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.support-card:last-child {
    margin-bottom: 0;
}

.support-card:hover {
    transform: translateY(-5px) translateX(5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: white;
}

.support-card-icon {
    flex-shrink: 0;
    width: 50px; /* Slightly smaller icon container */
    height: 50px;
    background-color: rgba(37, 150, 190, 0.1); /* Light blue bg */
    border-radius: 12px; /* Soft square */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2596be;
    font-size: 1.25rem;
    margin-top: 0;
    transition: all 0.3s ease;
}

.support-card:hover .support-card-icon {
    background-color: #2596be;
    color: white;
    transform: rotate(5deg);
}

.support-card-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: #111827; /* Dark text for contrast */
    margin-bottom: 6px;
}

.support-card-text {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 991px) {
    .support-content-col {
        padding: 60px 30px;
    }
    .support-image-col {
        min-height: 300px;
        order: -1; /* Image on top */
    }
    .support-title {
        font-size: 2rem;
        text-align: center;
    }
}

/* Digital Journey CTA Section */
.cta-section-modern {
    background-color: #eaf8ff; /* Matching hero-modern background */
    padding: 80px 0;
    text-align: center;
}

.cta-modern-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
}

.cta-modern-text {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-cta {
    background-color: #2596be;
    color: white;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #2596be;
}

.btn-primary-cta:hover {
    background-color: #1e7a9b;
    border-color: #1e7a9b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 150, 190, 0.2);
}

.btn-secondary-cta {
    background-color: #4b5563;
    color: white;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #4b5563;
}

.btn-secondary-cta:hover {
    background-color: #374151;
    border-color: #374151;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(75, 85, 99, 0.2);
}


/* Domain Extensions Badges */
.domain-extensions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.domain-badge-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 12px 20px;
    text-align: center;
    min-width: 100px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.domain-badge-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.domain-extension {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.domain-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2596be;
}

/* Responsive Domain Cards */
@media (max-width: 768px) {
    .domain-extensions {
        gap: 10px;
    }
    
    .domain-badge-card {
        padding: 10px 16px;
        min-width: 90px;
    }
    
    .domain-extension {
        font-size: 1rem;
    }
    
    .domain-price {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .domain-extensions {
        gap: 8px;
    }
    
    .domain-badge-card {
        padding: 8px 14px;
        min-width: 80px;
    }
    
    .domain-extension {
        font-size: 0.95rem;
    }
    
    .domain-price {
        font-size: 0.8rem;
    }
}

.btn-primary-cta i, .btn-secondary-cta i {
    margin-right: 8px;
}

/* Modern Why Choose Yatosha Section */
.why-yatosha-section {
    padding: 100px 0;
    background-color: white;
}

.section-title-modern {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
}

.section-subtitle-modern {
    color: #6b7280;
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-feature-card {
    padding: 35px 25px;
    border-radius: 16px;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    text-align: center;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.why-feature-card:hover {
    background: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-10px);
    border-color: #2596be;
}

.why-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #eaf8ff;
    color: #2596be;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.why-feature-card:hover .why-icon-wrapper {
    background: #2596be;
    color: white;
    transform: rotateY(180deg);
}

.why-feature-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111827;
}

.why-feature-card p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Top Bar Marquee */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
    padding-left: 100%; /* Start from right */
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Technologies Section */
.technologies-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.tech-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #2596be;
}

.tech-card i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.tech-card:hover i {
    transform: scale(1.1);
}

/* Brand Colors on Hover */
.tech-card:hover .fa-node-js { color: #68a063; }
.tech-card:hover .fa-shield-virus { color: #2596be; }
.tech-card:hover .fa-bolt { color: #facc15; }
.tech-card:hover .fa-php { color: #777bb4; }
.tech-card:hover .fa-python { color: #3776ab; }
.tech-card:hover .fa-react { color: #61dafb; }

.tech-name {
    font-weight: 700;
    color: #374151;
    font-size: 1.1rem;
}

/* Popular Badge for Pricing Cards */
.popular-card {
    position: relative;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid #2596be;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #2596be, #1e7a9b);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(37, 150, 190, 0.3);
}

/* Popular Pricing Card Styling */
.pricing-card {
    position: relative; /* Ensure badge positions relative to card */
}

.pricing-card.popular {
    border: 2px solid #2596be;
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(37, 150, 190, 0.2);
    z-index: 5;
}

.pricing-card.popular:hover {
    transform: translateY(-15px);
}

/* Make Buy button filled for popular plans */
.pricing-card.popular .btn-buy {
    background-color: #2596be;
    color: white;
    border-color: #2596be;
}

.pricing-card.popular .btn-buy:hover {
    background-color: #1e7a9b;
    border-color: #1e7a9b;
}


/* Global Link Styles - Remove Underlines */
a {
    text-decoration: none !important;
}

a:hover {
    text-decoration: none !important;
}

/* Customer Ratings Section */
.customer-rating {
    background-color: #ffffff;
    padding: 25px 0;
    border-bottom: 1px solid #f3f4f6;
}

.customer-rating .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.rating-link {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease;
}

.rating-link:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.rating-text {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 0;
}

.rating-text strong {
    color: #111827;
    font-weight: 700;
}

.rating-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.divider {
    color: #e5e7eb;
    font-size: 1.5rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .customer-rating .container {
        gap: 25px;
        flex-direction: column;
    }
    
    .divider {
        display: none;
    }

    .rating-link {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .trustpilot-widget {
        width: 100%;
        max-width: 300px; /* Limit width to prevent it from being too wide if iframe acts up */
    }
}

/* Terms of Service Page Styles */
.page-header {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid #e9ecef;
}

.page-title {
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}

.breadcrumb-text {
    color: #6b7280;
    font-size: 0.95rem;
}

.tos-content h3 {
    font-weight: 700;
    color: #111827;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.tos-content p, .tos-content li {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
}

.tos-content ul {
    margin-bottom: 20px;
}

.tos-sidebar {
    position: sticky;
    top: 100px;
}

.tos-nav-link {
    display: block;
    padding: 10px 0;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
    border-left: 2px solid transparent;
    padding-left: 15px;
}

.tos-nav-link:hover {
    color: #2596be;
    border-left-color: #2596be;
}

/* Mobile Responsive Styles for Support Section */
@media (max-width: 768px) {
    .support-image-col {
        display: none; /* Hide image on mobile devices */
    }
    
    .support-content-col {
        padding: 60px 30px; /* Reduce padding for mobile */
    }
    
    .support-title {
        font-size: 1.8rem; /* Smaller title for mobile */
        margin-bottom: 30px;
    }
    
    .support-card {
        padding: 18px 20px; /* Slightly smaller padding */
        margin-bottom: 15px;
    }
    
    .support-card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .support-card-title {
        font-size: 1.05rem;
    }
    
    .support-card-text {
        font-size: 0.9rem;
    }
}

/* Floating WhatsApp Button Styles */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    background-color: #333;
    color: white;
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -12px;
    margin-top: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent #333 transparent transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    left: 80px;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile adjustments for WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Hide tooltip on mobile to avoid clutter */
    }
}

/* Process Section Styles */
.process-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.process-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #f3f4f6;
    height: 100%;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #2596be;
}

.process-icon-box {
    width: 80px;
    height: 80px;
    background-color: #eaf8ff;
    color: #2596be;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 30px;
    position: relative;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon-box {
    background-color: #2596be;
    color: white;
    transform: rotateY(180deg);
}

.process-step-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background-color: #111827;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 5;
    transition: transform 0.3s ease;
}

.process-card:hover .process-step-badge {
    transform: scale(1.1);
    background-color: #fcd34d;
    color: #1f2937;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
}

.process-text {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Process Connector Line */
.process-connector {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(to right, #e5e7eb 0, #e5e7eb 10px, transparent 10px, transparent 20px);
    transform: translateY(-50%);
    z-index: 0;
}

