:root {
    --primary-blue: #007bff;
    --dark-blue: #005b99;
    --text-color: #000000;
    --bg-dark: #003668;
    --yellow: #ffbf15;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-blue);
    overflow-x: hidden;
}

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

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 123, 255, 0.2);
    border-left: 4px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header Top Bar */
.header-top {
    background: var(--bg-dark);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-top-left {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header-top-left ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-top-left li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-top-left span {
    color: var(--yellow);
    font-weight: 600;
}

.header-top-left a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.header-top-left a:hover {
    color: var(--yellow);
}

.header-top-left svg {
    width: 16px;
    height: 16px;
    fill: var(--yellow);
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-social {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-social a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.header-social a:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

/* Main Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo img {
    height: 40px;
    transition: var(--transition);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue) !important; /* Force blue on hover/active */
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.phone-info:hover {
    color: var(--primary-blue);
}

.phone-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn::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:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid #e9ecef;
}

.btn-secondary:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    overflow: hidden;
    padding: 150px 0 50px; /* Increased top padding for fixed header */
    margin-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.title-line {
    display: block;
}

.typing-container {
    color: var(--yellow);
}

.typed-cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: #ffffff; /* Ensure white */
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-visual {
    position: relative;
}

.hero-dashboard {
    position: relative;
}

.dashboard-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
.floating-card {
    position: absolute;
    background: white;
    color: #000000;
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary-blue);
    
}

.card-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: -5%;
    animation-delay: 2s;
}

/* Sections Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--light-blue);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-blue);
    transform: scaleY(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-hover {
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.feature-card:hover .feature-hover {
    opacity: 1;
    transform: translateY(0);
}

.feature-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.feature-link:hover {
    gap: 1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: white;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffbf15;
}

.benefits-text p {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 3rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1.2rem;
}

.benefit-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    color: #000000;
}

.benefit-content p {
    color: #000000;
    line-height: 1.6;
}

.benefits-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.card-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--yellow);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--bg-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff; /* Ensure white */
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff; /* Ensure white */
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.main-footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-description {
    color: #adb5bd;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #adb5bd;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #adb5bd;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Dark Sections General Override */
.dark-bg {
    color: #ffffff !important;
}

.dark-bg h2, .dark-bg h3, .dark-bg h4, .dark-bg p, .dark-bg span {
    color: #ffffff !important;
}

.dark-bg .section-title {
    color: #ffffff !important;
}

.dark-bg .section-subtitle {
    color: rgba(255,255,255,0.8) !important;
}

.dark-bg .benefit-content p {
    color: rgba(255,255,255,0.8) !important;
}

.black-bg-4 {
    color: #ffffff !important;
}

.black-bg-4 h3, .black-bg-4 h4, .black-bg-4 p {
    color: #ffffff !important;
}

.black-bg-4 .tp-choose-2__title-sm {
    color: var(--yellow) !important;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #F1F1F9 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.tp-price__area {
    position: relative;
    z-index: 2;
}

/* Pricing Title */
.tp-price__title-box {
    margin-bottom: 80px;
}

.tp-section-subtitle {
    color: #336EF9;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

.section-subtitle-border {
    position: relative;
    padding-bottom: 8px;
}

.section-subtitle-border::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #FFB302;
}

.tp-section-title {
    font-size: 48px;
    font-weight: 700;
    color: #707481;
    line-height: 1.2;
    margin-bottom: 0;
}

.tp-section-title .p-relative {
    color: #336EF9;
    position: relative;
    display: inline-block;
}

.tp-title-shape {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    text-align: center;
}

/* Pricing Grid Layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    align-items: stretch;
    justify-content: center;
}

.pricing-card {
    display: flex;
    flex-direction: column;
}

/* Pricing Cards */
.tp-price__item {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(112, 116, 129, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tp-price__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(51, 110, 249, 0.15);
    border-color: #336EF9;
}

.tp-price__item.active {
    border-color: #FFB302;
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(255, 179, 2, 0.2);
}

.tp-price__item.active::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFB302;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(255, 179, 2, 0.3);
}

/* Price Head Icon */
.tp-price__head-icon {
    margin-bottom: 25px;
}

.tp-price__head-icon span {
    display: inline-flex;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #336EF9, #FFB302);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.tp-price__item:hover .tp-price__head-icon span {
    transform: rotate(10deg) scale(1.1);
}

.tp-price__head-icon svg {
    width: 32px;
    height: 32px;
}

/* Price Head */
.tp-price__head {
    margin-bottom: 25px;
}

.tp-price__title {
    color: #336EF9;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Price MPBS Section */
.tp-price__mpbs {
    background: linear-gradient(135deg, #336EF9, #FFB302);
    color: white;
    padding: 30px 20px;
    border-radius: 15px;
    margin: 25px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.tp-price__mpbs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

.tp-price__mpbs h4 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
    position: relative;
    z-index: 2;
}

.tp-price__mpbs h4 em {
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    display: block;
    margin-top: 5px;
    opacity: 0.9;
}

.tp-price__mpbs span {
    display: block;
    font-size: 16px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.package-desc {
    font-size: 14px !important;
    opacity: 0.8 !important;
    margin-top: 8px;
}

/* Content Wrap */
.tp-price__content-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Features List */
.tp-price__feature {
    margin: 30px 0;
    flex: 1;
}

.tp-price__feature ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.tp-price__feature li {
    color: #707481;
    padding: 12px 0;
    border-bottom: 1px solid #F1F1F9;
    position: relative;
    padding-left: 25px;
    font-size: 15px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.tp-price__feature li:hover {
    color: #336EF9;
    transform: translateX(5px);
}

.tp-price__feature li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #336EF9;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
}

.tp-price__feature li:hover::before {
    color: #FFB302;
    transform: scale(1.2);
}

.tp-price__feature li b {
    color: #FFB302;
    font-weight: 600;
}

/* Price Info Box */
.tp-price__info-box {
    text-align: center;
    margin: 35px 0;
    padding: 25px 0;
    border-top: 1px solid #F1F1F9;
    border-bottom: 1px solid #F1F1F9;
    flex-shrink: 0;
}

.tp-price__info-box h2 {
    color: #336EF9;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.price-underline {
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    text-align: center;
}

.vat-info, .fee-info {
    display: block;
    color: #707481;
    font-size: 14px;
    margin: 8px 0;
}

/* Buttons */
.tp-price__btn-box {
    margin-top: auto;
    flex-shrink: 0;
}

.tp-price-btn {
    display: inline-block;
    background: #336EF9;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #336EF9;
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
}

.tp-price-btn:hover {
    background: transparent;
    color: #336EF9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(51, 110, 249, 0.3);
}

.tp-price__item.active .tp-price-btn {
    background: #FFB302;
    border-color: #FFB302;
}

.tp-price__item.active .tp-price-btn:hover {
    background: transparent;
    color: #FFB302;
    box-shadow: 0 8px 25px rgba(255, 179, 2, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tp-section-title {
        font-size: 42px;
    }
    
    .tp-price__item.active {
        transform: scale(1.02);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .tp-price__area {
        padding: 60px 0;
    }
    
    .tp-section-title {
        font-size: 36px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .tp-price__item {
        padding: 30px 20px;
    }
    
    .tp-price__item.active {
        transform: none;
    }
    
    .tp-price__mpbs h4 {
        font-size: 36px;
    }
    
    .tp-price__info-box h2 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .tp-section-title {
        font-size: 28px;
    }
    
    .tp-price__mpbs {
        padding: 25px 15px;
    }
    
    .tp-price__mpbs h4 {
        font-size: 32px;
    }
    
    .tp-price-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .tp-price__feature li {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Animation Classes */
.wow.tpfadeUp {
    animation-duration: 0.9s;
}

/* Utility Classes */
.pt-95 { padding-top: 95px; }
.pb-120 { padding-bottom: 120px; }
.mb-30 { margin-bottom: 30px; }
.p-relative { position: relative; }
.text-center { text-align: center; }
.d-none { display: none; }
.d-md-block { display: block; }

@media (min-width: 768px) {
    .d-md-block {
        display: block;
    }
}

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