:root {
    --primary-color: #00b8b2;
    --primary-dark: #008a85;
    --secondary-color: #ff0055;
    --bg-color: #f5f5f0;
    --bg-secondary: #eaeae5;
    --text-color: #2a2a2a;
    --text-muted: #666666;
    --card-bg: #fafaf7;
    --card-border: #d8d8d0;
    --input-bg: #ebebe6;
    --font-main: 'Prompt', sans-serif;
    --font-heading: 'Inter', sans-serif;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 242, 234, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 242, 234, 0.5);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    margin-left: 15px;
}

.btn-secondary:hover {
    background: rgba(0, 242, 234, 0.1);
}

.w-full {
    width: 100%;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* WordPress Admin Bar Fix */
body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

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

.logo a {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-color);
}

.logo span {
    color: var(--primary-color);
}

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

.main-nav a {
    font-size: 16px;
    font-weight: 500;
}

.main-nav a:not(.btn-primary):hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 184, 178, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #1a1a1a, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title span {
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.section-header {
    margin-bottom: 60px;
}

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

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-desc {
    color: var(--text-muted);
}

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

.service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-us-list {
    margin-top: 30px;
}

.why-us-list li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-us-list i {
    color: var(--primary-color);
}

.why-us-list strong {
    color: var(--text-color);
}

.tech-stack-visual {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* Fix contrast issue for Tech Stack Visual */
.tech-stack-visual span {
    padding: 10px 20px;
    background: var(--card-bg);
    border-radius: 10px;
    font-weight: 600;
    border: 1px solid var(--card-border);
    color: var(--text-color);
    /* Improve contrast */
    display: flex;
    align-items: center;
    gap: 8px;
}

.tech-stack-visual span i {
    color: var(--primary-color);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-color));
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--card-bg);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid var(--card-border);
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.contact-item span {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background: rgba(0, 242, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: var(--input-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--input-bg);
    box-shadow: 0 0 0 2px rgba(0, 242, 234, 0.2);
}

/* Footer */
.site-footer {
    padding: 80px 0 30px;
    border-top: 1px solid var(--card-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-info h3 span {
    color: var(--primary-color);
}

.footer-info p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

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

.footer-links a {
    color: var(--text-muted);
}

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

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* Floating Contact Button */
.floating-contact-btn {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-contact-btn img {
    width: 100%;
    height: 100%;
    padding: 10px;
    object-fit: contain;
    border-radius: 50%;
}

.floating-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .floating-contact-btn {
        right: 16px;
        bottom: 18px;
        top: auto;
        transform: none;
        width: 60px;
        height: 60px;
    }
    .floating-contact-btn img {
        padding: 8px;
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .why-us-grid,
    .contact-wrapper,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .tech-stack-visual {
        margin-top: 30px;
    }
}

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

    .main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .main-nav ul.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    .mobile-menu-toggle {
        display: block;
    }

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

    .contact-wrapper {
        padding: 30px;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Menu Item Theme Toggle Alignment */
.menu-item-theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .menu-item-theme-toggle {
        margin-top: 20px;
    }
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.blog-section {
    padding: 80px 0 120px;
    background: var(--bg-color);
}

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

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-thumb {
    position: relative;
    width: 100%;
    padding-top: 55.86%; /* 768x429 aspect ratio */
    overflow: hidden;
}

.blog-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-card h3 {
    font-size: 1.5rem;
    margin: 0;
}

.blog-card h3 a {
    color: var(--text-color);
}

.blog-excerpt {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: auto;
}

.read-more {
    font-weight: 600;
    color: var(--primary-color);
    align-self: flex-start;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.pagination-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.pagination-wrapper ul {
    list-style: none;
    display: flex;
    gap: 12px;
    padding: 0;
}

.pagination-wrapper li {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.pagination-wrapper a {
    display: block;
    padding: 10px 14px;
    color: var(--text-color);
}

.pagination-wrapper .current {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Service Features Grid */
.service-detail-section {
    padding: 100px 0;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    transition: var(--transition);
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 242, 234, 0.1);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    background: rgba(0, 242, 234, 0.05);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-item p {
    color: var(--text-muted);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.step-item {
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    margin-bottom: -20px;
    position: relative;
    z-index: 0;
    font-family: var(--font-heading);
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.step-item p {
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--card-border);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.cta-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .page-hero {
        height: auto;
        padding: 120px 20px 60px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 320px;
        margin: 0 auto 24px;
    }

    .step-number {
        font-size: 3rem;
    }
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0 100px;
}

.portfolio-filter {
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-muted);
    padding: 10px 25px;
    border-radius: 30px;
    margin: 0 5px 10px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
    font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    font-weight: 600;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.portfolio-thumb {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
}

.thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.thumb-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    z-index: 2;
    transition: var(--transition);
    width: 100%;
    text-align: center;
}

.portfolio-item:hover .thumb-overlay {
    opacity: 1;
}

.portfolio-item:hover .thumb-content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.btn-view {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: #000;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-view:hover {
    background: #fff;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-cat {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.portfolio-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Responsive Portfolio */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-page-section {
    padding: 80px 0;
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.column-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.column-desc {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(0, 242, 234, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.info-text p {
    color: var(--text-muted);
    margin-bottom: 5px;
}

.info-text a {
    color: var(--text-muted);
}

.info-text a:hover {
    color: var(--primary-color);
}

.social-connect {
    margin-top: 50px;
}

.social-connect h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

.form-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: 500;
}

.form-group select {
    width: 100%;
    padding: 15px;
    background: var(--input-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.map-section {
    margin-top: 50px;
    filter: none;
    transition: var(--transition);
}

.map-section:hover {
    filter: grayscale(0%) invert(0%);
}

/* Responsive Contact Page */
@media (max-width: 992px) {
    .contact-grid-layout {
        grid-template-columns: 1fr;
    }

    .contact-form-column {
        order: -1;
        /* Show form first on mobile if preferred, or remove to keep order */
    }
}

/* Pricing Page Styles */
.pricing-section {
    padding: 80px 0 100px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: flex-start;
    /* Align top for varied heights, or stretch */
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    background: rgba(0, 242, 234, 0.02);
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.1);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-color);
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 5px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--card-border);
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    height: 40px;
    /* Force height for alignment */
}

.price-tag {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: var(--primary-color);
}

.currency {
    font-size: 1.5rem;
    margin-bottom: 10px;
    margin-right: 5px;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    margin-left: 5px;
}

.feature-list {
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.feature-list li.disabled {
    opacity: 0.5;
    text-decoration: line-through;
}

.feature-list li.disabled i {
    color: var(--text-muted);
}

.btn-card {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 0;
    border: 1px solid var(--card-border);
    border-radius: 50px;
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
}

.btn-card:hover {
    border-color: var(--primary-color);
    background: rgba(0, 242, 234, 0.1);
    color: var(--primary-color);
}

.shadow-glow {
    box-shadow: 0 0 15px rgba(0, 242, 234, 0.4);
}

.shadow-glow:hover {
    box-shadow: 0 0 25px rgba(0, 242, 234, 0.6);
}

.faq-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

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

/* Responsive Pricing */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card.popular {
        transform: scale(1);
        margin: 20px 0;
    }

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

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* New Pricing Design V2 - Curved Cards */
.pricing-section-v2 {
    padding: 80px 0 100px;
    background: var(--bg-color);
}

.pricing-section-v2 .container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.pricing-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.price-card-v2 {
    background: transparent;
    border-radius: 30px;
    overflow: visible;
    position: relative;
    transition: var(--transition);
}

.price-card-v2:hover {
    transform: translateY(-10px);
}

/* Card Badge at Top */
.card-badge {
    background: #4a1a5c;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 auto 20px;
    max-width: fit-content;
    line-height: 1.4;
}

/* Best Seller Badge */
.best-seller-badge {
    position: absolute;
    top: 120px;
    right: 20px;
    background: #e91e63;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
}

/* Curved Header with Gradient */
.card-header-curved {
    border-radius: 30px 30px 0 0;
    padding: 40px 30px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-header-curved::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #fff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* Color Variations */
.price-card-v2[data-color="orange"] .card-header-curved {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #e91e63 100%);
}

.price-card-v2[data-color="blue"] .card-header-curved {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #667eea 100%);
}

.price-card-v2[data-color="green"] .card-header-curved {
    background: linear-gradient(135deg, #a8e063 0%, #56ab2f 100%);
}

.price-card-v2[data-color="purple"] .card-header-curved {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.package-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 2;
    line-height: 1.2;
}

/* White Body Section */
.card-body-white {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Price Display */
.price-display {
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-color);
    line-height: 1;
}

.price-currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-top: 5px;
}

.price-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid;
    border-image: linear-gradient(to right, transparent, var(--primary-color), transparent) 1;
}

/* Feature List V2 */
.feature-list-v2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list-v2 li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-list-v2 li i {
    color: var(--primary-color);
    font-size: 0.5rem;
    margin-top: 8px;
    flex-shrink: 0;
}

.price-card-v2[data-color="orange"] .feature-list-v2 li i {
    color: #ff6b35;
}

.price-card-v2[data-color="blue"] .feature-list-v2 li i {
    color: #4facfe;
}

.price-card-v2[data-color="green"] .feature-list-v2 li i {
    color: #56ab2f;
}

.price-card-v2[data-color="purple"] .feature-list-v2 li i {
    color: #667eea;
}

.sub-detail {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
    line-height: 1.5;
}

.device-icons {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.device-icons i {
    color: var(--text-muted) !important;
    font-size: 0.9rem !important;
    margin-top: 0 !important;
}

/* Responsive for Pricing V2 */
@media (max-width: 1100px) {
    .pricing-section-v2 .container {
        padding: 0 20px;
    }
    .pricing-grid-v2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .pricing-grid-v2 {
        grid-template-columns: minmax(0, 1fr);
        max-width: 420px;
        margin: 0 auto;
    }

    .package-title {
        font-size: 1.75rem;
    }

    .price-amount {
        font-size: 3rem;
    }

    .best-seller-badge {
        top: 100px;
        right: 10px;
    }
}